-
Notifications
You must be signed in to change notification settings - Fork 0
Make Raspberry Pi & DHT 22 Sensor Device
Dan Lwo edited this page Jul 19, 2017
·
19 revisions
- Prepare a micro SD memory card.
- Go to https://www.raspberrypi.org/downloads/raspbian/, download RASPBIAN JESSIE LITE.
- Install the downloaded RASPBIAN JESSIE LITE image into the micro SD memory card. ApplePi-Baker is recommended. https://www.tweaking4all.com/software/macosx-software/macosx-apple-pi-baker/
- Insert the installed micro SD memory card into raspberry pi, plugin the power and you're ready to start the machine.
The default username is "pi" and password is "raspberry", login to the OS and proceed to env. settings.
You can check network status by this command:
ifconfig
To connect raspberry pi to wifi, we need to edit the setting file:
sudo nano /etc/wpa_supplicant/wpa_supplicant.conf
Add the following lines at the end of the file:
ssid="yourWifiName"
psk="yourWifiPassword"
}```