Welcome to Hackster!
Hackster is a community dedicated to learning hardware, from beginner to pro. Join us, it's free!
Maureen Rakotondraibe
Published © GPL3+

Portable thermometer - NFC/ QT PY/ SHT40

Check the ambient temperature and humidity wherever you go with a compact battery-less design!

BeginnerFull instructions provided10 hours454
Portable thermometer - NFC/ QT PY/ SHT40

Things used in this project

Hardware components

QT Py
Adafruit QT Py
×1
SHT40
Sensirion SHT40
×1
STMicroelectronics ST25DV-I2C
×1
Adafruit Qwiic JST 4 pin cables
×2

Software apps and online services

Arduino IDE
Arduino IDE

Hand tools and fabrication machines

3D Printer (generic)
3D Printer (generic)

Story

Read more

Custom parts and enclosures

Enclosure

I 3D printed an enclosure with a hole for the power plug, a hole for the female header to stick out and a hole next to the temperature and humidity sensor for better environment coupling. The white color allows the LEDs to shine through.

Components in enclosure

Here is a picture of the components in the enclosure

Schematics

Components assembly

Click, click, click... assembly done! Thanks to the STEMMA QT connectors of Adafruit's boards, all components are wired within seconds.
I also soldered 1 female pin header to facilitate reaching the capacitive touch pin once in the enclosure.

Code

Code

Arduino
The code initializes the LED, the SHT40 and the NFC tag. It checks the capacitive touch pin, if a touch is detected, it triggers a SHT40 measurement and stores the data into the NFC tag. If it succeeds a green LED blinks. If there is an error the LED will be red.
#include <Adafruit_NeoPixel.h>
#include <SensirionI2cSht4x.h>
#include <Wire.h>
#include "Adafruit_FreeTouch.h"
#include "ST25DVSensor.h"

Adafruit_FreeTouch qt_1 = Adafruit_FreeTouch(A0, OVERSAMPLE_4, RESISTOR_50K, FREQ_MODE_NONE);

// create a pixel strand with 1 pixel on PIN_NEOPIXEL
Adafruit_NeoPixel pixels(1, PIN_NEOPIXEL);

// create a SHT40 sensor object
SensirionI2cSht4x sensor;
float aTemperatureC, aTemperatureF = 0.0;
float aHumidity = 0.0;

static int16_t error;

int base_touch;

//NFC dual tag
ST25DV st25dv(1, 2, &Wire);

void measure(){
    error = sensor.measureHighPrecision(aTemperatureC, aHumidity);
    if (error != 0) {
        // set the first pixel #0 to red
        pixels.setPixelColor(0, pixels.Color(255, 0, 0));
    }else{
      //Temperature conversion to Fahrenheit
      aTemperatureF = aTemperatureC*9/5+32;
      pixels.setPixelColor(0, pixels.Color(0, 255, 0));
    }
    //turn on led pixel
    pixels.show(); 
    delay(1000);
    // turn off the led pixel
    pixels.clear();
    pixels.show();
}

void write_NFC(){
  char buffer[50];
  sprintf(buffer, "The temperature and humidity are:\n %.2fC  %.2fF %.2f%%RH", aTemperatureC,aTemperatureF,aHumidity);
  if(st25dv.writeUnabridgedURI(buffer, "")) {
    // Write NFC failed
    while(1);
  }
}

void setup() {
    // initialize the pixel led
    pixels.begin();  

    //NFC init
    st25dv.begin();

    //SHT40 init
    sensor.begin(Wire, SHT40_I2C_ADDR_44);
    sensor.softReset();
    delay(10);

    //Capacitive touch init
    if (! qt_1.begin())  
      {
        // Failed to begin qt on pin A0, turn on red led
        pixels.setPixelColor(0, pixels.Color(0, 255, 0));
      }
    
    base_touch = qt_1.measure();

}

void loop() {
    int result = 0;
    result = qt_1.measure(); 

    if(result > (base_touch+10))
    {
        measure();
        write_NFC();
    }
    
    delay(500);

}

Credits

Maureen Rakotondraibe
3 projects • 6 followers
Embedded systems/software engineer / Passionate about interfacing technologies to create new solutions
Contact

Comments

Please log in or sign up to comment.