Entradas

Mostrando entradas de agosto, 2024

part1: error "raise valueerror(f"unkown property {name}")" on RaspberryPi 3 model B v1.2 to connect a sensor DHT11 not solved

Imagen
 Currently my RPi has python 2.7.13, and I want to upgrade it to python 3.5 version. The way how I'm connecting the DHT11 I've trying to receive data from a sensor DHT11 but for some reason I can't to find the way to make it works. Even thought I'll share what I've trying and maybe it will help me in the future to find the way. I've following two sources to connect it and download the code. 1-https://www.ioteca.com.ar/raspberry-pi/35/sensor-de-temperatura-y-humedad-dht11-con-rasperry-pi/ 2-https://www.circuitbasics.com/how-to-set-up-the-dht11-humidity-sensor-on-the-raspberry-pi/ Following those sources everything worked well except for this error:  The main error at the moment to execute the code was:  raise valueerror(f"unkown property {name}"). Since that error I thought it was the version of python was old. Because I was using python2.7.13. Then to know which version just use the command in a cmd console python --version. I'm following these ste...