Gbertaz / NonBlockingDallas

Arduino library for the DS18B20 temperature sensor. Avoid blocking the sketch while reading the sensor.
MIT License
11 stars 4 forks source link

Missing examples from Library #5

Closed awardblvr closed 5 months ago

awardblvr commented 1 year ago

Missing example for how to read multiple sensors from a single wire AND... HOW to assign addresses in the array so that a specific sensor can be associated with a particular index.

Gbertaz commented 1 year ago

Hi @awardblvr, TemperatureReading.ino example already works with multiple sensors (up to 15). Callbacks are called for each sensor found on the bus...

Good point for the index, I might consider implementing it.

Thanks!