Hello guest an Steini63,
please excuse my late reply!
Thank you for the decisive tip. Works flawlessly
Kind regards,
Eric
Search found 2 matches
- Wed Jul 15, 2020 8:50 am
- Forum: Liberty BASIC Language
- Topic: Sent Bytes to COM Port
- Replies: 4
- Views: 10487
- Wed Jul 08, 2020 7:35 am
- Forum: Liberty BASIC Language
- Topic: Sent Bytes to COM Port
- Replies: 4
- Views: 10487
Sent Bytes to COM Port
Hello LBB user, I'm new and I have what may be a fairly simple problem. I want to send four bytes A0 01 02 A3 (hex) to the COM port. The syntax: Print #ComPort, CHR$(A0)+CHR$(01)+CHR$(02)+CHR$(A3); or Print #ComPort, DECHEX$(160)+DECHEX$(01)+DECHEX$(02)+DECHEX$(163); does not work. Does anyone have ...