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
Hello, The code does not compile on Arduino 1.8.5 IDE (Mega 256). There is a cast missing:
uint8_t BlueDot_BME280::readByte(byte reg) ... Wire.requestFrom(parameter.I2CAddress, 1); should be -> Wire.requestFrom(parameter.I2CAddress, (byte)1); ....
Bye Rainer
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
The code does not compile on Arduino 1.8.5 IDE (Mega 256). There is a cast missing:
uint8_t BlueDot_BME280::readByte(byte reg)
...
Wire.requestFrom(parameter.I2CAddress, 1);
should be ->
Wire.requestFrom(parameter.I2CAddress, (byte)1);
....
Bye
Rainer
The text was updated successfully, but these errors were encountered: