Bugfixes around saving settings

This commit is contained in:
tastendruecker123 2023-04-13 17:42:54 +02:00
parent 48ce948ede
commit 2c0e1bbe57
7 changed files with 38 additions and 18 deletions

View file

@ -515,7 +515,7 @@ class Web {
// pinout
uint8_t pin;
for (uint8_t i = 0; i < 8; i++) {
for (uint8_t i = 0; i < 9; i++) {
pin = request->arg(String(pinArgNames[i])).toInt();
switch(i) {
default: mConfig->nrf.pinCs = ((pin != 0xff) ? pin : DEF_CS_PIN); break;