Adapted example to new interface
This commit is contained in:
parent
b438aac91d
commit
08b69f70d7
@ -1 +1 @@
|
|||||||
Subproject commit 093c0a6a025a5d39b9f236a03a290a374e3570e7
|
Subproject commit a69465fca084be51a9486a2439c3b6d596cfb14a
|
@ -9,7 +9,13 @@
|
|||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
InOutPin cLED( InOut::Pin::B5 );
|
InOutPin<InOut::Pin::B5>::setDirection( InOut::Dir::OUT );
|
||||||
|
InOutPin<InOut::Pin::B5>::write( true );
|
||||||
|
_delay_ms( 3000 );
|
||||||
|
InOutPin<InOut::Pin::B5>::write( false );
|
||||||
|
_delay_ms( 3000 );
|
||||||
|
|
||||||
|
InOutPin<InOut::Pin::B5> cLED;
|
||||||
cLED.setDirection( InOut::Dir::OUT );
|
cLED.setDirection( InOut::Dir::OUT );
|
||||||
cLED.write( false );
|
cLED.write( false );
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user