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.
Diff: main.cpp
- Revision:
- 0:4e623dbef4b8
- Child:
- 1:dc648c5624b9
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Wed Jan 03 17:32:16 2018 +0000
@@ -0,0 +1,71 @@
+#include "mbed.h"
+#include "TextLCD.h"
+#include "BMP280.h"
+#include "putty.h"
+#include"date.h"
+//DigitalOut myled(LED1);
+
+
+Ticker display;
+
+
+void lcddisp()
+{
+ getdata();
+ store();
+ lcd.cls();
+ display_time();
+ lcd.locate(10,0);
+ lcd.printf("l:%1.2f", lvl);
+ lcd.locate(0,0);
+ lcd.printf("p:%3.1f", pressuref);
+ lcd.locate(10,1);
+ lcd.printf("t:%3.1f", tempf);
+}
+
+
+
+int main()
+{
+ lcd.cls();
+ display_date();
+ while (pointer != 14)
+ {
+ select_date();
+ }
+ bmp.initialize();
+ pc.printf("putty ready\n\r");
+ display.attach(&lcddisp, 2.0);
+ while(1)
+ {
+ int count = 0;
+ int wcount = 0;
+ //char c[20] = {0};
+ //char c2[20] = {0};
+ while (user_command[wcount]!= ' ')
+ {
+ user_command[count] = pc.getc();
+ pc.putc(user_command[count]);
+ count++;
+ wcount = count -1;
+ }
+ int count2 = 0;
+ int wcount2 = 0;
+ while(user_command2[wcount2]!= '\r')
+ {
+ user_command2[count2] = pc.getc();
+ pc.putc(user_command2[count2]);
+ count2++;
+ wcount2 = count2 -1;
+ }
+
+
+ pc.printf("you typed: %s %s\n\r",user_command,user_command2);
+ selection();
+ clear();
+ clear2();
+ }
+}
+
+
+