Update HomeSpan.h

This commit is contained in:
Gregg 2021-10-23 13:21:21 -05:00
parent b90fc5aad5
commit 4eb1ebf806
1 changed files with 0 additions and 2 deletions

View File

@ -315,9 +315,7 @@ struct SpanCharacteristic{
} }
void uvSet(UVal &u, const char *val){ void uvSet(UVal &u, const char *val){
Serial.printf("ADDRESS %d ",u.UINT32);
u.STRING = (char *)realloc(u.STRING, strlen(val) + 1); u.STRING = (char *)realloc(u.STRING, strlen(val) + 1);
Serial.printf("-> %d \n",u.UINT32);
strcpy(u.STRING, val); strcpy(u.STRING, val);
} }