Search found 4 matches

by progger
Thursday 18th February 2021 4:11pm
Forum: General
Topic: Did you know?
Replies: 91
Views: 405719

Re: Did you know?

If you create a comment that starts with "TODO:" then that comment shows up in you Notes list. This is a nice way to keep track of your ToDo-list :)
Gamabs ToDo-list.png
Gamabs ToDo-list.png (74.93 KiB) Viewed 33522 times
by progger
Wednesday 17th February 2021 3:09pm
Forum: General
Topic: [Solved] Sending Data to the Serial Port
Replies: 11
Views: 8024

Re: Sending Data to the Serial Port

Write #Comm1, "Hello World!"
by progger
Tuesday 16th February 2021 7:23pm
Forum: General
Topic: [Solved] Sending Data to the Serial Port
Replies: 11
Views: 8024

Re: Sending Data to the Serial Port

I am doing a lot of serial communications using Gambas. Here is how I set it up: Private Comm1 As SerialPort ' Com port initialization Comm1.PortName = cbCom1.Text Comm1.Speed = 115200 Comm1.Parity = Comm1.None Comm1.DataBits = 8 Comm1.StopBits = 1 Comm1.FlowControl = Comm1.None ' Start by using a s...
by progger
Monday 15th February 2021 8:26am
Forum: General
Topic: [Solved] Sending Data to the Serial Port
Replies: 11
Views: 8024

Re: Sending Data to the Serial Port

You also have to make sure that you add yourself to the "dialout" group in your Linux system. (for example open a terminal and type: sudo adduser your_name dialout). As mentioned above, first try it with a standard serial communication software to see if the hardware works. Personally, I p...