arduino_main.cpp 484 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * Copyright (c) 2006-2023, RT-Thread Development Team
 *
 * SPDX-License-Identifier: Apache-2.0
 *
 * Change Logs:
 * Date           Author       Notes
 * 2023-02-08     WangShun     first version
 */

#include <Arduino.h>

void setup(void)
 {
     /* put your setup code here, to run once: */
16
    pinMode(LED_BUILTIN, OUTPUT);
17 18 19 20 21
 }

void loop(void)
{
    /* put your main code here, to run repeatedly: */
22 23
    digitalWrite(LED_BUILTIN, !digitalRead(LED_BUILTIN));
    delay(100);
24
}