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:4b4945bda9f0
diff -r 000000000000 -r 4b4945bda9f0 main.cpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Thu Jun 03 09:55:43 2021 +0000
@@ -0,0 +1,41 @@
+#include "mbed.h"
+#include "C12832.h"
+
+DigitalIn pushButton(p9);
+DigitalOut led(LED1);
+C12832 lcd(SPI_MOSI, SPI_SCK, SPI_MISO, p5, p6);
+
+char ledBlinking[] = "Led is blinking";
+
+// create an instance of LCD
+static void display(char *lcdPrint) {
+ lcd.cls(); // Clear LCD
+ lcd.locate(3,5); // get cursor to position x=3px and y=5px
+ lcd.printf(lcdPrint); // Write text into LCD buffer
+ lcd.copy_to_lcd();
+ // Clear LCD
+}
+
+ void Blink(){
+ for(int i=0; i<3; i++){
+ display(ledBlinking);
+ led=0;
+ wait(0.5);
+ led=1;
+ wait(0.5);
+ }
+ led=0;
+ lcd.cls();
+}
+
+int main() {
+ while (1) {
+
+ if(pushButton == 1)
+ {
+ Blink();
+ }
+ wait(0.5);
+
+ }
+}
\ No newline at end of file