Search found 1 match
- Apr 25, 2006 19:01
- Forum: General
- Topic: trying out OPEN COM. some trouble.
- Replies: 2
- Views: 4578
trying out OPEN COM. some trouble.
Hello all, I am trying out FreeBasic for the first time. I want to use it to open a serial port on my PC, etc., but have been having some problems. Here is the simple code I tried to test it with: OPEN COM "COM1:600,N,8,2" AS 2 FOR I=1 TO 10 BEEP WRITE #2,I,"HELLO",CHR$(13) NEXT ...