src/display.h

changeset 51
d8042bff0e00
parent 46
a4a007b3c42e
child 53
74e85b34d26b
equal deleted inserted replaced
50:279868684eb3 51:d8042bff0e00
166 void test_dsp(); 166 void test_dsp();
167 void show(uint8_t, const char*, uint8_t); 167 void show(uint8_t, const char*, uint8_t);
168 void dimm_char(uint8_t); 168 void dimm_char(uint8_t);
169 void show_splashscreen(); 169 void show_splashscreen();
170 void show_byescreen(); 170 void show_byescreen();
171 void set_flag(uint8_t flag, bool show); 171 void set_flag(uint8_t flag, bool show=true, bool dimm=false);
172 void show_flag(uint8_t flag) {set_flag(flag, true);}; 172 void show_flag(uint8_t flag) {set_flag(flag, true);};
173 void hide_flag(uint8_t flag) {set_flag(flag, false);}; 173 void hide_flag(uint8_t flag) {set_flag(flag, false);};
174 void shift_on() {set_flag(0x80, true);}; 174 void shift_on() {set_flag(0x80, true);};
175 void shift_off() {set_flag(0x80, false);}; 175 void shift_off() {set_flag(0x80, false);};
176 176

mercurial