Sample Software Projects

DotNet https://docs.microsoft.com/en-us/aspnet/core/tutorials/first-mvc-app/?view=aspnetcore-2.1 If successful, work here – https://docs.microsoft.com/en-us/aspnet/core/web-api/?view=aspnetcore-2.1 Amazon Web Services – https://github.com/aws-samples/aws-modern-application-workshop Microsoft Azure – https://github.com/Azure/AzureQuickStartsProjects  

Connect Raspberry Pi to DHT11 Temp Humidity Sensor

We’ll be working with this existing project code. https://github.com/adafruit/Raspberry_Pi_SQLite_Sensors Video overview long version: Part 1: https://www.youtube.com/watch?v=_TVP3iHyoqQ Part 2: https://www.youtube.com/watch?v=bLO8G21z8bY Part 3: https://www.youtube.com/watch?v=S_NNGgdYUZA Project instructions long version –  https://github.com/adafruit/Raspberry_Pi_SQLite_Sensors Hooking up the DHt 11 sensor to the Raspberry Pi visual – https://www.techcoil.com/blog/how-to-read-temperature-and-humidity-from-a-dht11-sensor-that-is-connected-to-a-raspberry-pi-3/ Be sure to watch the YouTube videos and run through all 4 parts! Get to the Terminal. 

Wireless & Wi-Fi Technology

The Wireless technology HackTrack includes anything wireless!! First task – setup and manage a WiFi network. Recommended WiFi for home or business is a MESH network technology. There are several options. Lincubate is training on this line from Ubiquiti Networks – https://www.ubnt.com/products Recommend these WiFi access points  The WiFi management device (optional, can use the Controller software installed

Py Traffic Lights

Install Python https://www.raspberrypi.org/documentation/linux/software/python.md Source Location for PiTraffic – https://github.com/sbcshop/PiTraffic cd / cd optsudo mkdir trafficcd trafficsudo wget https://github.com/sbcshop/PiTraffic/blob/master/PiTraffic.py Run Wget command on the two .PY files – Here is the code that I came up with – import PiTrafficimport time SouthRed = PiTraffic.Traffic(“SOUTH”, “RED”)SouthYellow = PiTraffic.Traffic(“SOUTH”, “YELLOW”)SouthGreen = PiTraffic.Traffic(“SOUTH”, “GREEN”) EastRed = PiTraffic.Traffic(“EAST”, “RED”)EastYellow =