Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed compiling errors, but no ArtNet /aScn handles fired... --> no Output #3

Open
chris8205 opened this issue Sep 18, 2020 · 0 comments

Comments

@chris8205
Copy link

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....

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant