Porównaj commity

...

3 Commity

Autor SHA1 Wiadomość Data
jbruce dba6cde65d remove the loading message 2022-12-16 14:19:57 -05:00
jbruce 024fb4f232 make minutes the defualt for editing graphs 2022-12-16 09:50:19 -05:00
jbruce 71e25b450d time scale on graph should always show hours 2022-12-16 09:44:45 -05:00
2 zmienionych plików z 20 dodań i 20 usunięć

Wyświetl plik

@ -127,7 +127,7 @@ sim_R_ho_air = 0.05 # K/W " with internal air circulation
# be in that scale.
temp_scale = "f" # c = Celsius | f = Fahrenheit - Unit to display
time_scale_slope = "h" # s = Seconds | m = Minutes | h = Hours - Slope displayed in temp_scale per time_scale_slope
time_scale_profile = "h" # s = Seconds | m = Minutes | h = Hours - Enter and view target time in time_scale_profile
time_scale_profile = "m" # s = Seconds | m = Minutes | h = Hours - Enter and view target time in time_scale_profile
# emergency shutoff the profile if this temp is reached or exceeded.
# This just shuts off the profile. If your SSR is working, your kiln will

Wyświetl plik

@ -368,14 +368,14 @@ function saveProfile()
}
function get_tick_size() {
switch(time_scale_profile){
case "s":
return 1;
case "m":
return 60;
case "h":
return 3600;
}
//switch(time_scale_profile){
// case "s":
// return 1;
// case "m":
// return 60;
// case "h":
// return 3600;
// }
return 3600;
}
@ -473,17 +473,17 @@ $(document).ready(function()
{
console.log("Status Socket has been opened");
$.bootstrapGrowl("<span class=\"glyphicon glyphicon-exclamation-sign\"></span>Getting data from server",
{
ele: 'body', // which element to append to
type: 'success', // (null, 'info', 'error', 'success')
offset: {from: 'top', amount: 250}, // 'top', or 'bottom'
align: 'center', // ('left', 'right', or 'center')
width: 385, // (integer, or 'auto')
delay: 2500,
allow_dismiss: true,
stackup_spacing: 10 // spacing between consecutively stacked growls.
});
// $.bootstrapGrowl("<span class=\"glyphicon glyphicon-exclamation-sign\"></span>Getting data from server",
// {
// ele: 'body', // which element to append to
// type: 'success', // (null, 'info', 'error', 'success')
// offset: {from: 'top', amount: 250}, // 'top', or 'bottom'
// align: 'center', // ('left', 'right', or 'center')
// width: 385, // (integer, or 'auto')
// delay: 2500,
// allow_dismiss: true,
// stackup_spacing: 10 // spacing between consecutively stacked growls.
// });
};
ws_status.onclose = function()