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
In the Custom Frequency Example, custom_frequency.ino the two statements in the setup() function are out of order:
Wire.setClock(1700000); // set frequency to 1.7mhz
...needs to come AFTER
mcp.begin(&Wire); // use default address 0
...or else the new clock frequency does not take effect.
The text was updated successfully, but these errors were encountered:
ok! please submit a PR for the fix!
Sorry, something went wrong.
I need write access to the repo, yes?
@karlsgodt No, you'd make a pull request from your own copy (fork) on this repo. But I think #63 will also fix this eventually.
No branches or pull requests
copy the sketch code in too): LIST REPRO STEPS BELOW
In the Custom Frequency Example, custom_frequency.ino the two statements in the setup() function are out of order:
Wire.setClock(1700000); // set frequency to 1.7mhz
...needs to come AFTER
mcp.begin(&Wire); // use default address 0
...or else the new clock frequency does not take effect.
The text was updated successfully, but these errors were encountered: