The code is developed for the hardware NUCLEO-L432KC and Digilent Pmod OLEDrgb. The purpose is to make students learn the development process and test that the hardware works fine. For converting this to Mbed OS 6 Adafruit_GFX.h needed to add #include "Stream.h" in beginning of the Adafruit_GFX.h Adafruit_SSD1331.cpp wait_ms(200) replaced with ThisThread::sleep_for(200ms); for all the similar wait_ms lines.
Dependencies: Adafruit-GFX-MbedOS6
Changes
Revision | Date | Who | Commit message |
---|---|---|---|
7:0b422690f413 | 2022-10-04 | timo_k2 | In intro text D6 to A6. |
6:a5886100eeeb | 2022-10-04 | timo_k2 | This time using the D2 for the OLED VCCEN and D3 for the OLED PMODEN. Moved OLED RES to A6. This helps using the L432KC with a (modified) GROVE NANO board. |
5:58208433fe78 | 2021-02-23 | timo_k2 | OS 6.7 and 6.8 tested. |
4:b3559f0f6072 | 2021-02-22 | timo_k2 | updated for the OS 6.7 |
3:64fb84822c90 | 2020-10-01 | timo_k2 | The OS6 does not include floating point printf() !!!; Millivolts counted with c++ modulus operator. |
2:29bb1ef0d6cd | 2020-08-31 | timo_k2 | Minor additions in code comments only. |
1:de95c9ab922e | 2020-08-30 | timo_k2 | Minor updates into code comments only. |
0:9f57fa937a86 | 2020-08-29 | timo_k2 | For converting this to Mbed OS 6: Adafruit_GFX.h needed to add #include "Stream.h" in beginning of the Adafruit_GFX.h . Adafruit_SSD1331.cpp wait_ms(200) replaced with ThisThread::sleep_for(200ms) for all the similar wait_ms lines. |