Prevent skipping from cool straight to soldering without turning oled
back on.
This commit is contained in:
Ben V. Brown
2017-07-11 18:22:44 +10:00
parent 16ecf486c2
commit 52e3247f7e
4 changed files with 22 additions and 8 deletions

View File

@@ -174,7 +174,7 @@ void Clear_Screen(void) {
/*
* Draws a string onto the screen starting at the left
*/
void OLED_DrawString(char* string, uint8_t length) {
void OLED_DrawString(const char* string,const uint8_t length) {
for (uint8_t i = 0; i < length; i++) {
OLED_DrawChar(string[i], i);
}