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
// Pass environmental data from ENS210 to CCS811 ccs811.set_envdata210(float(hdc1080.readTemperature()), float(hdc1080.readHumidity()));
Need to refer CCS811 env data datasheet U16 format.
The text was updated successfully, but these errors were encountered:
So the code should be: ccs811.set_envdata((hdc1080.readTemperature() + 25) * 512, hdc1080.readHumidity() * 512 );
ccs811.set_envdata((hdc1080.readTemperature() + 25) * 512, hdc1080.readHumidity() * 512 );
Sorry, something went wrong.
No branches or pull requests
// Pass environmental data from ENS210 to CCS811
ccs811.set_envdata210(float(hdc1080.readTemperature()), float(hdc1080.readHumidity()));
Need to refer CCS811 env data datasheet U16 format.
The text was updated successfully, but these errors were encountered: