Forked from wgottesheim/gist:7a5629832e42a736159c7ce4a593dee3
Created
January 9, 2026 02:53
-
-
Save seanclancy/22cf9cd7dd7a8d306f46a31a9dc7f295 to your computer and use it in GitHub Desktop.
Steps to setup Raspberry Pi Zero for temperature monitoring in the garage
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| * add line to config.txt: "enable_uart=1" to enable serial console (https://learn.adafruit.com/adafruits-raspberry-pi-lesson-5-using-a-console-cable/enabling-serial-console) | |
| * Create file in / called "ssh" | |
| * Create file wpa_supplicant.conf: | |
| ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev | |
| update_config=1 | |
| country=GB | |
| network={ | |
| ssid="SSID" | |
| psk="Your WPA/WPA2 security key" | |
| key_mgmt=WPA-PSK | |
| } | |
| * sudo raspi-config - interfacing options - enable I2C | |
| * sudo apt update && sudo apt install i2c-tools | |
| * git clone https://github.com/pimoroni/py-smbus and run setup.py from library directory | |
| * add user to i2c group |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment