RS232 / Serial Support
Posted
#1
(In Topic #553)
Enthusiast

Does anyone know of a place i can read up on how to use Serial (Rs232) communication with Gambas?
I as As I have a Serial Barcode Reader and I would like to get the data from this and use it with in my Software (I would also need to get the weight from it as it is a scanner / scale like they use in the supermarkers)
Ideal I would like to have the serial scanner not linked to anything like a keypress (or a Do loop like I had to have in DOS)
any information or example website would be welcomed.
Posted
Enthusiast

Posted
Regular

Not mine.
This may help with your syntax and setup.
Code (gambas)
- Sport.PortName = "/dev/ttyACM0" 'Linux serial port to ttyUSB0
- Sport.Speed = "9600"
- Sport.Parity = 0
- Sport.DataBits = "8"
- Sport.StopBits = "1"
- Sport.FlowControl = 0
- Goto NoRx
- LabelRxlen.Text = RxLen
- ListBox1.Add(Rx)
- NoRx:
- Rx = ""
Please post your serial comm code if you get it working. There are not many working examples kicking around.
cheers
1 guest and 0 members have just viewed this.



