atom-smasher
atom-smasher
This version - https://github.com/atom-smasher/esp8266_beaconSpam - has limited ability to hard-code MACs.
Looks like the "Original code" is correct, as of now…?
Going through it, is this line what's serving to keep it from running too fast? ``` if (currentTime - attackTime > 100) { ``` IIUC, instead of just sleeping for...
I'm wondering if this might be the perfect throttle: ``` if (currentTime - attackTime < 100) { delay ((100 - (currentTime - attackTime)) % 100); } else { ``` The...
Perfectly throttled here - https://github.com/atom-smasher/esp8266_beaconSpam
The problem was actually something else, fixed here - https://github.com/atom-smasher/esp8266_beaconSpam
The app I'm using it with is "Trade Me Property" v3.11.2 - https://trade-me-property.en.aptoide.com/app If that app is sending an end-date/end-time that's earlier than the start-date/start-time, then I'd guess that Simple-Calendar...
When I open the app, there's a "spinner" next to "Stations". That spinner now sometimes spins for 10+ minutes, and until it stops spinning, the app won't connect to any...
Update: A contributing factor seems to be upstream DNS service. On a connection with good DNS service, I'm not having this problem. On a connection with poor DNS service, this...
This is as far as I've gotten: `spleeter train --help` Will update if/when I explore it further.