Take low light, dark night photos, with Raspberry Pi Zero W with NoIR camera...
The Raspberry Pi Zero W is the latest addition to the Pi, with small form factor which makes it suitable for spy camera, that you could put on the shoe shelves to monitor your cat. The NoIR camera is a...
View ArticleIoT: Detect sound of your door bell with Raspberry Pi, ADC chip and Python 3...
Imagine a door bell that will activate a camera when someone presses it. Imagine a door bell that will notify someone is at your door via SMS or Telegram app. Physical events can be detected by...
View ArticleHow to set static IP address in Raspbian Jessie
Set a static IP address in Raspbian Jessie. From the CLI, edit the dhcp file file. Do not use /etc/network/interfaces like you used to with previous Raspbian versions. sudo nano /etc/dhcpcd.conf Append...
View ArticleResolve locale issue on Raspberry Pi Raspbian Jessie
When you experience this warning during boot and install. Last login: Sat Apr 2 23:28:22 2016 -bash: warning: setlocale: LC_ALL: cannot change locale (en_US.UTF-8) -bash: warning: setlocale: LC_ALL:...
View ArticleHost a local webserver on Raspberry Pi with Python SimpleHTTPServer
In Raspberry Pi CLI, type: python -m SimpleHTTPServer 8000 Then from your other computer, in web browser, go to this address: http://192.168.1.123:8000 Adjust your IP address according to your Pi IP...
View ArticleSchedule your Pi or other Linux machine to reboot and run a script on boot...
Simple concept. We want to ensure that our Pi is available and reliable. It is inevitable that networks get hickups, or the Pi runs out of memory requiring restart at a regular interval. For exaomple...
View ArticleControl serial infrared camera VC0706 with UART, Raspberry Pi and Python 3
So you bought a serial infrared camera from Adafruit running VC0706 chip, you want to know how to use it? 1. ssh into your Pi: ssh pi@192.168.1.111 (address of your Pi) then enter your usename and...
View ArticleTinyDB – The simplest no SQL python database for Raspberry Pi
So your Python program needs to remember the variables you set for your electronics. One way is to use text file, but organising data in text files are cumbersome. You need structure like json. With...
View ArticleEditing Text Files on Raspberry Pi remotely with Atom
Install atom on your Debian / Ubuntu laptop / PC: Download atom-amd64.deb from the Atom releases page. Run sudo dpkg --install atom-amd64.deb on the downloaded package. Launch Atom using the installed...
View ArticleRaspberry Pi 3 connecting and setting static IP addresses on multiple networks
So you got Wifi at home and a pocket mobile wifi dongle for remote access when you are traveling. You want Raspbery Pi 3 to know which network it is currently connecting to and assign a static IP...
View ArticleTake low light, dark night photos, with Raspberry Pi Zero W with NoIR camera...
The Raspberry Pi Zero W is the latest addition to the Pi, with small form factor which makes it suitable for spy camera, that you could put on the shoe shelves to monitor your cat. The NoIR camera is a...
View ArticleRaspberry Pi 3 Raspbian hotspot sharing wired Internet connection wirelessly
Want to use Raspberry Pi as hotspot access point? The following tested and verified on Raspbian Jessie. 1. Install dnsmasq and hostapd: sudo apt-get install dnsmasq hostapd 2. Ensure your wlan0 is...
View Article