mirror of https://github.com/sfeakes/AqualinkD.git
parent
d268efa379
commit
b2f19a85f6
|
|
@ -44,7 +44,7 @@ jobs:
|
|||
|
||||
# DYNAMIC LOGIC for 'name':
|
||||
# Same dynamic logic applied to the release name.
|
||||
name: Update Release ${{ github.event_name == 'push' && github.ref_name || github.event.inputs.tag_name }}
|
||||
name: Release ${{ github.event_name == 'push' && github.ref_name || github.event.inputs.tag_name }}
|
||||
|
||||
# Set draft to false if the intention is to publish/update a final version.
|
||||
draft: false
|
||||
|
|
|
|||
Binary file not shown.
Binary file not shown.
|
|
@ -1431,11 +1431,17 @@ PDA Line 9 = item and press
|
|||
|
||||
// At the menus above if we just get CMD_PDA_HIGHLIGHT then we need to press enter to set the %
|
||||
// if it's CMD_PDA_HIGHLIGHT then CMD_PDA_HIGHLIGHTCHARS, we can simply set the %
|
||||
|
||||
// At this point the Aquapure menu should be showing, if the last message was CMD_PDA_HIGHLIGHTCHARS then we
|
||||
// only need to change value, so check and wait a few more messages so see it. if not we assume we need to select
|
||||
// a device to change ie Pool or Spa.
|
||||
bool selected=false;
|
||||
waitForPDAMessageType(aqdata,CMD_PDA_HIGHLIGHT, 15);
|
||||
if ( waitForPDAMessageType(aqdata,CMD_PDA_HIGHLIGHTCHARS, 2)) {
|
||||
selected = true;
|
||||
}
|
||||
//waitForPDAMessageType(aqdata,CMD_PDA_HIGHLIGHT, 15);
|
||||
//if (aqdata->last_packet_type != CMD_PDA_HIGHLIGHTCHARS) { // not needed, waitForPDAMessageType will return if last message was CMD_PDA_HIGHLIGHTCHARS
|
||||
if ( waitForPDAMessageType(aqdata,CMD_PDA_HIGHLIGHTCHARS, 4)) {
|
||||
selected = true;
|
||||
}
|
||||
//}
|
||||
|
||||
if (selected) {
|
||||
LOG(PDA_LOG,LOG_DEBUG, "SWG %% already selected\n");
|
||||
|
|
|
|||
|
|
@ -4,5 +4,5 @@
|
|||
#define AQUALINKD_SHORT_NAME "AqualinkD"
|
||||
|
||||
// Use Magor . Minor . Patch
|
||||
#define AQUALINKD_VERSION "3.0.3 (dev.4)"
|
||||
#define AQUALINKD_VERSION "3.0.3 (dev.5)"
|
||||
|
||||
Loading…
Reference in New Issue