Skip to content

Commit 0d1ee31

Browse files
authored
Update README.md
1 parent 934047e commit 0d1ee31

File tree

1 file changed

+38
-20
lines changed

1 file changed

+38
-20
lines changed

README.md

Lines changed: 38 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,8 @@ You only need to perform the following steps once!
160160
| File | Description |
161161
| ------------- | ---- |
162162
| Raspberry-PI-Q.py | Contains all the logic of the temperature controller. See below for details on its input parameters |
163-
| index.php | Simple PHP webpage to control the startup and teardown of the Raspberry-PI-Q python program |
163+
| index.php | PHP webpage to control the startup and teardown of the Raspberry-PI-Q python program. It also includes test utilities and real time logging output from the RPI |
164+
| processID.php | Simple PHP webpage to check if the process ID from the URL is still running on the RPI |
164165
| launcher.py | This is the python script executed at reboot of the RPI and it refreshes the code from the github repo as well as call the email address program below. It also copies the updated PHP website to the right location |
165166
| email_IP_address.py | This is a python program that will email and use dweet.io to update the current IP address of the RPI |
166167
| Freeboard_HTML_MeatChart.txt | This is the sample freeboard.io HTML section for advice on best cooking temperatures. Copy the file contents and create an html-based dashboard on freeboard.io |
@@ -210,32 +211,49 @@ Some things I want to explore for a v2 of this project include
210211

