Unable to do usb communication of the non invasive thermometer with the app.
Forums
For my college project I have created a non invasive thermometer using the app. My components for the project are:
1. Microcontroller: Nodemcu - ESP8266 2. Temperature Sensor - MLX 90614 3. Proximity Sensor - APDS - 9960
Arduino Code:
#include <Wire.h>
#include <SparkFun_APDS9960.h>
#include <Adafruit_MLX90614.h>
SparkFun_APDS9960 apds = SparkFun_APDS9960();
uint8_t proximity_data = 0;
Adafruit_MLX90614 mlx = Adafruit_MLX90614();
void setup() {
[original story: Circuit Digest]