Added Battery to MenuBattery
This commit is contained in:
@@ -11,8 +11,8 @@
|
||||
|
||||
#include "menuAkku.h"
|
||||
|
||||
MenuAkku::MenuAkku() {
|
||||
|
||||
MenuAkku::MenuAkku(Battery* mainBattery) {
|
||||
this->mainBattery = mainBattery;
|
||||
}
|
||||
|
||||
void MenuAkku::right() {
|
||||
@@ -35,7 +35,7 @@ void MenuAkku::yes() {
|
||||
void MenuAkku::printMenu() {
|
||||
char buf[17];
|
||||
uint8_t controllerBattery = -1;
|
||||
uint8_t mainBattery = 77;
|
||||
uint8_t mainBattery = this->mainBattery->getBatteryPercent();
|
||||
|
||||
if( controllerBattery != Ps3.data.status.battery ){
|
||||
controllerBattery = Ps3.data.status.battery;
|
||||
|
||||
@@ -15,9 +15,10 @@
|
||||
#include <Ps3Controller.h>
|
||||
|
||||
#include "menuControl.h"
|
||||
#include "battery.h"
|
||||
|
||||
/**
|
||||
* @brief This class shows Akku informations
|
||||
* @brief This class shows battery informations
|
||||
*
|
||||
* Provide information for main battery pack and
|
||||
* PS3-Controller battery pack
|
||||
@@ -29,7 +30,7 @@ class MenuAkku : public MenuControl {
|
||||
* @brief Construct a new Menu Akku object
|
||||
*
|
||||
*/
|
||||
MenuAkku();
|
||||
MenuAkku(Battery* mainBattery);
|
||||
|
||||
void down() override {}
|
||||
void up() override {}
|
||||
@@ -53,9 +54,11 @@ class MenuAkku : public MenuControl {
|
||||
void update() override;
|
||||
|
||||
private:
|
||||
const uint16_t delay = 5000;
|
||||
const uint16_t delay = 15000;
|
||||
uint32_t last_millis = 0;
|
||||
|
||||
Battery* mainBattery;
|
||||
|
||||
};
|
||||
|
||||
#endif // MENU_AKKU_H
|
||||
|
||||
+6
-1
@@ -27,6 +27,7 @@
|
||||
#include "moveControl.h"
|
||||
#include "network.h"
|
||||
#include "debugMqtt.h"
|
||||
#include "battery.h"
|
||||
|
||||
#include "menu.h"
|
||||
#include "menuAction.h"
|
||||
@@ -44,6 +45,7 @@ LiquidCrystal_I2C* lcd;
|
||||
OutputBuf* outputBuf;
|
||||
DebugMqtt* debugMqtt = nullptr;
|
||||
BluetoothSerial* serialBT = nullptr;
|
||||
Battery* mainBattery;
|
||||
|
||||
bool wifiIsActive;
|
||||
|
||||
@@ -57,6 +59,8 @@ void setup() {
|
||||
Serial.begin(115200);
|
||||
char wifiIndicator = 'X';
|
||||
|
||||
mainBattery = new Battery(35, 690000, 220000);
|
||||
|
||||
Wire.begin(21, 19);
|
||||
// i2cScanner();
|
||||
lcd = new LiquidCrystal_I2C(0x3F,16,2);
|
||||
@@ -109,6 +113,7 @@ void loop() {
|
||||
}
|
||||
|
||||
driveManager.loop();
|
||||
mainBattery->loop();
|
||||
|
||||
// static uint32_t lastMillis = 0;
|
||||
// if (millis() - lastMillis > 2000) {
|
||||
@@ -215,7 +220,7 @@ void makeMenu() {
|
||||
MenuCaptureRoute* cap_m = new MenuCaptureRoute(&driveManager);
|
||||
MenuAutopilot* auto_m = new MenuAutopilot(&driveManager);
|
||||
MenuGPS* gps_m = new MenuGPS(driveManager.getNavigation()->getGPS());
|
||||
MenuAkku* akku_m = new MenuAkku();
|
||||
MenuAkku* akku_m = new MenuAkku(mainBattery);
|
||||
|
||||
// Set Menus on LCD
|
||||
main_m->setLcd(lcd);
|
||||
|
||||
Reference in New Issue
Block a user