Work in process!
A nodeJS library to connect to and read temperatures from iBBQ based bluetooth thermometers.
Known supported devices:
- Inkbird IBT-2X, IBT-4X, IBT-6X
- HerQs EasyBBQ pro (my personal device)
Probably many other support thermometers since it's rebranded to many others.
Heavily inspired by the Go version of this library: https://github.com/sworisbreathing/go-ibbq. Many thanks!
Taken from the examples folder:
const thermometer = new iBBQ.iBBQ();
thermometer.connect()
.then(_ => {
console.log("Connected")
thermometer.startMeasurements(measurement => {
console.log(measurement);
}, error => {
console.log(error);
})
}).catch(err => {
console.error(err);
})