Tetris game for mbed.

Dependencies:   mbed

Files at this revision

API Documentation at this revision

Comitter:
el17mtf
Date:
Sat Mar 17 00:47:03 2018 +0000
Commit message:
aaa

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed.bld Show annotated file Show diff for this revision Revisions of this file
diff -r 000000000000 -r 945835fc1c0c main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Sat Mar 17 00:47:03 2018 +0000
@@ -0,0 +1,12 @@
+#include "mbed.h"
+
+PwmOut lcd(p24);
+
+int main(){
+    while(1)
+    {
+    lcd.write(0.1);
+    wait_ms(1000);
+    lcd.write(0.5);
+    }
+}
\ No newline at end of file
diff -r 000000000000 -r 945835fc1c0c mbed.bld
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Sat Mar 17 00:47:03 2018 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/ef9c61f8c49f
\ No newline at end of file