Compare commits
No commits in common. "2358d6eb8f91965dcaad3fcd2355487bab213d01" and "695e2832464f7c78bb9cf012b6e9b4d407308795" have entirely different histories.
2358d6eb8f
...
695e283246
18
README.md
18
README.md
@ -103,20 +103,4 @@ For ease of adaption, connection, and prototyping I've decided to use Cat 5 ethe
|
||||
1 | auger_off | 1400
|
||||
2 | pause | 5000
|
||||
3 | igniter_start | 420000
|
||||
4 | blower_stop | 600000
|
||||
|
||||
# Startup Procedure
|
||||
1. Manually toggle the "I" Igniter switch ON
|
||||
2. Wait 60 seconds
|
||||
3. Manually toggle the "E" Exhaust switch ON
|
||||
4. Using the Hestia Web Portal, set Feed Rate to 2
|
||||
5. Enable the Auger
|
||||
6. Wait up to three minutes for pellets to ignite
|
||||
7. Manually toggle the "I" Ingniter switch OFF
|
||||
8. Monitor fire and adjust feed rates as necessary
|
||||
|
||||
# Timings
|
||||
* 60-90 seconds igniter preheat
|
||||
* 120-180 seconds for pellet ignition
|
||||
* 4 minutes from ignition to PoF Close
|
||||
* 7:30 minutes total
|
||||
4 | blower_stop | 600000
|
@ -54,11 +54,11 @@
|
||||
<div class="form-group">
|
||||
<label for="feedRate">Feed Rate: </label>
|
||||
<select name="feedRate" class="form-control" id="feed-rate-select">
|
||||
<option value="500">Low</option>
|
||||
<option value="625">Medium-Low</option>
|
||||
<option value="750">Medium</option>
|
||||
<option value="875">Medium-High</option>
|
||||
<option value="1000">High</option>
|
||||
<option value="500">1</option>
|
||||
<option value="625">2</option>
|
||||
<option value="750">3</option>
|
||||
<option value="875">4</option>
|
||||
<option value="1000">5</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="button-container d-flex justify-content-end">
|
||||
@ -128,25 +128,17 @@
|
||||
augerOff.innerHTML = config.intervals.augerOff;
|
||||
|
||||
switch (config.intervals.augerOn) {
|
||||
case '500':
|
||||
case '600':
|
||||
feedRate.innerHTML = 'Low';
|
||||
feedRateSelect.selectedIndex = 0;
|
||||
break;
|
||||
case '625':
|
||||
feedRate.innerHTML = 'Medium-Low';
|
||||
feedRateSelect.selectedIndex = 1;
|
||||
break;
|
||||
case '750':
|
||||
case '800':
|
||||
feedRate.innerHTML = 'Medium';
|
||||
feedRateSelect.selectedIndex = 2;
|
||||
break;
|
||||
case '875':
|
||||
feedRate.innerHTML = 'Medium-High';
|
||||
feedRateSelect.selectedIndex = 3;
|
||||
feedRateSelect.selectedIndex = 1;
|
||||
break;
|
||||
case '1000':
|
||||
feedRate.innerHTML = 'High';
|
||||
feedRateSelect.selectedIndex = 4;
|
||||
feedRateSelect.selectedIndex = 2;
|
||||
break;
|
||||
default:
|
||||
feedRate.innerHTML = 'Unknown';
|
||||
|
Loading…
Reference in New Issue
Block a user