pull/66/head
shaun feakes 2019-05-25 14:11:52 -05:00
parent d884f2e37c
commit 1ba6dcfc16
3 changed files with 3 additions and 7 deletions

4
pda.c
View File

@ -7,6 +7,7 @@
#include "aqualink.h"
#include "init_buttons.h"
#include "pda.h"
#include "pda_menu.h"
#include "utils.h"
@ -41,7 +42,8 @@ bool pda_shouldSleep() {
}
void pda_wake() {
pda_reset_sleep();
// Add and specic code to run when wake is called.
}
void pda_reset_sleep() {

View File

@ -161,9 +161,6 @@ bool goto_pda_menu(struct aqualinkdata *aq_data, pda_menu_type menu) {
return true;
switch (menu) {
//case PM_SYSTEM_SETUP:
// select_pda_menu_item(aq_data, "MENU");
//break;
case PM_EQUIPTMENT_CONTROL:
select_pda_menu_item(aq_data, "EQUIPMENT ON/OFF", true);
break;
@ -199,17 +196,14 @@ bool goto_pda_menu(struct aqualinkdata *aq_data, pda_menu_type menu) {
case PM_AQUAPURE:
select_pda_menu_item(aq_data, "MENU", true);
select_pda_menu_item(aq_data, "SET AquaPure", true);
//select_pda_menu_item(aq_data, "LABEL AUX");
break;
case PM_SET_TEMP:
select_pda_menu_item(aq_data, "MENU", true);
select_pda_menu_item(aq_data, "SET TEMP", true);
//select_pda_menu_item(aq_data, "LABEL AUX");
break;
case PM_SET_TIME:
select_pda_menu_item(aq_data, "MENU", true);
select_pda_menu_item(aq_data, "SET TIME", true);
//select_pda_menu_item(aq_data, "LABEL AUX");
break;
default:
logMessage(LOG_ERR, "PDA Device programmer didn't understand requested menu\n");

Binary file not shown.