4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-19 19:33:32 +08:00
2023-12-30 18:57:36 +08:00

25 lines
453 B
C++

/*
* Copyright (c) 2006-2023, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2023-12-30 ChuShicheng first version
*/
#include <Arduino.h>
void setup(void)
{
/* put your setup code here, to run once: */
Serial2.begin();
}
void loop(void)
{
/* put your main code here, to run repeatedly: */
Serial2.println("Hello Arduino!");
delay(800);
}