Setting up raspi02 for Temperature Logging
In this post I begin the setup of one of my Raspberry Pi's to monitor and eventually logging of temperatures around the house from some hardwired sensors.
Here is a picture of raspi02 connected to a Monitor, Keyboard, Mouse and a breadboard for testing.
I will start by prepping a new Rasbian Image on the SD card for raspi02
Use etcher to burn newest raspbian-stretch-lite to SD card for raspi02
Plug the card into raspi02
first boot
change password
change hostname
enable predictable network interface names
change locale en_US.UTF-8 UTF-8
change timezone America - Toronto
enable SSH
enable 1-wire interface
overclock medium
update raspi-config
sudo vi /etc/dhcpcd.confset static ip address
reboot
At this point I am ready to start testing the 1-wire sensors that I have attached and then write some Python code to monitor the temperatures.
Next post will be my basic test code in Python 3.