Skip to content

Instantly share code, notes, and snippets.

@onderweg
Last active December 7, 2023 09:50
Show Gist options
  • Star 15 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save onderweg/4e17a37cf00219e10645e6ff4fdcf65b to your computer and use it in GitHub Desktop.
Save onderweg/4e17a37cf00219e10645e6ff4fdcf65b to your computer and use it in GitHub Desktop.
Read temperature and humidity data from Inkbird ibs-TH1.

This Gist contains an example code fragment of how to read temperature and humidity data from Inkbird ibs-TH1 bluetooth thermometer in NodeJS with Noble.

Note that you can also read values directly via command line with gatttool:

gatttool -b <MAC> --char-read --handle=0x002d

Example value:

c8 0a a8 16 00 49 88  
  • c8 0a uint16 Little Endian temperature value * 100
  • a8 16 uint16 Little Endian humidity value * 100

To find MAC adress of sensor, you can use hcitool.

sudo hcitool lescan

or bluetoothctl.

const DATA_HND = 0x002d;
const parseData = (data) => {
const rawTemp = data.readInt16LE(0);
const rawHum = data.readInt16LE(2);
return {
temperature: rawTemp / 100,
humidity: rawHum / 100
}
}
exports.readData = async (peripheral) => {
return new Promise((resolve, reject) => {
peripheral.readHandle(DATA_HND, function (error, data) {
if (error) {
reject(error);
}
resolve(
parseData(data)
);
});
});
}
@uvolmer
Copy link

uvolmer commented Nov 24, 2020

I'm not sure at the moment, but you may try --handle=0x0028

@chuckbenz
Copy link

Handle 0x0028 works for me - I get 7 bytes, and the first 4 match 100x the current temp (in C) and humidity. Example: 57 02 da 20 01 a9 8f
(side note - I'm not sure why I was expecting 6 bytes in my Sep 9 comment - I apparently miscounted).
Thanks!

@aphetor-dev
Copy link

I have an Inkbird TH-1 Plus (with display) and I believe the handle is 0x23

The characteristic name is "Real-time data"

Here's an example reading: 24-09-C7-0F-00-E3-96

First 2 bytes are temp, second humidity - in C and % x100

What are the last 3?

@wattsie
Copy link

wattsie commented Jan 29, 2021

I have an Inkbird TH-1 Plus (with display) and I believe the handle is 0x23
The characteristic name is "Real-time data"
Here's an example reading: 24-09-C7-0F-00-E3-96
First 2 bytes are temp, second humidity - in C and % x100
What are the last 3?

I think the next byte (4th) shows if Internal "00" or external "01" sensor is being measured.

Not sure how to decode last two.
Might be a crc (maybe crc16) not checked.

Cheers.

@dasJ
Copy link

dasJ commented Mar 5, 2021

The CRC in use is modbus crc16

2 Bytes Temperature
2 Bytes Humidity
1 Byte  Sensor (0 → Internal, 1 → External)
2 Bytes Modbus CRC16

@MoisezAguilar
Copy link

excuse me. I also have the Inkbird IBS-TH1 Plus, where can I get the SDK?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment