1
0
mirror of https://github.com/thooge/esp32-nmea2000-obp60.git synced 2025-12-14 14:33:07 +01:00

Merge branch 'wellenvogel:master' into master

This commit is contained in:
norbert-walter
2022-03-10 19:42:23 +01:00
committed by GitHub
4 changed files with 10 additions and 3 deletions

View File

@@ -17,6 +17,7 @@ class GwWifi{
bool fixedApPass=true;
bool clientIsConnected=false;
public:
const char *AP_password = "esp32nmea2k";
GwWifi(const GwConfigHandler *config,GwLog *log, bool fixedApPass=true);
void setup();
void loop();

View File

@@ -1,6 +1,5 @@
#include "GWWifi.h"
const char *AP_password = "esp32nmea2k";
GwWifi::GwWifi(const GwConfigHandler *config,GwLog *log, bool fixedApPass){
this->config=config;