![]() |
|
|||||||
| Home | Register | FAQ | Members List | Search | Today's Posts | Mark Forums Read |
| Questions & Help Needed Post any question regarding Basic4ppc. |
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
I want to detect some incoming Characters and act on it. (send other data)
No use of flowcontrol Iám using the serialterminal program. Now it seems a problem when I want to send data from the oncom routine. e.g. when receiving a single character like % I must send directly other data Also needed string to int and int to string. cannot find this in help What is the best to setup such routine for basic4ppc thanks in advance grCor |
|
||||
|
Basic4ppc automatically converts numbers and strings.
Using a timer is more foolproof than using the OnCom event. You need something like: Code:
Sub Timer1_Tick
If Serial.InBufferCount > 0 Then
data = Serial.InputString
if StrIndexOf(data,"%",0) > -1 then '% was sent
Serial.Output("somestring")
end if
end if
End Sub
|
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Serial Terminal? | willisgt | Questions & Help Needed | 2 | 04-01-2008 07:34 PM |
| serial compiling | Cor | Questions & Help Needed | 4 | 01-18-2008 02:10 PM |
| serial | Cor | Questions & Help Needed | 1 | 01-18-2008 01:49 PM |
| serial i/o | Softselect | Questions & Help Needed | 1 | 07-24-2007 02:48 PM |
| Serial Number | Cableguy | Questions & Help Needed | 4 | 05-05-2007 08:06 AM |