您最多选择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. }