選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

17 行
257B

  1. // Only for testing with the Makefile - not actually part of the core library
  2. #include <Arduino.h>
  3. int led = 13;
  4. void setup() {
  5. pinMode(led, OUTPUT);
  6. }
  7. void loop() {
  8. digitalWrite(led, HIGH);
  9. delay(1000);
  10. digitalWrite(led, LOW);
  11. delay(1000);
  12. }