2013-04-10 11:53:48 +00:00
|
|
|
function tab_initialize_auxiliary_configuration() {
|
2013-08-26 13:16:49 +00:00
|
|
|
ga_tracker.sendAppView('Auxiliary Configuration');
|
2014-02-14 21:17:51 +00:00
|
|
|
GUI.active_tab = 'auxiliary_configuration';
|
2013-04-10 13:31:51 +00:00
|
|
|
|
2014-04-11 13:11:59 +00:00
|
|
|
send_message(MSP_codes.MSP_BOXNAMES, false, false, get_box_data);
|
2014-03-08 05:25:15 +00:00
|
|
|
|
2014-03-22 23:28:41 +00:00
|
|
|
function get_box_data() {
|
2014-04-11 13:11:59 +00:00
|
|
|
send_message(MSP_codes.MSP_BOX, false, false, load_html);
|
2014-03-22 23:28:41 +00:00
|
|
|
}
|
2014-03-08 05:25:15 +00:00
|
|
|
|
2014-03-22 23:28:41 +00:00
|
|
|
function load_html() {
|
|
|
|
$('#content').load("./tabs/auxiliary_configuration.html", process_html);
|
|
|
|
}
|
2014-01-24 16:06:54 +00:00
|
|
|
|
2014-03-22 23:28:41 +00:00
|
|
|
function process_html() {
|
|
|
|
function box_check(num, pos) {
|
|
|
|
if (bit_check(num, pos)) { // 1
|
|
|
|
return '<td><input type="checkbox" checked="checked" /></td>';
|
|
|
|
} else { // 0
|
|
|
|
return '<td><input type="checkbox" /></td>';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// val = channel value
|
|
|
|
// aux_num = position of corresponding aux channel in the html table
|
|
|
|
function box_highlight(val, aux_num) {
|
|
|
|
var tr = $('table.boxes tr');
|
|
|
|
var pos = 0; // < 1300
|
|
|
|
|
|
|
|
if (val > 1300 && val < 1700) {
|
|
|
|
pos = 1;
|
|
|
|
} else if (val > 1700) {
|
|
|
|
pos = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
$(':nth-child(' + aux_num + '), :nth-child(' + (aux_num + 1) + '), :nth-child(' + (aux_num + 2) + ')', tr).css('background-color', 'transparent');
|
|
|
|
$('td:nth-child(' + (aux_num + pos) + ')', tr).css('background-color', 'orange');
|
|
|
|
}
|
|
|
|
|
|
|
|
// generate table from the supplied AUX names and AUX data
|
|
|
|
for (var i = 0; i < AUX_CONFIG.length; i++) {
|
|
|
|
$('.boxes > tbody:last').append(
|
|
|
|
'<tr>' +
|
|
|
|
'<td class="name">' + AUX_CONFIG[i] + '</td>' +
|
|
|
|
box_check(AUX_CONFIG_values[i], 0) +
|
|
|
|
box_check(AUX_CONFIG_values[i], 1) +
|
|
|
|
box_check(AUX_CONFIG_values[i], 2) +
|
|
|
|
|
|
|
|
box_check(AUX_CONFIG_values[i], 3) +
|
|
|
|
box_check(AUX_CONFIG_values[i], 4) +
|
|
|
|
box_check(AUX_CONFIG_values[i], 5) +
|
|
|
|
|
|
|
|
box_check(AUX_CONFIG_values[i], 6) +
|
|
|
|
box_check(AUX_CONFIG_values[i], 7) +
|
|
|
|
box_check(AUX_CONFIG_values[i], 8) +
|
|
|
|
|
|
|
|
box_check(AUX_CONFIG_values[i], 9) +
|
|
|
|
box_check(AUX_CONFIG_values[i], 10) +
|
|
|
|
box_check(AUX_CONFIG_values[i], 11) +
|
|
|
|
'</tr>'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
// UI Hooks
|
|
|
|
$('a.update').click(function() {
|
|
|
|
// catch the input changes
|
|
|
|
var main_needle = 0;
|
|
|
|
var needle = 0;
|
|
|
|
$('.boxes input').each(function() {
|
|
|
|
if ($(this).is(':checked')) {
|
|
|
|
AUX_CONFIG_values[main_needle] = bit_set(AUX_CONFIG_values[main_needle], needle);
|
|
|
|
} else {
|
|
|
|
AUX_CONFIG_values[main_needle] = bit_clear(AUX_CONFIG_values[main_needle], needle);
|
|
|
|
}
|
2014-03-08 05:25:15 +00:00
|
|
|
|
2014-03-22 23:28:41 +00:00
|
|
|
needle++;
|
2014-03-08 05:25:15 +00:00
|
|
|
|
2014-03-22 23:28:41 +00:00
|
|
|
if (needle >= 12) { // 4 aux * 3 checkboxes = 12 bits per line
|
|
|
|
main_needle++;
|
2013-06-13 11:11:53 +00:00
|
|
|
|
2014-03-22 23:28:41 +00:00
|
|
|
needle = 0;
|
|
|
|
}
|
2014-01-24 16:06:54 +00:00
|
|
|
});
|
2014-03-22 23:28:41 +00:00
|
|
|
|
|
|
|
// send over the data
|
|
|
|
var AUX_val_buffer_out = new Array();
|
|
|
|
|
|
|
|
var needle = 0;
|
|
|
|
for (var i = 0; i < AUX_CONFIG_values.length; i++) {
|
|
|
|
AUX_val_buffer_out[needle++] = lowByte(AUX_CONFIG_values[i]);
|
|
|
|
AUX_val_buffer_out[needle++] = highByte(AUX_CONFIG_values[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
send_message(MSP_codes.MSP_SET_BOX, AUX_val_buffer_out, false, save_to_eeprom);
|
|
|
|
|
|
|
|
function save_to_eeprom() {
|
2014-04-11 13:11:59 +00:00
|
|
|
send_message(MSP_codes.MSP_EEPROM_WRITE, false, false, function() {
|
2014-03-22 23:28:41 +00:00
|
|
|
GUI.log('EEPROM <span style="color: green">saved</span>');
|
|
|
|
|
|
|
|
var element = $('a.update');
|
|
|
|
element.addClass('success');
|
|
|
|
|
|
|
|
GUI.timeout_add('success_highlight', function() {
|
|
|
|
element.removeClass('success');
|
|
|
|
}, 2000);
|
|
|
|
});
|
|
|
|
}
|
2013-12-05 08:54:49 +00:00
|
|
|
});
|
2013-10-29 13:51:56 +00:00
|
|
|
|
2014-03-22 23:28:41 +00:00
|
|
|
// data pulling functions used inside interval timer
|
|
|
|
function get_rc_data() {
|
2014-04-11 13:11:59 +00:00
|
|
|
send_message(MSP_codes.MSP_RC, false, false, update_ui);
|
2014-03-22 23:28:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function update_ui() {
|
|
|
|
for (var i = 0; i < AUX_CONFIG.length; i++) {
|
|
|
|
if (bit_check(CONFIG.mode, i)) {
|
|
|
|
$('td.name').eq(i).addClass('on').removeClass('off');
|
|
|
|
} else {
|
|
|
|
$('td.name').eq(i).removeClass('on').removeClass('off');
|
|
|
|
|
|
|
|
if (AUX_CONFIG_values[i] > 0) {
|
|
|
|
$('td.name').eq(i).addClass('off');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
box_highlight(RC.AUX1, 2);
|
|
|
|
box_highlight(RC.AUX2, 5);
|
|
|
|
box_highlight(RC.AUX3, 8);
|
|
|
|
box_highlight(RC.AUX4, 11);
|
|
|
|
}
|
|
|
|
|
|
|
|
// enable data pulling
|
2014-03-30 09:51:16 +00:00
|
|
|
GUI.interval_add('aux_data_pull', get_rc_data, 50, true);
|
|
|
|
|
|
|
|
// status data pulled via separate timer with static speed
|
|
|
|
GUI.interval_add('status_pull', function() {
|
2014-04-11 13:11:59 +00:00
|
|
|
send_message(MSP_codes.MSP_STATUS);
|
2014-03-30 09:51:16 +00:00
|
|
|
}, 250, true);
|
2014-03-22 23:28:41 +00:00
|
|
|
}
|
2013-04-10 11:53:48 +00:00
|
|
|
}
|