mirror of
https://github.com/joBr99/nspanel-lovelace-ui.git
synced 2026-02-12 08:07:43 +01:00
sync (add nextion2text)
This commit is contained in:
committed by
github-actions[bot]
parent
22b53aac1c
commit
a92e3c9a7a
@@ -13,26 +13,152 @@
|
|||||||
│ - lcd_dev fffb 0002 0000 0020
|
│ - lcd_dev fffb 0002 0000 0020
|
||||||
│ - page pageStartup
|
│ - page pageStartup
|
||||||
├── cardMedia.txt
|
├── cardMedia.txt
|
||||||
│ @@ -637,14 +637,276 @@
|
│ @@ -826,33 +826,283 @@
|
||||||
│ vis bNext,1
|
│ Attributes
|
||||||
│ bNext.txt="î"
|
│ Scope : local
|
||||||
│ }
|
│ Period (ms): 1000
|
||||||
│ //entity name
|
│ Enabled : yes
|
||||||
│ spstr strCommand.txt,entn.txt,"~",3
|
│
|
||||||
│ //icon
|
│ Events
|
||||||
│ spstr strCommand.txt,tIcon.txt,"~",4
|
│ Timer Event
|
||||||
|
│ - if(sleepTimeout!=0&&dimValue!=dim)
|
||||||
|
│ + // data available
|
||||||
|
│ + if(usize>1)
|
||||||
|
│ {
|
||||||
|
│ - sleepValue+=1
|
||||||
|
│ - if(sleepTimeout<=sleepValue)
|
||||||
|
│ + bufferPos=0
|
||||||
|
│ + while(bufferPos<usize)
|
||||||
|
│ {
|
||||||
|
│ - sleepValue=0
|
||||||
|
│ - dim=dimValue
|
||||||
|
│ - tSend.txt="event,sleepReached,cardMedia"
|
||||||
|
│ - //send calc crc
|
||||||
|
│ - btlen tSend.txt,sys0
|
||||||
|
│ - crcrest 1,0xffff // reset CRC
|
||||||
|
│ - crcputh 55 bb
|
||||||
|
│ - crcputs sys0,2
|
||||||
|
│ - crcputs tSend.txt,0
|
||||||
|
│ - //send cmd
|
||||||
|
│ - printh 55 bb
|
||||||
|
│ - prints sys0,2
|
||||||
|
│ - prints tSend.txt,0
|
||||||
|
│ - prints crcval,2
|
||||||
|
│ + // check for 0x55 0xBB - Command Init Secuence
|
||||||
|
│ + if(u[bufferPos]==187&&u[bufferPos-1]==85)
|
||||||
|
│ + {
|
||||||
|
│ + //remove garbage at the start of the buffer if there's any to free buffer for command
|
||||||
|
│ + if(u[bufferPos]!=1)
|
||||||
|
│ + {
|
||||||
|
│ + udelete bufferPos-1
|
||||||
|
│ + }
|
||||||
|
│ + //instruction is now aligned with buffer, because we deleted garbage before instrcution
|
||||||
|
│ + //get length after init sequence (check if there are more than to bytes in buffer)
|
||||||
|
│ + if(3<usize)
|
||||||
|
│ + {
|
||||||
|
│ + // check if serial buffer has reached the announced length
|
||||||
|
│ + ucopy payloadLength,2,2,0
|
||||||
|
│ + // we are only checking payload length so we have to skip first 3 bytes (init+payload length) (-1 because of < instead of <=)
|
||||||
|
│ + payloadLength+=3
|
||||||
|
│ + // payload length does also not contain crc, so we are adding another 2 bytes for crc
|
||||||
|
│ + payloadLength+=2
|
||||||
|
│ + if(payloadLength<usize)
|
||||||
|
│ + {
|
||||||
|
│ + // calculate crc
|
||||||
|
│ + crcrest 1,0xFFFF
|
||||||
|
│ + // u[2] contains payload legth at 3rd pos in buffer, we are calculating crc from 3rd pos with number of bytes from payload length
|
||||||
|
│ + //crcputu 3,u[2]
|
||||||
|
│ + // u[2] cotnains payload length, we are calculating a crc over the whole message, so we have to add 3 to the length from u[2]
|
||||||
|
│ + crcputu 0,payloadLength-1
|
||||||
|
│ + // get recived crc to be able to compare it
|
||||||
|
│ + ucopy recvCrc,payloadLength-1,2,0
|
||||||
|
│ + // compare crc with recived value
|
||||||
|
│ + if(crcval==recvCrc)
|
||||||
|
│ + {
|
||||||
|
│ + // crc is okay
|
||||||
|
│ + // here is the location where acual code should be
|
||||||
|
│ + // write command to variable strCommand
|
||||||
|
│ + ucopy strCommand.txt,4,payloadLength-5,0
|
||||||
|
│ + // write instruction to tInstuction (debug output, but used as variable here, ui elements will be disabled by default)
|
||||||
|
│ + spstr strCommand.txt,tInstruction.txt,"~",0
|
||||||
|
│ + if(tInstruction.txt=="entityUpd")
|
||||||
|
│ + {
|
||||||
|
│ + //heading
|
||||||
|
│ + spstr strCommand.txt,tHeading.txt,"~",1
|
||||||
|
│ + // navigation icons
|
||||||
|
│ + spstr strCommand.txt,tId.txt,"~",2
|
||||||
|
│ + spstr tId.txt,tTmp.txt,"|",0
|
||||||
|
│ + if(tTmp.txt=="0")
|
||||||
|
│ + {
|
||||||
|
│ + vis bPrev,0
|
||||||
|
│ + tsw mSwipePrev,0
|
||||||
|
│ + tsw mSwipeUp,0
|
||||||
|
│ + }
|
||||||
|
│ + if(tTmp.txt=="1")
|
||||||
|
│ + {
|
||||||
|
│ + vis bPrev,1
|
||||||
|
│ + tsw mSwipePrev,1
|
||||||
|
│ + tsw mSwipeUp,0
|
||||||
|
│ + bPrev.txt="î°"
|
||||||
|
│ + }
|
||||||
|
│ + if(tTmp.txt=="2")
|
||||||
|
│ + {
|
||||||
|
│ + vis bPrev,1
|
||||||
|
│ + tsw mSwipePrev,0
|
||||||
|
│ + tsw mSwipeUp,1
|
||||||
|
│ + bPrev.txt="î¶"
|
||||||
|
│ + }
|
||||||
|
│ + spstr tId.txt,tTmp.txt,"|",1
|
||||||
|
│ + if(tTmp.txt=="0")
|
||||||
|
│ + {
|
||||||
|
│ + vis bNext,0
|
||||||
|
│ + tsw mSwipeNext,0
|
||||||
|
│ + }
|
||||||
|
│ + if(tTmp.txt=="1")
|
||||||
|
│ + {
|
||||||
|
│ + vis bNext,1
|
||||||
|
│ + tsw mSwipeNext,1
|
||||||
|
│ + bNext.txt="î³"
|
||||||
|
│ + }
|
||||||
|
│ + if(tTmp.txt=="2")
|
||||||
|
│ + {
|
||||||
|
│ + vis bNext,1
|
||||||
|
│ + bNext.txt="î"
|
||||||
|
│ + }
|
||||||
|
│ + //entity name
|
||||||
|
│ + spstr strCommand.txt,entn.txt,"~",3
|
||||||
|
│ + //icon
|
||||||
|
│ + spstr strCommand.txt,tIcon.txt,"~",4
|
||||||
|
│ + //icon farbe
|
||||||
|
│ + spstr strCommand.txt,tTmp.txt,"~",5
|
||||||
|
│ + if(tTmp.txt!="")
|
||||||
|
│ + {
|
||||||
|
│ + covx tTmp.txt,tIcon.pco,0,0
|
||||||
|
│ + }
|
||||||
│ + //title
|
│ + //title
|
||||||
│ + spstr strCommand.txt,tTitle.txt,"~",5
|
│ + spstr strCommand.txt,tTitle.txt,"~",6
|
||||||
│ + //author
|
│ + //title farbe
|
||||||
│ + spstr strCommand.txt,tAuthor.txt,"~",6
|
|
||||||
│ + //volume
|
|
||||||
│ + spstr strCommand.txt,tTmp.txt,"~",7
|
│ + spstr strCommand.txt,tTmp.txt,"~",7
|
||||||
|
│ + if(tTmp.txt!="")
|
||||||
|
│ + {
|
||||||
|
│ + covx tTmp.txt,tTitle.pco,0,0
|
||||||
|
│ + }
|
||||||
|
│ + //author
|
||||||
|
│ + spstr strCommand.txt,tAuthor.txt,"~",8
|
||||||
|
│ + //author farbe
|
||||||
|
│ + spstr strCommand.txt,tTmp.txt,"~",9
|
||||||
|
│ + if(tTmp.txt!="")
|
||||||
|
│ + {
|
||||||
|
│ + covx tTmp.txt,tAuthor.pco,0,0
|
||||||
|
│ + }
|
||||||
|
│ + //volume
|
||||||
|
│ + spstr strCommand.txt,tTmp.txt,"~",10
|
||||||
│ + covx tTmp.txt,sys0,0,0
|
│ + covx tTmp.txt,sys0,0,0
|
||||||
│ + hVolume.val=sys0
|
│ + hVolume.val=sys0
|
||||||
│ + //icon
|
│ + //icon
|
||||||
│ + spstr strCommand.txt,tPlayPause.txt,"~",8
|
│ + spstr strCommand.txt,tPlayPause.txt,"~",11
|
||||||
│ + //speaker current
|
│ + //speaker current
|
||||||
│ + spstr strCommand.txt,tSpeaker.txt,"~",9
|
│ + spstr strCommand.txt,tSpeaker.txt,"~",12
|
||||||
│ + if(tSpeaker.txt!="")
|
│ + if(tSpeaker.txt!="")
|
||||||
│ + {
|
│ + {
|
||||||
│ + tSpeaker.pco=1374
|
│ + tSpeaker.pco=1374
|
||||||
@@ -41,14 +167,14 @@
|
|||||||
│ + tSpeaker.pco=65535
|
│ + tSpeaker.pco=65535
|
||||||
│ + }
|
│ + }
|
||||||
│ + //speaker list
|
│ + //speaker list
|
||||||
│ + spstr strCommand.txt,vaSpeakerList.txt,"~",10
|
│ + spstr strCommand.txt,vaSpeakerList.txt,"~",13
|
||||||
│ + if(vaSpeakerList.txt=="")
|
│ + if(vaSpeakerList.txt=="")
|
||||||
│ + {
|
│ + {
|
||||||
│ + vis t6,0
|
│ + vis t6,0
|
||||||
│ + }
|
│ + }
|
||||||
│ + vaSpeakerPos.val=0
|
│ + vaSpeakerPos.val=0
|
||||||
│ + // on off button
|
│ + // on off button
|
||||||
│ + spstr strCommand.txt,tTmp.txt,"~",11
|
│ + spstr strCommand.txt,tTmp.txt,"~",14
|
||||||
│ + if(tTmp.txt=="disable")
|
│ + if(tTmp.txt=="disable")
|
||||||
│ + {
|
│ + {
|
||||||
│ + vis t5,0
|
│ + vis t5,0
|
||||||
@@ -58,7 +184,7 @@
|
|||||||
│ + covx tTmp.txt,t5.pco,0,0
|
│ + covx tTmp.txt,t5.pco,0,0
|
||||||
│ + }
|
│ + }
|
||||||
│ + //tIconBtnEntityName
|
│ + //tIconBtnEntityName
|
||||||
│ + spstr strCommand.txt,vaMenu.txt,"~",12
|
│ + spstr strCommand.txt,vaMenu.txt,"~",15
|
||||||
│ + }
|
│ + }
|
||||||
│ + if(tInstruction.txt=="time")
|
│ + if(tInstruction.txt=="time")
|
||||||
│ + {
|
│ + {
|
||||||
@@ -181,160 +307,13 @@
|
|||||||
│ + // clear whole buffer
|
│ + // clear whole buffer
|
||||||
│ + //code_c
|
│ + //code_c
|
||||||
│ + //bufferPos=0
|
│ + //bufferPos=0
|
||||||
│ + }
|
|
||||||
│ + }
|
|
||||||
│ +
|
|
||||||
│ +Timer tmSleep
|
|
||||||
│ + Attributes
|
|
||||||
│ + Scope : local
|
|
||||||
│ + Period (ms): 1000
|
|
||||||
│ + Enabled : yes
|
|
||||||
│ +
|
|
||||||
│ + Events
|
|
||||||
│ + Timer Event
|
|
||||||
│ + // data available
|
|
||||||
│ + if(usize>1)
|
|
||||||
│ + {
|
|
||||||
│ + bufferPos=0
|
|
||||||
│ + while(bufferPos<usize)
|
|
||||||
│ + {
|
|
||||||
│ + // check for 0x55 0xBB - Command Init Secuence
|
|
||||||
│ + if(u[bufferPos]==187&&u[bufferPos-1]==85)
|
|
||||||
│ + {
|
|
||||||
│ + //remove garbage at the start of the buffer if there's any to free buffer for command
|
|
||||||
│ + if(u[bufferPos]!=1)
|
|
||||||
│ + {
|
|
||||||
│ + udelete bufferPos-1
|
|
||||||
│ + }
|
|
||||||
│ + //instruction is now aligned with buffer, because we deleted garbage before instrcution
|
|
||||||
│ + //get length after init sequence (check if there are more than to bytes in buffer)
|
|
||||||
│ + if(3<usize)
|
|
||||||
│ + {
|
|
||||||
│ + // check if serial buffer has reached the announced length
|
|
||||||
│ + ucopy payloadLength,2,2,0
|
|
||||||
│ + // we are only checking payload length so we have to skip first 3 bytes (init+payload length) (-1 because of < instead of <=)
|
|
||||||
│ + payloadLength+=3
|
|
||||||
│ + // payload length does also not contain crc, so we are adding another 2 bytes for crc
|
|
||||||
│ + payloadLength+=2
|
|
||||||
│ + if(payloadLength<usize)
|
|
||||||
│ + {
|
|
||||||
│ + // calculate crc
|
|
||||||
│ + crcrest 1,0xFFFF
|
|
||||||
│ + // u[2] contains payload legth at 3rd pos in buffer, we are calculating crc from 3rd pos with number of bytes from payload length
|
|
||||||
│ + //crcputu 3,u[2]
|
|
||||||
│ + // u[2] cotnains payload length, we are calculating a crc over the whole message, so we have to add 3 to the length from u[2]
|
|
||||||
│ + crcputu 0,payloadLength-1
|
|
||||||
│ + // get recived crc to be able to compare it
|
|
||||||
│ + ucopy recvCrc,payloadLength-1,2,0
|
|
||||||
│ + // compare crc with recived value
|
|
||||||
│ + if(crcval==recvCrc)
|
|
||||||
│ + {
|
|
||||||
│ + // crc is okay
|
|
||||||
│ + // here is the location where acual code should be
|
|
||||||
│ + // write command to variable strCommand
|
|
||||||
│ + ucopy strCommand.txt,4,payloadLength-5,0
|
|
||||||
│ + // write instruction to tInstuction (debug output, but used as variable here, ui elements will be disabled by default)
|
|
||||||
│ + spstr strCommand.txt,tInstruction.txt,"~",0
|
|
||||||
│ + if(tInstruction.txt=="entityUpd")
|
|
||||||
│ + {
|
|
||||||
│ + //heading
|
|
||||||
│ + spstr strCommand.txt,tHeading.txt,"~",1
|
|
||||||
│ + // navigation icons
|
|
||||||
│ + spstr strCommand.txt,tId.txt,"~",2
|
|
||||||
│ + spstr tId.txt,tTmp.txt,"|",0
|
|
||||||
│ + if(tTmp.txt=="0")
|
|
||||||
│ + {
|
|
||||||
│ + vis bPrev,0
|
|
||||||
│ + tsw mSwipePrev,0
|
|
||||||
│ + tsw mSwipeUp,0
|
|
||||||
│ + }
|
|
||||||
│ + if(tTmp.txt=="1")
|
|
||||||
│ + {
|
|
||||||
│ + vis bPrev,1
|
|
||||||
│ + tsw mSwipePrev,1
|
|
||||||
│ + tsw mSwipeUp,0
|
|
||||||
│ + bPrev.txt="î°"
|
|
||||||
│ + }
|
|
||||||
│ + if(tTmp.txt=="2")
|
|
||||||
│ + {
|
|
||||||
│ + vis bPrev,1
|
|
||||||
│ + tsw mSwipePrev,0
|
|
||||||
│ + tsw mSwipeUp,1
|
|
||||||
│ + bPrev.txt="î¶"
|
|
||||||
│ + }
|
|
||||||
│ + spstr tId.txt,tTmp.txt,"|",1
|
|
||||||
│ + if(tTmp.txt=="0")
|
|
||||||
│ + {
|
|
||||||
│ + vis bNext,0
|
|
||||||
│ + tsw mSwipeNext,0
|
|
||||||
│ + }
|
|
||||||
│ + if(tTmp.txt=="1")
|
|
||||||
│ + {
|
|
||||||
│ + vis bNext,1
|
|
||||||
│ + tsw mSwipeNext,1
|
|
||||||
│ + bNext.txt="î³"
|
|
||||||
│ + }
|
|
||||||
│ + if(tTmp.txt=="2")
|
|
||||||
│ + {
|
|
||||||
│ + vis bNext,1
|
|
||||||
│ + bNext.txt="î"
|
|
||||||
│ + }
|
|
||||||
│ + //entity name
|
|
||||||
│ + spstr strCommand.txt,entn.txt,"~",3
|
|
||||||
│ + //icon
|
|
||||||
│ + spstr strCommand.txt,tIcon.txt,"~",4
|
|
||||||
│ //icon farbe
|
|
||||||
│ spstr strCommand.txt,tTmp.txt,"~",5
|
|
||||||
│ if(tTmp.txt!="")
|
|
||||||
│ {
|
|
||||||
│ covx tTmp.txt,tIcon.pco,0,0
|
|
||||||
│ }
|
|
||||||
│ //title
|
|
||||||
│ @@ -818,44 +1080,14 @@
|
|
||||||
│ // ucopy n2.val,0,usize,0
|
|
||||||
│ // clear whole buffer
|
|
||||||
│ //code_c
|
|
||||||
│ //bufferPos=0
|
|
||||||
│ }
|
│ }
|
||||||
│ }
|
│ }
|
||||||
│
|
│
|
||||||
│ -Timer tmSleep
|
|
||||||
│ - Attributes
|
|
||||||
│ - Scope : local
|
|
||||||
│ - Period (ms): 1000
|
|
||||||
│ - Enabled : yes
|
|
||||||
│ -
|
|
||||||
│ - Events
|
|
||||||
│ - Timer Event
|
|
||||||
│ - if(sleepTimeout!=0&&dimValue!=dim)
|
|
||||||
│ - {
|
|
||||||
│ - sleepValue+=1
|
|
||||||
│ - if(sleepTimeout<=sleepValue)
|
|
||||||
│ - {
|
|
||||||
│ - sleepValue=0
|
|
||||||
│ - dim=dimValue
|
|
||||||
│ - tSend.txt="event,sleepReached,cardMedia"
|
|
||||||
│ - //send calc crc
|
|
||||||
│ - btlen tSend.txt,sys0
|
|
||||||
│ - crcrest 1,0xffff // reset CRC
|
|
||||||
│ - crcputh 55 bb
|
|
||||||
│ - crcputs sys0,2
|
|
||||||
│ - crcputs tSend.txt,0
|
|
||||||
│ - //send cmd
|
|
||||||
│ - printh 55 bb
|
|
||||||
│ - prints sys0,2
|
|
||||||
│ - prints tSend.txt,0
|
|
||||||
│ - prints crcval,2
|
|
||||||
│ - }
|
|
||||||
│ - }
|
|
||||||
│ -
|
|
||||||
│ TouchCap tc0
|
│ TouchCap tc0
|
||||||
│ Attributes
|
│ Attributes
|
||||||
│ Scope: local
|
│ Scope: local
|
||||||
│ Value: 0
|
│ Value: 0
|
||||||
│
|
|
||||||
│ Events
|
|
||||||
│ Touch Press Event
|
|
||||||
├── pageStartup.txt
|
├── pageStartup.txt
|
||||||
│ @@ -173,15 +173,15 @@
|
│ @@ -173,15 +173,15 @@
|
||||||
│ Max. Text Size : 10
|
│ Max. Text Size : 10
|
||||||
@@ -354,34 +333,6 @@
|
|||||||
│ crcputs tSend.txt,0
|
│ crcputs tSend.txt,0
|
||||||
│ //send cmd
|
│ //send cmd
|
||||||
├── screensaver.txt
|
├── screensaver.txt
|
||||||
│ @@ -252,25 +252,25 @@
|
|
||||||
│ Attributes
|
|
||||||
│ Scope : local
|
|
||||||
│ Dragging : 0
|
|
||||||
│ Disable release event after dragging: 0
|
|
||||||
│ Send Component ID : disabled
|
|
||||||
│ Associated Keyboard : none
|
|
||||||
│ Text :
|
|
||||||
│ - Max. Text Size : 10
|
|
||||||
│ + Max. Text Size : 5
|
|
||||||
│
|
|
||||||
│ Text tIcon2
|
|
||||||
│ Attributes
|
|
||||||
│ Scope : local
|
|
||||||
│ Dragging : 0
|
|
||||||
│ Disable release event after dragging: 0
|
|
||||||
│ Send Component ID : disabled
|
|
||||||
│ Associated Keyboard : none
|
|
||||||
│ Text :
|
|
||||||
│ - Max. Text Size : 10
|
|
||||||
│ + Max. Text Size : 5
|
|
||||||
│
|
|
||||||
│ Text tMR
|
|
||||||
│ Attributes
|
|
||||||
│ Scope : local
|
|
||||||
│ Dragging : 0
|
|
||||||
│ Disable release event after dragging: 0
|
|
||||||
│ Send Component ID : disabled
|
|
||||||
│ @@ -351,15 +351,15 @@
|
│ @@ -351,15 +351,15 @@
|
||||||
│ Text tTime
|
│ Text tTime
|
||||||
│ Attributes
|
│ Attributes
|
||||||
|
|||||||
@@ -1073,18 +1073,36 @@ Timer tmSerial
|
|||||||
spstr strCommand.txt,entn.txt,"~",3
|
spstr strCommand.txt,entn.txt,"~",3
|
||||||
//icon
|
//icon
|
||||||
spstr strCommand.txt,tIcon.txt,"~",4
|
spstr strCommand.txt,tIcon.txt,"~",4
|
||||||
|
//icon farbe
|
||||||
|
spstr strCommand.txt,tTmp.txt,"~",5
|
||||||
|
if(tTmp.txt!="")
|
||||||
|
{
|
||||||
|
covx tTmp.txt,tIcon.pco,0,0
|
||||||
|
}
|
||||||
//title
|
//title
|
||||||
spstr strCommand.txt,tTitle.txt,"~",5
|
spstr strCommand.txt,tTitle.txt,"~",6
|
||||||
//author
|
//title farbe
|
||||||
spstr strCommand.txt,tAuthor.txt,"~",6
|
|
||||||
//volume
|
|
||||||
spstr strCommand.txt,tTmp.txt,"~",7
|
spstr strCommand.txt,tTmp.txt,"~",7
|
||||||
|
if(tTmp.txt!="")
|
||||||
|
{
|
||||||
|
covx tTmp.txt,tTitle.pco,0,0
|
||||||
|
}
|
||||||
|
//author
|
||||||
|
spstr strCommand.txt,tAuthor.txt,"~",8
|
||||||
|
//author farbe
|
||||||
|
spstr strCommand.txt,tTmp.txt,"~",9
|
||||||
|
if(tTmp.txt!="")
|
||||||
|
{
|
||||||
|
covx tTmp.txt,tAuthor.pco,0,0
|
||||||
|
}
|
||||||
|
//volume
|
||||||
|
spstr strCommand.txt,tTmp.txt,"~",10
|
||||||
covx tTmp.txt,sys0,0,0
|
covx tTmp.txt,sys0,0,0
|
||||||
hVolume.val=sys0
|
hVolume.val=sys0
|
||||||
//icon
|
//icon
|
||||||
spstr strCommand.txt,tPlayPause.txt,"~",8
|
spstr strCommand.txt,tPlayPause.txt,"~",11
|
||||||
//speaker current
|
//speaker current
|
||||||
spstr strCommand.txt,tSpeaker.txt,"~",9
|
spstr strCommand.txt,tSpeaker.txt,"~",12
|
||||||
if(tSpeaker.txt!="")
|
if(tSpeaker.txt!="")
|
||||||
{
|
{
|
||||||
tSpeaker.pco=1374
|
tSpeaker.pco=1374
|
||||||
@@ -1093,14 +1111,14 @@ Timer tmSerial
|
|||||||
tSpeaker.pco=65535
|
tSpeaker.pco=65535
|
||||||
}
|
}
|
||||||
//speaker list
|
//speaker list
|
||||||
spstr strCommand.txt,vaSpeakerList.txt,"~",10
|
spstr strCommand.txt,vaSpeakerList.txt,"~",13
|
||||||
if(vaSpeakerList.txt=="")
|
if(vaSpeakerList.txt=="")
|
||||||
{
|
{
|
||||||
vis t6,0
|
vis t6,0
|
||||||
}
|
}
|
||||||
vaSpeakerPos.val=0
|
vaSpeakerPos.val=0
|
||||||
// on off button
|
// on off button
|
||||||
spstr strCommand.txt,tTmp.txt,"~",11
|
spstr strCommand.txt,tTmp.txt,"~",14
|
||||||
if(tTmp.txt=="disable")
|
if(tTmp.txt=="disable")
|
||||||
{
|
{
|
||||||
vis t5,0
|
vis t5,0
|
||||||
@@ -1110,7 +1128,7 @@ Timer tmSerial
|
|||||||
covx tTmp.txt,t5.pco,0,0
|
covx tTmp.txt,t5.pco,0,0
|
||||||
}
|
}
|
||||||
//tIconBtnEntityName
|
//tIconBtnEntityName
|
||||||
spstr strCommand.txt,vaMenu.txt,"~",12
|
spstr strCommand.txt,vaMenu.txt,"~",15
|
||||||
}
|
}
|
||||||
if(tInstruction.txt=="time")
|
if(tInstruction.txt=="time")
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -50,18 +50,18 @@ cardThermo
|
|||||||
53 Component(s)
|
53 Component(s)
|
||||||
608 Line(s) of event code
|
608 Line(s) of event code
|
||||||
316 Unique line(s) of event code
|
316 Unique line(s) of event code
|
||||||
cardMedia
|
|
||||||
34 Component(s)
|
|
||||||
605 Line(s) of event code
|
|
||||||
214 Unique line(s) of event code
|
|
||||||
popupThermo
|
|
||||||
44 Component(s)
|
|
||||||
515 Line(s) of event code
|
|
||||||
272 Unique line(s) of event code
|
|
||||||
screensaver
|
screensaver
|
||||||
45 Component(s)
|
45 Component(s)
|
||||||
396 Line(s) of event code
|
396 Line(s) of event code
|
||||||
294 Unique line(s) of event code
|
294 Unique line(s) of event code
|
||||||
|
popupThermo
|
||||||
|
44 Component(s)
|
||||||
|
515 Line(s) of event code
|
||||||
|
272 Unique line(s) of event code
|
||||||
|
cardMedia
|
||||||
|
34 Component(s)
|
||||||
|
620 Line(s) of event code
|
||||||
|
207 Unique line(s) of event code
|
||||||
popupInSel
|
popupInSel
|
||||||
34 Component(s)
|
34 Component(s)
|
||||||
529 Line(s) of event code
|
529 Line(s) of event code
|
||||||
@@ -74,5 +74,5 @@ cardEntities
|
|||||||
Total
|
Total
|
||||||
17 Page(s)
|
17 Page(s)
|
||||||
571 Component(s)
|
571 Component(s)
|
||||||
7203 Line(s) of event code
|
7218 Line(s) of event code
|
||||||
1810 Unique line(s) of event code
|
1804 Unique line(s) of event code
|
||||||
|
|||||||
@@ -593,7 +593,7 @@ Text tIcon1
|
|||||||
Vertical Alignment : center
|
Vertical Alignment : center
|
||||||
Input Type : character
|
Input Type : character
|
||||||
Text :
|
Text :
|
||||||
Max. Text Size : 5
|
Max. Text Size : 10
|
||||||
Word wrap : disabled
|
Word wrap : disabled
|
||||||
Horizontal Spacing : 0
|
Horizontal Spacing : 0
|
||||||
Vertical Spacing : 0
|
Vertical Spacing : 0
|
||||||
@@ -623,7 +623,7 @@ Text tIcon2
|
|||||||
Vertical Alignment : center
|
Vertical Alignment : center
|
||||||
Input Type : character
|
Input Type : character
|
||||||
Text :
|
Text :
|
||||||
Max. Text Size : 5
|
Max. Text Size : 10
|
||||||
Word wrap : disabled
|
Word wrap : disabled
|
||||||
Horizontal Spacing : 0
|
Horizontal Spacing : 0
|
||||||
Vertical Spacing : 0
|
Vertical Spacing : 0
|
||||||
|
|||||||
@@ -641,18 +641,36 @@ Timer tmSerial
|
|||||||
spstr strCommand.txt,entn.txt,"~",3
|
spstr strCommand.txt,entn.txt,"~",3
|
||||||
//icon
|
//icon
|
||||||
spstr strCommand.txt,tIcon.txt,"~",4
|
spstr strCommand.txt,tIcon.txt,"~",4
|
||||||
|
//icon farbe
|
||||||
|
spstr strCommand.txt,tTmp.txt,"~",5
|
||||||
|
if(tTmp.txt!="")
|
||||||
|
{
|
||||||
|
covx tTmp.txt,tIcon.pco,0,0
|
||||||
|
}
|
||||||
//title
|
//title
|
||||||
spstr strCommand.txt,tTitle.txt,"~",5
|
spstr strCommand.txt,tTitle.txt,"~",6
|
||||||
//author
|
//title farbe
|
||||||
spstr strCommand.txt,tAuthor.txt,"~",6
|
|
||||||
//volume
|
|
||||||
spstr strCommand.txt,tTmp.txt,"~",7
|
spstr strCommand.txt,tTmp.txt,"~",7
|
||||||
|
if(tTmp.txt!="")
|
||||||
|
{
|
||||||
|
covx tTmp.txt,tTitle.pco,0,0
|
||||||
|
}
|
||||||
|
//author
|
||||||
|
spstr strCommand.txt,tAuthor.txt,"~",8
|
||||||
|
//author farbe
|
||||||
|
spstr strCommand.txt,tTmp.txt,"~",9
|
||||||
|
if(tTmp.txt!="")
|
||||||
|
{
|
||||||
|
covx tTmp.txt,tAuthor.pco,0,0
|
||||||
|
}
|
||||||
|
//volume
|
||||||
|
spstr strCommand.txt,tTmp.txt,"~",10
|
||||||
covx tTmp.txt,sys0,0,0
|
covx tTmp.txt,sys0,0,0
|
||||||
hVolume.val=sys0
|
hVolume.val=sys0
|
||||||
//icon
|
//icon
|
||||||
spstr strCommand.txt,tPlayPause.txt,"~",8
|
spstr strCommand.txt,tPlayPause.txt,"~",11
|
||||||
//speaker current
|
//speaker current
|
||||||
spstr strCommand.txt,tSpeaker.txt,"~",9
|
spstr strCommand.txt,tSpeaker.txt,"~",12
|
||||||
if(tSpeaker.txt!="")
|
if(tSpeaker.txt!="")
|
||||||
{
|
{
|
||||||
tSpeaker.pco=1374
|
tSpeaker.pco=1374
|
||||||
@@ -661,14 +679,14 @@ Timer tmSerial
|
|||||||
tSpeaker.pco=65535
|
tSpeaker.pco=65535
|
||||||
}
|
}
|
||||||
//speaker list
|
//speaker list
|
||||||
spstr strCommand.txt,vaSpeakerList.txt,"~",10
|
spstr strCommand.txt,vaSpeakerList.txt,"~",13
|
||||||
if(vaSpeakerList.txt=="")
|
if(vaSpeakerList.txt=="")
|
||||||
{
|
{
|
||||||
vis t6,0
|
vis t6,0
|
||||||
}
|
}
|
||||||
vaSpeakerPos.val=0
|
vaSpeakerPos.val=0
|
||||||
// on off button
|
// on off button
|
||||||
spstr strCommand.txt,tTmp.txt,"~",11
|
spstr strCommand.txt,tTmp.txt,"~",14
|
||||||
if(tTmp.txt=="disable")
|
if(tTmp.txt=="disable")
|
||||||
{
|
{
|
||||||
vis t5,0
|
vis t5,0
|
||||||
@@ -678,7 +696,7 @@ Timer tmSerial
|
|||||||
covx tTmp.txt,t5.pco,0,0
|
covx tTmp.txt,t5.pco,0,0
|
||||||
}
|
}
|
||||||
//tIconBtnEntityName
|
//tIconBtnEntityName
|
||||||
spstr strCommand.txt,vaMenu.txt,"~",12
|
spstr strCommand.txt,vaMenu.txt,"~",15
|
||||||
}
|
}
|
||||||
if(tInstruction.txt=="time")
|
if(tInstruction.txt=="time")
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -256,7 +256,7 @@ Text tIcon1
|
|||||||
Send Component ID : disabled
|
Send Component ID : disabled
|
||||||
Associated Keyboard : none
|
Associated Keyboard : none
|
||||||
Text :
|
Text :
|
||||||
Max. Text Size : 5
|
Max. Text Size : 10
|
||||||
|
|
||||||
Text tIcon2
|
Text tIcon2
|
||||||
Attributes
|
Attributes
|
||||||
@@ -266,7 +266,7 @@ Text tIcon2
|
|||||||
Send Component ID : disabled
|
Send Component ID : disabled
|
||||||
Associated Keyboard : none
|
Associated Keyboard : none
|
||||||
Text :
|
Text :
|
||||||
Max. Text Size : 5
|
Max. Text Size : 10
|
||||||
|
|
||||||
Text tMR
|
Text tMR
|
||||||
Attributes
|
Attributes
|
||||||
|
|||||||
@@ -646,32 +646,3 @@
|
|||||||
│ crcputs sys0,2
|
│ crcputs sys0,2
|
||||||
│ crcputs tSend.txt,0
|
│ crcputs tSend.txt,0
|
||||||
│ //send cmd
|
│ //send cmd
|
||||||
├── screensaver.txt
|
|
||||||
│ @@ -252,25 +252,25 @@
|
|
||||||
│ Attributes
|
|
||||||
│ Scope : local
|
|
||||||
│ Dragging : 0
|
|
||||||
│ Disable release event after dragging: 0
|
|
||||||
│ Send Component ID : disabled
|
|
||||||
│ Associated Keyboard : none
|
|
||||||
│ Text :
|
|
||||||
│ - Max. Text Size : 10
|
|
||||||
│ + Max. Text Size : 5
|
|
||||||
│
|
|
||||||
│ Text tIcon2
|
|
||||||
│ Attributes
|
|
||||||
│ Scope : local
|
|
||||||
│ Dragging : 0
|
|
||||||
│ Disable release event after dragging: 0
|
|
||||||
│ Send Component ID : disabled
|
|
||||||
│ Associated Keyboard : none
|
|
||||||
│ Text :
|
|
||||||
│ - Max. Text Size : 10
|
|
||||||
│ + Max. Text Size : 5
|
|
||||||
│
|
|
||||||
│ Text tMR
|
|
||||||
│ Attributes
|
|
||||||
│ Scope : local
|
|
||||||
│ Dragging : 0
|
|
||||||
│ Disable release event after dragging: 0
|
|
||||||
│ Send Component ID : disabled
|
|
||||||
|
|||||||
@@ -1,30 +0,0 @@
|
|||||||
+++ /dev/fd/62 2022-11-22 17:43:56.613131221 +0000
|
|
||||||
+reensaver.txt
|
|
||||||
+25 +252,25 @@
|
|
||||||
+ributes
|
|
||||||
+ Scope : local
|
|
||||||
+ Dragging : 0
|
|
||||||
+ Disable release event after dragging: 0
|
|
||||||
+ Send Component ID : disabled
|
|
||||||
+ Associated Keyboard : none
|
|
||||||
+ Text :
|
|
||||||
+ Max. Text Size : 10
|
|
||||||
+ Max. Text Size : 5
|
|
||||||
+
|
|
||||||
+con2
|
|
||||||
+ributes
|
|
||||||
+ Scope : local
|
|
||||||
+ Dragging : 0
|
|
||||||
+ Disable release event after dragging: 0
|
|
||||||
+ Send Component ID : disabled
|
|
||||||
+ Associated Keyboard : none
|
|
||||||
+ Text :
|
|
||||||
+ Max. Text Size : 10
|
|
||||||
+ Max. Text Size : 5
|
|
||||||
+
|
|
||||||
+R
|
|
||||||
+ributes
|
|
||||||
+ Scope : local
|
|
||||||
+ Dragging : 0
|
|
||||||
+ Disable release event after dragging: 0
|
|
||||||
+ Send Component ID : disabled
|
|
||||||
|
|||||||
@@ -54,10 +54,6 @@ cardPower
|
|||||||
43 Component(s)
|
43 Component(s)
|
||||||
435 Line(s) of event code
|
435 Line(s) of event code
|
||||||
297 Unique line(s) of event code
|
297 Unique line(s) of event code
|
||||||
screensaver
|
|
||||||
45 Component(s)
|
|
||||||
396 Line(s) of event code
|
|
||||||
294 Unique line(s) of event code
|
|
||||||
cardAlarm
|
cardAlarm
|
||||||
40 Component(s)
|
40 Component(s)
|
||||||
439 Line(s) of event code
|
439 Line(s) of event code
|
||||||
@@ -66,6 +62,10 @@ cardThermo
|
|||||||
53 Component(s)
|
53 Component(s)
|
||||||
608 Line(s) of event code
|
608 Line(s) of event code
|
||||||
316 Unique line(s) of event code
|
316 Unique line(s) of event code
|
||||||
|
screensaver
|
||||||
|
45 Component(s)
|
||||||
|
396 Line(s) of event code
|
||||||
|
294 Unique line(s) of event code
|
||||||
cardEntities
|
cardEntities
|
||||||
77 Component(s)
|
77 Component(s)
|
||||||
1391 Line(s) of event code
|
1391 Line(s) of event code
|
||||||
|
|||||||
@@ -593,7 +593,7 @@ Text tIcon1
|
|||||||
Vertical Alignment : center
|
Vertical Alignment : center
|
||||||
Input Type : character
|
Input Type : character
|
||||||
Text :
|
Text :
|
||||||
Max. Text Size : 5
|
Max. Text Size : 10
|
||||||
Word wrap : disabled
|
Word wrap : disabled
|
||||||
Horizontal Spacing : 0
|
Horizontal Spacing : 0
|
||||||
Vertical Spacing : 0
|
Vertical Spacing : 0
|
||||||
@@ -623,7 +623,7 @@ Text tIcon2
|
|||||||
Vertical Alignment : center
|
Vertical Alignment : center
|
||||||
Input Type : character
|
Input Type : character
|
||||||
Text :
|
Text :
|
||||||
Max. Text Size : 5
|
Max. Text Size : 10
|
||||||
Word wrap : disabled
|
Word wrap : disabled
|
||||||
Horizontal Spacing : 0
|
Horizontal Spacing : 0
|
||||||
Vertical Spacing : 0
|
Vertical Spacing : 0
|
||||||
|
|||||||
@@ -256,7 +256,7 @@ Text tIcon1
|
|||||||
Send Component ID : disabled
|
Send Component ID : disabled
|
||||||
Associated Keyboard : none
|
Associated Keyboard : none
|
||||||
Text :
|
Text :
|
||||||
Max. Text Size : 5
|
Max. Text Size : 10
|
||||||
|
|
||||||
Text tIcon2
|
Text tIcon2
|
||||||
Attributes
|
Attributes
|
||||||
@@ -266,7 +266,7 @@ Text tIcon2
|
|||||||
Send Component ID : disabled
|
Send Component ID : disabled
|
||||||
Associated Keyboard : none
|
Associated Keyboard : none
|
||||||
Text :
|
Text :
|
||||||
Max. Text Size : 5
|
Max. Text Size : 10
|
||||||
|
|
||||||
Text tMR
|
Text tMR
|
||||||
Attributes
|
Attributes
|
||||||
|
|||||||
Reference in New Issue
Block a user