more automatic tests for MQTT topics; add potentiometer mechanism to simulator; allow simulator to set ADC values on Windows; fix adc strange variable types on BK7231; fix cleaning pin roles between simulator scenes; add windows-only debug macro $channelstates

This commit is contained in:
openshwprojects
2022-12-08 08:35:40 +01:00
parent e52ec34cc9
commit 3d44a996a7
34 changed files with 310 additions and 58 deletions

View File

@ -399,6 +399,9 @@ const char* htmlPinRoleNames[] = {
"error",
};
const char *PIN_RoleToString(int role) {
return htmlPinRoleNames[role];
}
int PIN_ParsePinRoleName(const char* name) {
int i;