Arduino


Arduinoの設定
ArduinoでLチカ
Arduinoで明るさを測定

明るさセンサー(CdS)が暗さを感じるとLEDが光ることを考える。


コード


  1. void setup() {
  2.   // put your setup code here, to run once:
  3.   Serial.begin(9600);
  4. }
  5. void loop() {
  6.   // put your main code here, to run repeatedly:
  7.   int val=0;
  8.   val=analogRead(1);
  9.   Serial.println(val);
  10.   delay(500);
  11. if(val>200){
  12.   digitalWrite(13,HIGH);
  13.   delay(500);
  14.   digitalWrite(13,LOW);
  15.   delay(500);
  16. }
  17. }
デザイン演習Ⅲ・Ⅳトップページ
XBPトップページ