w1thermsensor icon indicating copy to clipboard operation
w1thermsensor copied to clipboard

A Python package and CLI tool to work with w1 temperature sensors like DS1822, DS18S20 & DS18B20 on the Raspberry Pi, Beagle Bone and other devices.

Results 10 w1thermsensor issues
Sort by recently updated
recently updated
newest added

### Erroneous Behavior I run a "while/true loop" (every 5 seconds) to read the temperatures from multiple DS18B20 sensors. When I disconnect the pin of one sensor from the breadboard,...

bug
triage

Some notes have been added to the readme to check the hw installation and perform a soft pull-up via simple Python instructions.

**Important notices** Before you add a new report, we ask you kindly to acknowledge the following: [x] I have read the contributing guide lines at https://github.com/timofurrer/w1thermsensor/blob/master/.github/CONTRIBUTING.md [x] I have read...

question

Hi, I was trying to catch the KernelModuleLoadError and handle it. ``` from w1thermsensor.errors import KernelModuleLoadError ``` However, its not possible to import the exception without raising the error. This...

question

Hello ! How I can unload ou remove devices that are no present anymore in the bus? Everytime I connect a sensor on the bus a new folder is created...

### Erroneous Behavior Hi, it seems to me, that the new Version is not available :~> sudo apt-get reinstall python-w1thermsensor Paketlisten werden gelesen... Fertig Abh▒ngigkeitsbaum wird aufgebaut. Statusinformationen werden eingelesen.......

bug
triage

### Update to using f-strings instead of sting.format() **Is your Feature Request related to a problem? Please describe.** This is just a nice to have. f-strings are the new Python3.6+...

enhancement
beginner friendly

There should be an FAQ in the wiki. The closed issue contain a lot of knowledge and ways to debug issues. I'd like to have them available in a wiki...

beginner friendly

It looks like the W1_Therm driver now supports bulk-read, which sends one command to all devices on the bus to read and convert the temperature. These can then be quickly...

enhancement
help wanted

Hi, I've created a synchronous method to implement bulk read temperature operation. It increases efficiency to get all sensors' temperature in time of a longest single sensor cycle. Tested with...