-
RPI Imager advanced options
CRTL+SHIFT+X
-
Raspberry Pi Zero DHT11
Connect DHT11 module to pin 1,6,7 sudo env PATH=$PATH:/usr/bin /usr/local/lib/node_modules/pm2/bin/pm2 startup systemd -u roberto –hp /home/xxx pm2 start ~/dht11/dht11.py –interpreter ./env/bin/python3 pm2 start tempServer.js
-
Temperature report site revamp!
Finally I did it! Still struggling with PHP. I was thinking of using django but I thought the learning curve was too much to tackle for a side project. Absolutely loving Bootstrap and Chart.js both so easy to use and very good looking. Have a look at the final result here. Soon I might post…
-
IPaddress change alert script
My old ISP use to change my external IP address all the time and to keep my DNS name on track I wrote this script: #!/usr/bin/python import smtplib import urllib2 import time import sys def send_email(): try: server = smtplib.SMTP(‘smtp’, 587)#smtp address and port number server.starttls() #Next, log in to the server server.login(“smtp username”, “password”)#username…
-
Lost my key. Cannot go Home!
-
Raspberry Pi 2
After the temporary death of the Banana Pi (and with it my website) I hastily bought a Raspberry Pi 2 to then find out few days later that the problem with the Banana was SD adapter from micro to normal, the miracle of Easter (Banana Pi = Jesus), replaced the adapter the Banana start again.…
-
This is how it all started!
Here is my first electronic kit. Got this from the US in the early 90s. Here few examples of electronics from school from the late 90s.
-
First steps to my RPi weather station
After my fist Pi experiment I finally decided what my final project will be: a weather station. After the temperature I thought humidity and atmospheric pressure will be the next task: To do that I needed two new sensors: DHT11 (don’t waste your money like I did on DHT11 buy DHT22) and BMP180. In order…
-
Banana Pi
Here is my new Banana Pi. It has been employed to replace the old laptop that I used as a webserver. The old laptop was still going strong but the HD was on his way out, every time I restarted the machine the HD stop working until you give it a good shake! Plus the…
-
First Raspberry Pi Project
Temperature Sensor: Just got my self a DS18D20 and I thought it will be good to build a controller to record temperature. I am using these two websites to help me start: http://raspberrywebserver.com/cgiscripting/rpi-temperature-logger/building-an-sqlite-temperature-logger.html https://www.cl.cam.ac.uk/projects/raspberrypi/tutorials/temperature/ In the second website I understood the basic to connect a DS18B20 Then the code in python to get the readings: #!/usr/bin/env…