Search found 2 matches

by steinche
Wed Jul 15, 2020 8:50 am
Forum: Liberty BASIC Language
Topic: Sent Bytes to COM Port
Replies: 4
Views: 9075

Re: Sent Bytes to COM Port

Hello guest an Steini63,

please excuse my late reply!
Thank you for the decisive tip. Works flawlessly :D

Kind regards,
Eric
by steinche
Wed Jul 08, 2020 7:35 am
Forum: Liberty BASIC Language
Topic: Sent Bytes to COM Port
Replies: 4
Views: 9075

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 ...