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
Inspired by https://github.com/MagnusThome/RejsaRubberTrac but using a single read and not a matrix with device, for example a MLX90614
A Simple sketch is
#include <Wire.h> #include <Adafruit_MLX90614.h> Adafruit_MLX90614 mlx = Adafruit_MLX90614(); void setup() { Serial.begin(115200); mlx.begin(); Serial.println("ObjTemp AmbTemp"); } void loop() { Serial.print(mlx.readObjectTempC()); Serial.print(" "); Serial.print(mlx.readAmbientTempC()); Serial.println(); delay(100); }
Other libraries
Issues encountered so far
Inspired by the good work at https://github.com/MagnusThome/RejsaRubberTrac
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Inspired by https://github.com/MagnusThome/RejsaRubberTrac but using a single read and not a matrix with device, for example a MLX90614
A Simple sketch is
Other libraries
Issues encountered so far
Inspired by the good work at https://github.com/MagnusThome/RejsaRubberTrac
The text was updated successfully, but these errors were encountered: