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
startFunctions.ino
replace row 495
Log("Starting Hotspot with SSID "); Log(deviceSettings.hotspotSSID); Log(" IP: "); Log((String)deviceSettings.hotspotIp); LogLn(".");
with
Log("Starting Hotspot with SSID "); Log(deviceSettings.hotspotSSID); Log(" IP: "); Log((String)(uint32_t(deviceSettings.hotspotIp))); LogLn(".");
but it seems there are other issues...
i'm still at the biginning of debugging...
but what i can see that the callback functions won't be fired
// Add required callback functions
artRDM.setArtDMXCallback(dmxHandle);
artRDM.setArtRDMCallback(rdmHandle);
artRDM.setArtSyncCallback(syncHandle);
artRDM.setArtIPCallback(ipHandle);
artRDM.setArtAddressCallback(addressHandle);
artRDM.setTODRequestCallback(todRequest);
artRDM.setTODFlushCallback(todFlush);
i'll go further....
The text was updated successfully, but these errors were encountered:
has some one else a running version?
ajax.ino:
replace row 106
deviceSettings.broadcast = deviceSettings.ip | (~deviceSettings.subnet);
with
deviceSettings.broadcast = uint32_t(deviceSettings.ip) | (~uint32_t(deviceSettings.subnet));
startFunctions.ino
replace row 495
Log("Starting Hotspot with SSID "); Log(deviceSettings.hotspotSSID); Log(" IP: "); Log((String)deviceSettings.hotspotIp); LogLn(".");
with
Log("Starting Hotspot with SSID "); Log(deviceSettings.hotspotSSID); Log(" IP: "); Log((String)(uint32_t(deviceSettings.hotspotIp))); LogLn(".");
but it seems there are other issues...
i'm still at the biginning of debugging...
but what i can see that the callback functions won't be fired
// Add required callback functions
artRDM.setArtDMXCallback(dmxHandle);
artRDM.setArtRDMCallback(rdmHandle);
artRDM.setArtSyncCallback(syncHandle);
artRDM.setArtIPCallback(ipHandle);
artRDM.setArtAddressCallback(addressHandle);
artRDM.setTODRequestCallback(todRequest);
artRDM.setTODFlushCallback(todFlush);
i'll go further....
The text was updated successfully, but these errors were encountered: