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
Code that compiles for an UNO R3, will not compile for an UNO R4
i.e:
const int deployButton = 13; Toggle swDeployButton = new Toggle(deployButton);
results in:
error: invalid conversion from 'Toggle*' to 'uint8_t {aka unsigned char}' [-fpermissive] Toggle swDeployButton = new Toggle(deployButton);
The text was updated successfully, but these errors were encountered:
For anyone else reading this:
Change the decleration to: Toggle swDeployButton(deployButton);
Toggle swDeployButton(deployButton);
Sorry, something went wrong.
No branches or pull requests
Code that compiles for an UNO R3, will not compile for an UNO R4
i.e:
results in:
The text was updated successfully, but these errors were encountered: