qubot
This commit is contained in:
parent
4bf1d3eb51
commit
82d41c19a0
BIN
examples/blink-qubot
Executable file
BIN
examples/blink-qubot
Executable file
Binary file not shown.
27
examples/blink-qubot.c
Executable file
27
examples/blink-qubot.c
Executable file
@ -0,0 +1,27 @@
|
||||
/*
|
||||
* blink.c:
|
||||
*
|
||||
* Welcome to MikuQ.com! MikuDuino for BananaPi
|
||||
*
|
||||
* by MikuQ(i@mikuq.com) 2016-6-2
|
||||
*
|
||||
* https://github.com/bpiq/MikuPi
|
||||
*
|
||||
*/
|
||||
|
||||
#include "MikuDuino.h"
|
||||
|
||||
int led = 13;
|
||||
|
||||
void setup()
|
||||
{
|
||||
pinMode (led, OUTPUT) ;
|
||||
}
|
||||
|
||||
void loop()
|
||||
{
|
||||
digitalWrite (led, HIGH) ;
|
||||
delay(500);
|
||||
digitalWrite (led, LOW) ;
|
||||
delay(500);
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user