Murata Type ABZ simple test
Diff: main.cpp
- Revision:
- 0:48b3efc9aa09
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Sun Oct 25 18:27:25 2020 +0000
@@ -0,0 +1,10 @@
+#include "mbed.h"
+
+DigitalOut led2 ( PB_2 ) ;
+
+int main() {
+ while ( 1 ) {
+ led2 = !led2 ;
+ wait ( 1 );
+ }
+}
\ No newline at end of file