add symbols display

This commit is contained in:
TheK4n 2021-09-03 20:15:10 +03:00
parent 3245816029
commit dfbf0fd7ee

View File

@ -62,19 +62,27 @@ void loop() {
disp.clear(); disp.clear();
if (enc.isRight()) { if (enc.isRight()) {
pressure_low = get_constrained_pressure_low(pressure_low+10); pressure_low = get_constrained_pressure_low(pressure_low+10);
disp.displayInt(pressure_low); disp.displayInt(pressure_low);
disp.displayByte(0, _L);
} }
if (enc.isLeft()) { if (enc.isLeft()) {
pressure_low = get_constrained_pressure_low(pressure_low-10); pressure_low = get_constrained_pressure_low(pressure_low-10);
disp.displayInt(pressure_low); disp.displayInt(pressure_low);
disp.displayByte(0, _L);
} }
if (enc.isRightH()) { if (enc.isRightH()) {
pressure_high = get_constrained_pressure_high(pressure_high+10); pressure_high = get_constrained_pressure_high(pressure_high+10);
disp.displayInt(pressure_high); disp.displayInt(pressure_high);
disp.displayByte(0, _H);
} }
if (enc.isLeftH()) { if (enc.isLeftH()) {
pressure_high = get_constrained_pressure_high(pressure_high-10); pressure_high = get_constrained_pressure_high(pressure_high-10);
disp.displayInt(pressure_high); disp.displayInt(pressure_high);
disp.displayByte(0, _H);
} }
is_on_display = true; is_on_display = true;
display_cur_pressure = false; display_cur_pressure = false;
@ -93,6 +101,7 @@ void loop() {
if (enc.isHolded()) { if (enc.isHolded()) {
EEPROM.put(0, pressure_low); EEPROM.put(0, pressure_low);
EEPROM.put(2, pressure_high); EEPROM.put(2, pressure_high);
disp.displayByte(_S, _A, _U, _E);
} }
// Датчик давления 0 - 1000 0 - 10 атмосфер // Датчик давления 0 - 1000 0 - 10 атмосфер