|
You are here |
davidbieber.com | ||
| | | | |
quakkels.com
|
|
| | | | | Raspberry Pis are great little computers. Wonderful for running hobby services. But, whenever I start a new RPi project, I dislike needing to dig out my spare HDMI monitor and USB keyboard. I don't like having to take up room, connect all that hardware, just to enable SSH and Wifi so I don't need any of that equipment I just finished setting up. | |
| | | | |
www.codeandunicorns.com
|
|
| | | | | Explanation on setup I finally got the LCD LED controller. I spent some time to understand a bit better how it works. So basically from the LCD controller there is a connector with red/yellow/black lines going to driver board, which is needed for this old types of LCD monitors. | |
| | | | |
blog.nuculabs.de
|
|
| | | | | Hi In this article we'll test out the PMS5003 sensor in order to see if it works. I've forgot to buy a connector board, so we will do a manual connection to the Raspberry Pi 3 B V2. This involves cutting the wires and adding some resistors. Please note that you need: 5 Jumper Wires 2 Resistors 10K Ohm Raspberry Pi Setup Before connecting the sensor to the Pi we need to configure the Pi for this usecase. | |
| | | | |
whatibroke.com
|
|
| | | Hi everyone, Just a quick post on how to configure wireless info on a raspberry pi. To start with, open the config file: sudo nano /etc/wpa_supplicant/wpa_supplicant.conf You can then add any number of connections to the file with varying priorities: ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev update_config=1 country=AU network={ ssid="Mobile Network" psk="YOUR_PASSWORD" key_mgmt=WPA-PSK priority=2 } network={ ssid="Home Network" psk="YOUR_PASSWORD"... | ||