-
RPI Imager advanced options
-
Raspberry Pi Zero DHT11
Connect DHT11 module to pin 1,6,7 To set up a DHT11 sensor on a Raspberry Pi according to the article, you’ll need to use the following commands: (use DHT11 module and pin 1,6,7) 1. Update and Upgrade: sudo apt-get update sudo apt-get upgrade 2. Install Python Packages: sudo apt-get install python3-pip python3-dev 3. Install DHT11…
-
Temperature report site revamp!
-
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
-
This is how it all started!
-
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
-
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…
