Compare commits
5 Commits
main
...
revert-168
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0958eddbfb | ||
|
|
2e756178dc | ||
|
|
96e5919464 | ||
|
|
7c7a1b648e | ||
|
|
f0c97ed220 |
@ -107,7 +107,7 @@ sim_R_ho_air = 0.05 # K/W " with internal air circulation
|
|||||||
|
|
||||||
temp_scale = "f" # c = Celsius | f = Fahrenheit - Unit to display
|
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_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.
|
# 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
|
# This just shuts off the profile. If your SSR is working, your kiln will
|
||||||
|
|||||||
@ -368,14 +368,14 @@ function saveProfile()
|
|||||||
}
|
}
|
||||||
|
|
||||||
function get_tick_size() {
|
function get_tick_size() {
|
||||||
switch(time_scale_profile){
|
//switch(time_scale_profile){
|
||||||
case "s":
|
// case "s":
|
||||||
return 1;
|
// return 1;
|
||||||
case "m":
|
// case "m":
|
||||||
return 60;
|
// return 60;
|
||||||
case "h":
|
// case "h":
|
||||||
return 3600;
|
// return 3600;
|
||||||
}
|
// }
|
||||||
return 3600;
|
return 3600;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -473,17 +473,17 @@ $(document).ready(function()
|
|||||||
{
|
{
|
||||||
console.log("Status Socket has been opened");
|
console.log("Status Socket has been opened");
|
||||||
|
|
||||||
$.bootstrapGrowl("<span class=\"glyphicon glyphicon-exclamation-sign\"></span>Getting data from server",
|
// $.bootstrapGrowl("<span class=\"glyphicon glyphicon-exclamation-sign\"></span>Getting data from server",
|
||||||
{
|
// {
|
||||||
ele: 'body', // which element to append to
|
// ele: 'body', // which element to append to
|
||||||
type: 'success', // (null, 'info', 'error', 'success')
|
// type: 'success', // (null, 'info', 'error', 'success')
|
||||||
offset: {from: 'top', amount: 250}, // 'top', or 'bottom'
|
// offset: {from: 'top', amount: 250}, // 'top', or 'bottom'
|
||||||
align: 'center', // ('left', 'right', or 'center')
|
// align: 'center', // ('left', 'right', or 'center')
|
||||||
width: 385, // (integer, or 'auto')
|
// width: 385, // (integer, or 'auto')
|
||||||
delay: 2500,
|
// delay: 2500,
|
||||||
allow_dismiss: true,
|
// allow_dismiss: true,
|
||||||
stackup_spacing: 10 // spacing between consecutively stacked growls.
|
// stackup_spacing: 10 // spacing between consecutively stacked growls.
|
||||||
});
|
// });
|
||||||
};
|
};
|
||||||
|
|
||||||
ws_status.onclose = function()
|
ws_status.onclose = function()
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user