ulkoisen ledin vilkuttelua micro:bitillä

Dependencies:   microbit

Committer:
tyynetyyne
Date:
Tue May 22 07:24:23 2018 +0000
Revision:
0:033d80aa8171
First version of code for external blinking led for microbit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
tyynetyyne 0:033d80aa8171 1 #include "MicroBit.h"
tyynetyyne 0:033d80aa8171 2
tyynetyyne 0:033d80aa8171 3 MicroBit uBit;
tyynetyyne 0:033d80aa8171 4
tyynetyyne 0:033d80aa8171 5 int main()
tyynetyyne 0:033d80aa8171 6 {
tyynetyyne 0:033d80aa8171 7 uBit.init();
tyynetyyne 0:033d80aa8171 8 while (1){
tyynetyyne 0:033d80aa8171 9 uBit.io.P0.setDigitalValue(1);
tyynetyyne 0:033d80aa8171 10 uBit.sleep(1000);
tyynetyyne 0:033d80aa8171 11 uBit.io.P0.setDigitalValue(0);
tyynetyyne 0:033d80aa8171 12 uBit.sleep(1000);
tyynetyyne 0:033d80aa8171 13 }
tyynetyyne 0:033d80aa8171 14 }