-
-
Notifications
You must be signed in to change notification settings - Fork 101
FAQ
The default login name is 'admin' with password 'password'. Make sure you change it after installation at the system setting page.
The software is running in a screen session
- Login with the user 'pi'.
- Run the command 'screen -r'. This will give a new terminal.
- Press 'Ctrl+c' and wait 10 seconds.
- Use 'Ctrl+a' and then a single 'd' to close the screen session and logout of your Pi
The software is running in a screen session
- Login with the user 'pi'.
- Run the command 'screen -r'. This will give a new terminal.
- Here there could be errors. Mail them or make an issue with the contents of the error.
- Use 'Ctrl+a' and then a single 'd' to close the screen session and logout of your Pi
TerrariumPI log all actions in a log file at log/terrariumpi.log
. By default it logs INFO, WARNING and ERROR messages. In order to get debug messages change the file: logging.conf
and change
[handler_fileHandler]
class=logging.handlers.TimedRotatingFileHandler
level=INFO
to
[handler_fileHandler]
class=logging.handlers.TimedRotatingFileHandler
level=DEBUG
And restart TerrariumPI
See the Translation page for creating a new translation
After installation of TerrariumPI there is a folder called 'Adafruit_Python_DHT' in the 'pi' user home folder. Enter the examples folder for a simple test script.
cd ~/Adafruit_Python_DHT/examples
./AdafruitDHT.py 22 24
Temp=21.6* Humidity=70.6%
Where value 22 is one of: 11 for DHT11 sensor, 22 for DHT22 sensor and 2302 for AM2303 sensor. And 24 is the value of the pin number in BCM mode https://pinout.xyz/
If the output is out of range, for example humidity is above 100%, this is an indication that the sensor is not working properly and can have a hardware failure. This has to be solved first before using it with TerrariumPI.