マイコン 基礎

1 Arduino UNOで用いるコード

デジタルは0,1 アナログは0〜1023
ピンでデジタル、アナログが分かれてる。

2 暗いときに光らせるコード

  1. void setup() {
  2.   // put your setup code here, to run once:
  3.   Serial.begin(9600);
  4.    pinMode(13,OUTPUT);
  5. }
  6. void loop() {
  7.   // put your main code here, to run repeatedly:
  8.   int val=0;
  9.   val=analogRead(1);
  10.   Serial.println(val);
  11.   delay(500);
  12.   if(val<200){
  13.       digitalWrite(13,LOW);
  14.     }else{
  15.       
  16.        digitalWrite(13,HIGH);
  17.     }
  18.   
  19.   }