We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Channel 13 is always added, when two or more channels are specified.
Test case, set two channels:
const uint8_t channels[] = {4, 5};
What's actually used are channels 4, 5, and 13
This line:
if (channelIndex > sizeof(channels)) channelIndex = 0;
Needs to be changed to:
if (channelIndex >= sizeof(channels)) channelIndex = 0;
The text was updated successfully, but these errors were encountered:
The problem was actually something else, fixed here - https://github.com/atom-smasher/esp8266_beaconSpam
Sorry, something went wrong.
No branches or pull requests
Channel 13 is always added, when two or more channels are specified.
Test case, set two channels:
What's actually used are channels 4, 5, and 13
This line:
Needs to be changed to:
The text was updated successfully, but these errors were encountered: