Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Revision 0:ca7d67d6dd20, committed 2014-09-03
- Comitter:
- homayoun
- Date:
- Wed Sep 03 11:07:05 2014 +0000
- Commit message:
- Arduino_DigitalReadSerial
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 ca7d67d6dd20 main.cpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Wed Sep 03 11:07:05 2014 +0000
@@ -0,0 +1,24 @@
+#include "mbed.h"
+
+Serial pc(SERIAL_TX, SERIAL_RX);
+DigitalIn pushButton(USER_BUTTON);
+
+// the setup routine runs once when you press reset:
+void setup()
+{
+ pc.baud(9600);
+}
+
+// the loop routine runs over and over again forever:
+void loop()
+{
+ int buttonState = pushButton.read();
+ pc.printf("%d\n", buttonState);
+ wait(1);
+}
+
+int main()
+{
+ setup();
+ while(1) loop();
+}
\ No newline at end of file
diff -r 000000000000 -r ca7d67d6dd20 mbed.bld --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Wed Sep 03 11:07:05 2014 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/mbed_official/code/mbed/builds/9327015d4013 \ No newline at end of file