03-07-2025, 01:18 PM
(03-07-2025, 11:50 AM)Mikeistaken Wrote: 1) when I use aa button component to send data to the pnet component, the pnet changes all the ; into &, which is normally fine, but using the apc connections they need to be separateIf I remember correctly, the way to get around the ampersand being converted was to use a URL encoded pattern for the &, which is: %26
So in the APC example on the wiki:
Code:
sender=02003c12;address_1=02006754;command=term_message;data=command=setmode&light=0&environ=0;
...becomes (by replacing all & with %26)
Code:
sender=02003c12;address_1=02006754;command=term_message;data=command=setmode%26light=0%26environ=0;