mirror of https://github.com/commaai/openpilot.git
Revert "setup: no low voltage warning without INA"
This reverts commit 7ecedbc39f
.
This commit is contained in:
parent
670cf27f8e
commit
e243663520
|
@ -408,7 +408,7 @@ Setup::Setup(QWidget *parent) : QStackedWidget(parent) {
|
|||
std::stringstream buffer;
|
||||
buffer << std::ifstream("/sys/class/hwmon/hwmon1/in1_input").rdbuf();
|
||||
float voltage = (float)std::atoi(buffer.str().c_str()) / 1000.;
|
||||
if (voltage > 0 && voltage < 7) {
|
||||
if (voltage < 7) {
|
||||
addWidget(low_voltage());
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue