Add HW revision to mDNS for updates

This commit is contained in:
Djuri 2024-05-18 23:00:08 +02:00
parent ef7d629e8c
commit 858241bd57
3 changed files with 12 additions and 2 deletions

View file

@ -716,4 +716,12 @@ void setupFrontlight()
// }
flArray.allOFF();
}
#endif
#endif
String getHwRev() {
#ifndef HW_REV
return "REV_0";
#else
return HW_REV;
#endif
}