You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
413 B
C
26 lines
413 B
C
#include "lcd.h"
|
|
|
|
void write_heater_real_temp(uint8_t n, uint16_t temp){
|
|
|
|
}
|
|
|
|
void write_heater_set_temp(uint8_t n, uint16_t temp){
|
|
|
|
}
|
|
|
|
void draw_menu(){
|
|
lcd_clear();
|
|
lcd_write(" Heat Zone Control");
|
|
lcd_set_position(2, 0);
|
|
lcd_write(" set:");
|
|
lcd_set_position(3, 0);
|
|
lcd_write("real:");
|
|
}
|
|
|
|
void set_item(uint8_t page_num){
|
|
lcd_clear();
|
|
lcd_home();
|
|
lcd_write("page %x", page_num);
|
|
}
|
|
|