Advertisement
chillichump

Beginners Guide to Automation Episode 11

Apr 18th, 2020
4,599
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. Episode 11 of ChilliChumps Beginners Guide to Automation: https://youtu.be/WM0XM4cGMlI
  2. ----------------------------------------------------------------------------------------------------------
  3. Raspberry Pi 4: https://geni.us/rpi4b2gb
  4. (You can use other Raspberry Pi's)
  5. Raspberry Pi 4 Case: https://geni.us/rpi4case
  6. Raspbnerry Pi 4 Case for POE: https://geni.us/rpi_POE_case
  7. Raspberry Pi 4 Power Supply: https://geni.us/rpi4power
  8. Raspberry Pi 4 POE Hat: https://geni.us/rpi_poe_hat
  9. MicroSD Card 32gb: https://geni.us/32gbmicrosd
  10. ----------------------------------------------------------------------------------------------------------
  11. Notes: If you plug your Raspberry Pi into a screen/TV, once you are logged in you can get your IP address by typing:
  12. hostname -I
  13.  
  14.  
  15. -- Raspberry Pi Imager
  16. https://www.raspberrypi.org/downloads/
  17.  
  18. -- Connecting to wifi on Raspberry Pi when headless
  19. https://www.raspberrypi.org/documentation/configuration/wireless/headless.md
  20.  
  21. -- Download Putty
  22. https://putty.org/
  23.  
  24. -- Install Mosquitto MQTT:
  25. sudo apt install -y mosquitto mosquitto-clients
  26. -- Run Mosquitto MQTT at boot:
  27. sudo systemctl enable mosquitto.service
  28. -- Check Mosquitto is installed:
  29. mosquitto -v
  30.  
  31. -- install node-red:
  32. bash <(curl -sL https://raw.githubusercontent.com/node-red/linux-installers/master/deb/update-nodejs-and-nodered)
  33. -- Run node-red at boot:
  34. sudo systemctl enable nodered.service
  35.  
  36. -- Install SQLite:
  37. sudo apt-get install sqlite3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement