DS18B20 temperature sensor #483
-
I'd like to read temperature from DS18B20 OneWire temperature sensor. I haven't found any Kaluma library to support it. If there is really nothing which can be used to support it (I'm new here), is there maybe OneWire library then or it also needs to be prepared from scratch? There are proper MicroPython libraries: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
@duzymaju Currently onewire protocol is not supported, so we open an issue (#484) for onewire protocol. Alternatively you can use |
Beta Was this translation helpful? Give feedback.
@duzymaju Currently onewire protocol is not supported, so we open an issue (#484) for onewire protocol.
Alternatively you can use
pulseRead()
andpulseWrite()
to read and write signal in microseconds-level. DHT11 is an example for reading digital signals from an single wire.