2024年12月14日土曜日

Arduino Lチカ 作:NISSY

https://youtu.be/DpbK3_-UrEI?si=SEsuLYibp1ehwUfS


void setup() {
  // put your setup code here, to run once:
 pinMode(10,OUTPUT);
}

void loop() {
  // put your main code here, to run repeatedly:
 digitalWrite(10,HIGI);
 delay(1000);
 digitalWrite(10,LOW);
 delay(1000);
}

google colab

google colab https://colab.research.google.com/?hl=ja 春さんに紹介していただきました。