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
At the URL https://www.arduino.cc/en/Reference/BitwiseCompoundAnd
The code at the bottom of the page, just above the "See Also" is
myByte = 10101010; myByte &= B1111100 == B10101000;
But the B1111100 is missing a 1 on the left side of the value. It should be:
myByte = 10101010; myByte &= B11111100 == B10101000;
The text was updated successfully, but these errors were encountered:
BW "myByte = 10101010;" should be "myByte = B10101010;" if you are correcting things. Cheers!
Sorry, something went wrong.
corrected both thanks!
agdl
No branches or pull requests
At the URL https://www.arduino.cc/en/Reference/BitwiseCompoundAnd
The code at the bottom of the page, just above the "See Also" is
But the B1111100 is missing a 1 on the left side of the value. It should be:
The text was updated successfully, but these errors were encountered: