步驟1:電路
我們將需要:
-Arduino Uno
-面包板(基礎)
-鏈接線
-簧片開關
-電阻10KOhm
-電阻220ohm
-LED
一旦采購了組件,就會組裝電路:
步驟2:草圖
現在我們可以將草圖加載到板上了。
const int pinSwitch = 12;//Pin Reed
const int pinLed = 9;//Pin LED
int StatoSwitch = 0;
void setup()
{
pinMode(pinLed,OUTPUT);//Imposto i PIN
pinMode(pinSwitch,INPUT);
}
void loop()
{
StatoSwitch = digitalRead(pinSwitch);//Leggo il valore del Reed
if(StatoSwitch == HIGH)
{
digitalWrite(pinLed,HIGH);
}
else
{
digitalWrite(pinLed,LOW);
}
}
責任編輯:wv
-
led
+關注
關注
242文章
23312瀏覽量
661640 -
Arduino
+關注
關注
188文章
6472瀏覽量
187349 -
簧片開關
+關注
關注
0文章
8瀏覽量
5087
發布評論請先 登錄
相關推薦
評論