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.
Dependencies: SoftSerial SDFileSystem mbed wave_player
Diff: main.cpp
- Revision:
- 14:e29cca7e64b2
- Parent:
- 13:c111ea1c5990
- Child:
- 15:75f9bd5d7659
--- a/main.cpp Tue May 09 22:01:09 2017 +0200
+++ b/main.cpp Wed May 10 07:10:32 2017 +0000
@@ -73,21 +73,26 @@
//}
void client(){
- SoftSerial s(NC,p17);
- s.baud(9200);
+ SoftSerial s(p18,p17);
+ s.baud(1);
+ s.format(16, SoftSerial::None, 1);
while (true) {
while (!s.readable());
- char c = (char) s.getc();
- printf((const char *) c);
+ printf("got %i\r\n",s.getc());
}
}
void relay(){
- SoftSerial s(p17,NC);
- s.baud(9200);
+ SoftSerial s(LED1,p18);
+ s.baud(1);
+ s.format(16, SoftSerial::None, 1);
+ int i = 0;
while (true){
- wait(1);
- s.putc(0b00110101);
+ wait(0.1);
+ while(!s.writeable());
+ printf("put %i\r\n", 0b0101010100110011);
+ s.putc(0b0101010100110011);
+ i++;
}
}