diff --git a/config.py.EXAMPLE b/config.py.EXAMPLE index 54d97c2..9c24b34 100644 --- a/config.py.EXAMPLE +++ b/config.py.EXAMPLE @@ -27,13 +27,14 @@ currency_type = "AUD" # Currency Symbol to show when calculating cost to run ### Outputs gpio_heat = 23 # Switches zero-cross solid-state-relay (was 11 initially) +# I don't use the following two imputs for ceramics, but there here if you need them: gpio_cool = 10 # Regulates PWM for 12V DC Blower gpio_air = 9 # Switches 0-phase det. solid-state-relay heater_invert = 0 # switches the polarity of the heater control (was 0 initially) ### Inputs -gpio_door = 18 +gpio_door = 18 # another one I don't use, but might find useful one day ### Thermocouple Adapter selection: # max31855 - bitbang SPI interface @@ -53,7 +54,7 @@ spi_sensor_chip_id = 0 ### amount of time, in seconds, to wait between reads of the thermocouple sensor_time_wait = 10 -# was .5 +# was .5 for solder reflow ######################################################################## diff --git a/public/assets/css/picoreflow.css b/public/assets/css/kilncontroller.css similarity index 94% rename from public/assets/css/picoreflow.css rename to public/assets/css/kilncontroller.css index 4d2898f..26ccaaf 100644 --- a/public/assets/css/picoreflow.css +++ b/public/assets/css/kilncontroller.css @@ -162,12 +162,12 @@ body { .ds-led-heat-active { color: rgb(214, 42, 0); - background: -moz-radial-gradient(center, ellipse cover, rgba(214,25,25,1) 0%, rgba(214,42,0,0.26) 100%); /* FF3.6+ */ - background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(214,25,25,1)), color-stop(100%,rgba(214,42,0,0.26))); /* Chrome,Safari4+ */ - background: -webkit-radial-gradient(center, ellipse cover, rgba(214,25,25,1) 0%,rgba(214,42,0,0.26) 100%); /* Chrome10+,Safari5.1+ */ - background: -o-radial-gradient(center, ellipse cover, rgba(214,25,25,1) 0%,rgba(214,42,0,0.26) 100%); /* Opera 12+ */ - background: -ms-radial-gradient(center, ellipse cover, rgba(214,25,25,1) 0%,rgba(214,42,0,0.26) 100%); /* IE10+ */ - background: radial-gradient(ellipse at center, rgba(214,25,25,1) 0%,rgba(214,42,0,0.26) 100%); /* W3C */ + /*background: -moz-radial-gradient(center, ellipse cover, rgba(214,25,25,1) 0%, rgba(214,42,0,0.26) 50%);*/ /* FF3.6+ */ + /*background: -webkit-gradient(radial, center center, 0px, center center, 50%, color-stop(0%,rgba(214,25,25,1)), color-stop(50%,rgba(214,42,0,0.26)));*/ /* Chrome,Safari4+ */ + /*background: -webkit-radial-gradient(center, ellipse cover, rgba(214,25,25,1) 0%,rgba(214,42,0,0.26) 50%);*/ /* Chrome10+,Safari5.1+ */ + /*background: -o-radial-gradient(center, ellipse cover, rgba(214,25,25,1) 0%,rgba(214,42,0,0.26) 50%);*/ /* Opera 12+ */ + /*background: -ms-radial-gradient(center, ellipse cover, rgba(214,25,25,1) 0%,rgba(214,42,0,0.26) 50%);*/ /* IE10+ */ + /*background: radial-gradient(ellipse at center, rgba(214,25,25,1) 0%,rgba(214,42,0,0.26) 50%);*/ /* W3C */ } .ds-led-air-active { diff --git a/public/assets/js/kilncontroller.js b/public/assets/js/kilncontroller.js index 899e3ee..8584add 100644 --- a/public/assets/js/kilncontroller.js +++ b/public/assets/js/kilncontroller.js @@ -7,12 +7,12 @@ var time_mode = 0; var selected_profile = 2; var selected_profile_name = 'bisque'; var temp_scale = "c"; -var time_scale_slope = "s"; -var time_scale_profile = "s"; -var time_scale_long = "Seconds"; +var time_scale_slope = "m"; +var time_scale_profile = "m"; +var time_scale_long = "Minutes"; var temp_scale_display = "C"; var kwh_rate = 0.26; -var currency_type = "EUR"; +var currency_type = "AUD"; var host = "ws://" + window.location.hostname + ":" + window.location.port; var ws_status = new WebSocket(host+"/status"); diff --git a/public/index.html b/public/index.html index fac4014..77e044e 100644 --- a/public/index.html +++ b/public/index.html @@ -16,7 +16,7 @@ - +
@@ -116,8 +116,8 @@
diff --git a/storage/profiles/lead.json b/storage/profiles/lead.json deleted file mode 100644 index 978e1e9..0000000 --- a/storage/profiles/lead.json +++ /dev/null @@ -1 +0,0 @@ -{"type": "profile", "data": [[0, 20], [60, 100], [180, 82], [225, 176]], "name": "lead"} diff --git a/storage/profiles/leadfree.json b/storage/profiles/leadfree.json deleted file mode 100644 index 8fb5cf0..0000000 --- a/storage/profiles/leadfree.json +++ /dev/null @@ -1 +0,0 @@ -{"type": "profile", "data": [[0, 25], [90, 150], [180, 183], [211, 237], [234, 184], [313, 26]], "name": "leadfree"} \ No newline at end of file