-
Notifications
You must be signed in to change notification settings - Fork 25
/
davega_simple_horizontal_screen.cpp
123 lines (101 loc) · 4.65 KB
/
davega_simple_horizontal_screen.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/*
Copyright 2018 Jan Pomikalek <[email protected]>
This file is part of the DAVEga firmware.
DAVEga firmware is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
DAVEga firmware is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with DAVEga firmware. If not, see <https://www.gnu.org/licenses/>.
*/
#include "davega_simple_horizontal_screen.h"
#include "davega_screen.h"
#include "davega_util.h"
#include "vesc_comm.h"
#include "tft_util.h"
#include <TFT_22_ILI9225.h>
void DavegaSimpleHorizontalScreen::reset() {
_tft->fillRectangle(0, 0, _tft->maxX() - 1, _tft->maxY() - 1, COLOR_BLACK);
// labels
_tft->setFont(Terminal6x8);
_tft->drawText(174, 29, _config->imperial_units ? "TRIP MI" : "TRIP KM", COLOR_WHITE);
_tft->drawText(166, 72, _config->imperial_units ? "TOTAL MI" : "TOTAL KM", COLOR_WHITE);
_tft->drawText(158, 115, "BATTERY V", COLOR_WHITE);
switch (_primary_item) {
case SCR_BATTERY_CURRENT:
_tft->drawText(79, 115, "BATTERY A", COLOR_WHITE);
break;
case SCR_MOTOR_CURRENT:
_tft->drawText(93, 115, "MOTOR A", COLOR_WHITE);
break;
default:
_tft->drawText(119, 115, _config->imperial_units ? "MPH" : "KPH", COLOR_WHITE);
}
// FW version
_tft->drawText(0, 115, _config->fw_version, COLOR_WHITE);
_just_reset = true;
}
void DavegaSimpleHorizontalScreen::update(t_davega_data *data) {
char fmt[10];
if (data->vesc_fault_code != _last_fault_code)
reset();
// primary display item
uint8_t value = primary_item_value(_primary_item, data, _config);
uint16_t color = primary_item_color(_primary_item, data, _config);
dtostrf(value, 2, 0, fmt);
tft_util_draw_number(_tft, fmt, 0, 0, color, COLOR_BLACK, 7, 22);
// trip distance
dtostrf(convert_distance(data->trip_km, _config->imperial_units), 5, 2, fmt);
tft_util_draw_number(_tft, fmt, 147, 0, progress_to_color(data->session_reset_progress, _tft), COLOR_BLACK, 2, 5);
// total distance
format_total_distance(convert_distance(data->total_km, _config->imperial_units), fmt);
tft_util_draw_number(_tft, fmt, 147, 43, COLOR_WHITE, COLOR_BLACK, 2, 5);
// battery voltage
if (_config->per_cell_voltage)
dtostrf(data->voltage / _config->battery_cells, 4, 2, fmt);
else
dtostrf(data->voltage, 4, 1, fmt);
tft_util_draw_number(_tft, fmt, 163, 86, progress_to_color(data->mah_reset_progress, _tft), COLOR_BLACK, 2, 5);
// warning
if (data->vesc_fault_code != FAULT_CODE_NONE) {
uint16_t bg_color = _tft->setColor(150, 0, 0);
_tft->fillRectangle(0, 140, 220, 176, bg_color);
_tft->setFont(Terminal12x16);
_tft->setBackgroundColor(bg_color);
_tft->drawText(5, 151, vesc_fault_code_to_string(data->vesc_fault_code), COLOR_BLACK);
_tft->setBackgroundColor(COLOR_BLACK);
}
_update_battery_indicator(data->battery_percent, _just_reset);
_last_fault_code = data->vesc_fault_code;
_just_reset = false;
}
void DavegaSimpleHorizontalScreen::_update_battery_indicator(float battery_percent, bool redraw) {
int width = 17;
int space = 3;
int cell_count = 11;
int cells_to_fill = round(battery_percent * cell_count);
for (int i=0; i<cell_count; i++) {
bool is_filled = (i < _battery_cells_filled);
bool should_be_filled = (i < cells_to_fill);
if (should_be_filled != is_filled || redraw) {
int x = (cell_count - i - 1) * (width + space);
uint8_t green = (uint8_t)(255.0 / (cell_count - 1) * i);
uint8_t red = 255 - green;
uint16_t color = _tft->setColor(red, green, 0);
_tft->fillRectangle(x, 140, x + width, 175, color);
if (!should_be_filled)
_tft->fillRectangle(x + 1, 140 + 1, x + width - 1, 175 - 1, COLOR_BLACK);
}
}
_battery_cells_filled = cells_to_fill;
}
void DavegaSimpleHorizontalScreen::heartbeat(uint32_t duration_ms, bool successful_vesc_read) {
uint16_t color = successful_vesc_read ? _tft->setColor(0, 150, 0) : _tft->setColor(150, 0, 0);
_tft->fillRectangle(67, 116, 71, 120, color);
delay(duration_ms);
_tft->fillRectangle(67, 116, 71, 120, COLOR_BLACK);
}