211212
## Pictures
212213
### Click on them to see them bigger in size
213-
1. Relay and Power Wiring
214+
1. Relay and Power Wiring for Ground, VCC, and Relay IN2
214215
<img src="https://github.com/michmike/Raspberry-PI-Q/blob/master/Images/IMG_20170123_001929.jpg" width="375" height="500">
215-
2. Fan
216-
![Fan](https://github.com/michmike/Raspberry-PI-Q/blob/master/Images/IMG_20170123_002004.jpg)
217-
3.Wiring of Ground, VCC, and Relay IN2
218-
![Wiring of Ground, VCC, and Relay IN2](https://github.com/michmike/Raspberry-PI-Q/blob/master/Images/IMG_20170123_002454.jpg)
219-
4. Robogaia board pass-through connection to 5v power and ground
220-
![Robogaia board pass-through connection to 5v power and ground](https://github.com/michmike/Raspberry-PI-Q/blob/master/Images/IMG_20170123_002514.jpg)
216+
<img src="https://github.com/michmike/Raspberry-PI-Q/blob/master/Images/relay.jpg" width="800" height="600">
217+
<img src="https://github.com/michmike/Raspberry-PI-Q/blob/master/Images/relaysetup.jpg" width="800" height="600">
218+
2. Fan and fan adaptor for kamado style grill's bottom air vent
219+
<img src="https://github.com/michmike/Raspberry-PI-Q/blob/master/Images/IMG_20170123_002004.jpg" width="375" height="500">
220+
<img src="https://github.com/michmike/Raspberry-PI-Q/blob/master/Images/kamadoconnector.jpg" width="800" height="600">
221+
<img src="https://github.com/michmike/Raspberry-PI-Q/blob/master/Images/fanassembly.jpg" width="800" height="600">
222+
3.
223+
4. Robogaia board pass-through connection to 5v power, ground, and GPIO 26
224+
<img src="https://github.com/michmike/Raspberry-PI-Q/blob/master/Images/IMG_20170123_002514.jpg" width="375" height="500">
225+
<img src="https://github.com/michmike/Raspberry-PI-Q/blob/master/Images/wiringonthermocouple_1.jpg" width="800" height="600">
226+
<img src="https://github.com/michmike/Raspberry-PI-Q/blob/master/Images/wiringonthermocouple_2.jpg" width="800" height="600">
227+
<img src="https://github.com/michmike/Raspberry-PI-Q/blob/master/Images/IMG_9539.jpg" width="800" height="600">
228+
<img src="https://github.com/michmike/Raspberry-PI-Q/blob/master/Images/IMG_9538.jpg" width="800" height="600">
229+
<img src="https://github.com/michmike/Raspberry-PI-Q/blob/master/Images/IMG_20170123_002602.jpg" width="800" height="600">
221230
5. Thermocouples on the robogaia dual board
222-
![Thermocouples on the robogaia dual board](https://github.com/michmike/Raspberry-PI-Q/blob/master/Images/IMG_20170123_002521.jpg)
223-
6. GPIO 26 connection to the relay IN2
224-
![GPIO 26 connection to the relay IN2](https://github.com/michmike/Raspberry-PI-Q/blob/master/Images/IMG_20170123_002602.jpg)
231+
<img src="https://github.com/michmike/Raspberry-PI-Q/blob/master/Images/IMG_20170123_002521.jpg" width="375" height="500">
232+
<img src="https://github.com/michmike/Raspberry-PI-Q/blob/master/Images/thermocoupleplate.jpg" width="800" height="600">
233+
<img src="https://github.com/michmike/Raspberry-PI-Q/blob/master/Images/thermocouplesetup.jpg" width="800" height="600">
234+
<img src="https://github.com/michmike/Raspberry-PI-Q/blob/master/Images/IMG_9540.jpg" width="800" height="600">
235+
6.
225236
7. PIN layout for Raspberry
226-
![PIN layout for Raspberry](https://github.com/michmike/Raspberry-PI-Q/blob/master/Images/RaspberryPI2_PIN_layout.jpg)
227-
8. PIN layout for Raspberry
228-
![PIN layout for Raspberry](https://github.com/michmike/Raspberry-PI-Q/blob/master/Images/RaspberryPI3_PIN_layout.jpg)
237+
<img src="https://github.com/michmike/Raspberry-PI-Q/blob/master/Images/RaspberryPI2_PIN_layout.jpg" width="375" height="500">
238+
<img src="https://github.com/michmike/Raspberry-PI-Q/blob/master/Images/RaspberryPI3_PIN_layout.jpg" width="800" height="600">
239+
8. Example Text/Email Notification
240+
<img src="https://github.com/michmike/Raspberry-PI-Q/blob/master/Images/emailnotification.png" width="800" height="600">
229241
9. Example email alert coming from Grovestreams
230-
![Example email alert coming from Grovestreams](https://github.com/michmike/Raspberry-PI-Q/blob/master/Images/email-alert.png)
242+
<img src="https://github.com/michmike/Raspberry-PI-Q/blob/master/Images/email-alert.jpg" width="800" height="600">
231243
10. Fan adaptor to fit kamado style grills
232244
![Fan adaptor to fit kamado style grills](https://github.com/michmike/Raspberry-PI-Q/blob/master/Images/fan-adaptor-for-big-green-egg.jpg)
233245
11. Inactivity outside-in monitoring alert by Grovestreams
234-
![Inactivity outside-in monitoring alert by Grovestreams](https://github.com/michmike/Raspberry-PI-Q/blob/master/Images/outside-in-monitoring.png)
246+
<img src="https://github.com/michmike/Raspberry-PI-Q/blob/master/Images/outside-in-monitoring.jpg" width="800" height="600">
235247
12. Parts
236-
![Parts](https://github.com/michmike/Raspberry-PI-Q/blob/master/Images/parts.jpg)
248+
<img src="https://github.com/michmike/Raspberry-PI-Q/blob/master/Images/parts.jpg" width="800" height="600">
249+
<img src="https://github.com/michmike/Raspberry-PI-Q/blob/master/Images/thermocouples.jpg" width="800" height="600">
237250
13. Top air vent for kamado grills
238251
14. Input air vent for kamado grills
239-
15. My *custom* case for the RPI and all its components
240-
16. Grovestreams dashboard
241-
17. Freeboard dashboard
252+
15. Fire box - light up just a single charcoal and get the Raspberry-PI-Q started
253+
<img src="https://github.com/michmike/Raspberry-PI-Q/blob/master/Images/firebox.jpg" width="800" height="600">
254+
16. My *custom* case for the RPI and all its components
255+
17. Grovestreams dashboard
256+
18. Freeboard.IO dashboard
257+
<img src="https://github.com/michmike/Raspberry-PI-Q/blob/master/Images/FreeboardDashboard.png" width="600" height="800">
258+
19. Raspberry-PI-Q website
259+
<img src="https://github.com/michmike/Raspberry-PI-Q/blob/master/Images/phpWebsite.png" width="800" height="600">

0 commit comments

Comments
 (0)