You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
Could you have a look at your code in ShadeMCU_Double_CONFIGURE.ino , around lines 85-88 : strcat(topic1, mqtt_client_id); strcpy(topic1, "/shadePositionL"); strcat(topic2, mqtt_client_id); strcpy(topic2, "/shadePositionR");
I think there are inversions between strcpy and strcat. [ first use strcpy, then strcat]
Best regards,
Patrick - Belgium
The text was updated successfully, but these errors were encountered:
Hi,
Could you have a look at your code in ShadeMCU_Double_CONFIGURE.ino , around lines 85-88 :
strcat(topic1, mqtt_client_id); strcpy(topic1, "/shadePositionL"); strcat(topic2, mqtt_client_id); strcpy(topic2, "/shadePositionR");
I think there are inversions between strcpy and strcat. [ first use strcpy, then strcat]
Best regards,
Patrick - Belgium
The text was updated successfully, but these errors were encountered: