|
|
@ -200,6 +200,8 @@ void oled_write(const char *data, bool invert);
|
|
|
|
// Advances the cursor to the next page, wiring ' ' to the remainder of the current page
|
|
|
|
// Advances the cursor to the next page, wiring ' ' to the remainder of the current page
|
|
|
|
void oled_write_ln(const char *data, bool invert);
|
|
|
|
void oled_write_ln(const char *data, bool invert);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void oled_write_raw(const char *data, uint16_t size);
|
|
|
|
|
|
|
|
|
|
|
|
#if defined(__AVR__)
|
|
|
|
#if defined(__AVR__)
|
|
|
|
// Writes a PROGMEM string to the buffer at current cursor position
|
|
|
|
// Writes a PROGMEM string to the buffer at current cursor position
|
|
|
|
// Advances the cursor while writing, inverts the pixels if true
|
|
|
|
// Advances the cursor while writing, inverts the pixels if true
|
|
|
@ -211,6 +213,8 @@ void oled_write_P(const char *data, bool invert);
|
|
|
|
// Advances the cursor to the next page, wiring ' ' to the remainder of the current page
|
|
|
|
// Advances the cursor to the next page, wiring ' ' to the remainder of the current page
|
|
|
|
// Remapped to call 'void oled_write_ln(const char *data, bool invert);' on ARM
|
|
|
|
// Remapped to call 'void oled_write_ln(const char *data, bool invert);' on ARM
|
|
|
|
void oled_write_ln_P(const char *data, bool invert);
|
|
|
|
void oled_write_ln_P(const char *data, bool invert);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void oled_write_raw_P(const char *data, uint16_t size);
|
|
|
|
#else
|
|
|
|
#else
|
|
|
|
// Writes a string to the buffer at current cursor position
|
|
|
|
// Writes a string to the buffer at current cursor position
|
|
|
|
// Advances the cursor while writing, inverts the pixels if true
|
|
|
|
// Advances the cursor while writing, inverts the pixels if true
|
|
|
@ -254,4 +258,4 @@ bool oled_scroll_off(void);
|
|
|
|
uint8_t oled_max_chars(void);
|
|
|
|
uint8_t oled_max_chars(void);
|
|
|
|
|
|
|
|
|
|
|
|
// Returns the maximum number of lines that will fit on the oled
|
|
|
|
// Returns the maximum number of lines that will fit on the oled
|
|
|
|
uint8_t oled_max_lines(void);
|
|
|
|
uint8_t oled_max_lines(void);
|