1 Commits
Author SHA1 Message Date
kleiax f0f75d3fd3 - deactivate a debug print
- activate init screen
- update network config
2024-07-19 15:33:50 +02:00
4 changed files with 8 additions and 7 deletions
+3 -3
View File
@@ -19,11 +19,11 @@
#ifdef HOTSPOT #ifdef HOTSPOT
namespace NetworkConfig namespace NetworkConfig
{ {
const char ssid[] = "KleiaxHandy"; const char ssid[] = "Nubsi";
const char password[] = "12345677"; const char password[] = "12345677";
const char ip[] = "192.168.43.4"; const char ip[] = "192.168.72.7";
const char subnet[] = "255.255.255.0"; const char subnet[] = "255.255.255.0";
const char gateway[] = "192.168.43.1"; const char gateway[] = "192.168.72.228";
const char dns[] = "8.8.8.8"; const char dns[] = "8.8.8.8";
const bool mqtt = false; const bool mqtt = false;
} }
+1 -1
View File
@@ -14,7 +14,7 @@
LcdWrapper::LcdWrapper(LiquidCrystal_I2C *lcd) LcdWrapper::LcdWrapper(LiquidCrystal_I2C *lcd)
: lcd{lcd}, changed{false} : lcd{lcd}, changed{false}
{ {
this->clear(); // this->clear();
} }
void LcdWrapper::run() void LcdWrapper::run()
+1 -1
View File
@@ -153,7 +153,7 @@ void MotorControl::setRealPower(int8_t power)
digitalWrite(this->dir_2, LOW); digitalWrite(this->dir_2, LOW);
ledcWrite(this->pwmChannel, 0); ledcWrite(this->pwmChannel, 0);
this->dutycycle = 0; this->dutycycle = 0;
std::cout << "abort" << std::endl; // std::cout << "abort" << std::endl;
return; return;
} }
+3 -2
View File
@@ -15,14 +15,15 @@ board_build.partitions = no_ota.csv
framework = arduino framework = arduino
monitor_speed = 115200 monitor_speed = 115200
upload_speed = 921600 upload_speed = 921600
monitor_port = COM6 ; monitor_port = COM6
lib_deps = lib_deps =
https://git.kleiax.de/PlatformIO-Libs/SparkFunGNSS.git https://git.kleiax.de/PlatformIO-Libs/SparkFunGNSS.git
https://git.kleiax.de/PlatformIO-Libs/Menu.git
knolleary/PubSubClient@^2.8 knolleary/PubSubClient@^2.8
br3ttb/PID@^1.2.1 br3ttb/PID@^1.2.1
marcoschwartz/LiquidCrystal_I2C@^1.1.4 marcoschwartz/LiquidCrystal_I2C@^1.1.4
mprograms/QMC5883LCompass@^1.2.0 mprograms/QMC5883LCompass@^1.2.0
upload_port = COM6 ; upload_port = COM6
test_ignore = test_desktop test_ignore = test_desktop
build_type = debug build_type = debug
monitor_filters = esp32_exception_decoder monitor_filters = esp32_exception_decoder