C++ project
Dependencies: SeeedGrayOLED mbed
Fork of MBED_CPP_DII4A by
Revision 1:e1e7d89e37fe, committed 2017-03-13
- Comitter:
- mr_cub3
- Date:
- Mon Mar 13 08:35:17 2017 +0000
- Parent:
- 0:cc27e545a4de
- Child:
- 2:fa5b67d8d989
- Commit message:
- dfzqofqn
Changed in this revision
| WeatherClick_I2C.lib | Show annotated file Show diff for this revision Revisions of this file |
| main.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/WeatherClick_I2C.lib Sat Mar 11 09:51:30 2017 +0000 +++ b/WeatherClick_I2C.lib Mon Mar 13 08:35:17 2017 +0000 @@ -1,1 +1,1 @@ -https://developer.mbed.org/teams/mr_cub3/code/WeatherClick_I2C/#642700d0c1b4 +https://developer.mbed.org/teams/mr_cub3/code/WeatherClick_I2C/#40e32a6a70f9
--- a/main.cpp Sat Mar 11 09:51:30 2017 +0000
+++ b/main.cpp Mon Mar 13 08:35:17 2017 +0000
@@ -1,12 +1,31 @@
#include "mbed.h"
+#include "SeeedGrayOLED.h"
-DigitalOut myled(LED1);
+DigitalOut myLed(LED1);
+DigitalIn greenPB(p20);
+SeeedGrayOLED SeeedGrayOled(p9, p10);
-int main() {
+int main()
+{
+ //greenPB.mode(PullUp);
while(1) {
- myled = 1;
- wait(0.2);
- myled = 0;
- wait(0.2);
+ //myLed = greenPB;
+ SeeedGrayOled.init(); //initialize SEEED OLED display
+ SeeedGrayOled.clearDisplay(); //Clear Display.
+ SeeedGrayOled.setNormalDisplay(); //Set Normal Display Mode
+ SeeedGrayOled.setVerticalMode(); // Set to vertical mode for displaying text
+ SeeedGrayOled.setTextXY(0,0);
+ SeeedGrayOled.setGrayLevel(10);
+ SeeedGrayOled.putString("Coucou Candy");
+ wait_ms(1.0);
+ //for(char i=1; i < 11 ; i++) {
+ // SeeedGrayOled.setTextXY(i,0); //set Cursor to first line, 0th column
+ // SeeedGrayOled.setGrayLevel(i); //Set Grayscale level. Any number between 0 - 15.
+ // SeeedGrayOled.putString("FUCK YEAH!!"); //Print whatever the fuck you want
+ // wait_ms(1.0);
+ //}
+
+ wait(5.0);
}
-}
+
+}
\ No newline at end of file
