Sign in
foss-eda-tools
/
third_party
/
shuttle
/
sky130
/
mpw-006
/
slot-005
/
3dc24bfd8b762b85d14c4efce20ab239423fe197
/
.
/
verilog
/
dv
/
arduino_hello_world
/
arduino_hello_world.ino.cpp
blob: 44bef6c39a41a5b9e42740066e4e695c09e3baf3 [
file
] [
log
] [
blame
]
#include
<Arduino.h>
void
setup
();
void
loop
();
void
setup
()
{
Serial
.
begin
(
230400
);
Serial
.
print
(
"Hello World!"
);
}
void
loop
()
{
}