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
Hello,
I am having issue with library, i have spent much time trying to figure out what is going on but have had no luck. it seems that parser method may be broken as Rcontent is not being created correctly.
Hello,
I am having issue with library, i have spent much time trying to figure out what is going on but have had no luck. it seems that parser method may be broken as Rcontent is not being created correctly.
Example.
Server:
function UpdateEsp(){
console.log("Updating Esp!");
console.log(currentEffect);
console.log(JSON.stringify(currentEffect))
socket.emit('FXData', { "FXData" :100 });
};
ESP:
if (client.monitor())
{
if (RID == "FXData")
{
Serial.println(RID);
Serial.println(Rname);
Serial.println(Rcontent);
}
}
Debugger is displaying:
Received message = 42["FXData",{"FXData":100}]
FXData
FXData
00}]
///End
Any ideas what may be causing the issue? I have simplified code to make issue more evident , any help would be greatly appropriated.
Cheers
The text was updated successfully, but these errors were encountered: