blob: 67b32cec7e367b2b7d82dd597f64c99d6c678d28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef S1224_DISPLAY_H
#define S1224_DISPLAY_H
#include <stdbool.h>
/**
* I2C HD44780 via PCF8574 backpack (0x27/0x3F). USB always logs.
* Shows Power/ready, Signal, Packet from INI texts.
*/
void display_init(void);
bool display_present(void);
/** Refresh LCD from current status + sense (uses INI texts). */
void display_update(void);
/** Legacy single-line push (also used before full UI ready). */
void display_show(const char *line);
#endif
|