Check for updates from GitHub and minor changes during testing

This commit is contained in:
Gunnar Skjold
2020-05-22 17:23:38 +02:00
parent a542fbc931
commit 43f50e0e0a
8 changed files with 155 additions and 28 deletions

View File

@@ -1,5 +1,13 @@
#include "AmsConfiguration.h"
uint8_t AmsConfiguration::getBoardType() {
return config.boardType;
}
void AmsConfiguration::setBoardType(uint8_t boardType) {
config.boardType = boardType;
}
char* AmsConfiguration::getWifiSsid() {
return config.wifiSsid;
}