Skip to content
New issue

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

Feature: read temperature of tires #1

Open
renatobo opened this issue Feb 26, 2021 · 0 comments
Open

Feature: read temperature of tires #1

renatobo opened this issue Feb 26, 2021 · 0 comments
Labels
enhancement New feature or request

Comments

@renatobo
Copy link
Owner

renatobo commented Feb 26, 2021

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

@renatobo renatobo added the enhancement New feature or request label Feb 26, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant