tiyding up the appearance, making things more mobile screen friendly

pull/1/head
Peter Shanks 2019-01-08 09:10:58 +11:00
rodzic f19ae97680
commit e3132c2e53
6 zmienionych plików z 15 dodań i 16 usunięć

Wyświetl plik

@ -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
########################################################################

Wyświetl plik

@ -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 {

Wyświetl plik

@ -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");

Wyświetl plik

@ -16,7 +16,7 @@
<link rel="stylesheet" href="assets/css/bootstrap-theme.min.css"/>
<link rel="stylesheet" href="assets/css/bootstrap-modal.css"/>
<link rel="stylesheet" href="assets/css/select2.css"/>
<link rel="stylesheet" href="assets/css/picoreflow.css"/>
<link rel="stylesheet" href="assets/css/kilncontroller.css"/>
</head>
<body>
<div class="container">
@ -116,8 +116,8 @@
</div>
<div class="modal-footer">
<div class="btn-group" style="">
<button type="button" class="btn btn-success" style="" data-dismiss="modal" onclick="runTask()">Start the firing</button>
<button type="button" class="btn btn-danger" style="" data-dismiss="modal">Cancel</button>
<button type="button" class="btn btn-success" style="" data-dismiss="modal" onclick="runTask()">Start the firing</button>
</div>
</div>
</div>

Wyświetl plik

@ -1 +0,0 @@
{"type": "profile", "data": [[0, 20], [60, 100], [180, 82], [225, 176]], "name": "lead"}

Wyświetl plik

@ -1 +0,0 @@
{"type": "profile", "data": [[0, 25], [90, 150], [180, 183], [211, 237], [234, 184], [313, 26]], "name": "leadfree"}