View Single Post
Old 11-10-2008, 10:37 PM   #4 (permalink)
dcb
needs more cowbell
 
dcb's Avatar
 
Join Date: Feb 2008
Location: ÿ
Posts: 5,038

pimp mobile - '81 suzuki gs 250 t
90 day: 96.29 mpg (US)

schnitzel - '01 Volkswagen Golf TDI
90 day: 53.56 mpg (US)
Thanks: 158
Thanked 269 Times in 212 Posts
FYI, played around with vb express and was able to echo the arduino serial output to the console without much fuss. would still need to parse it, but it is entirely doable (change COM4 to your com port):

Code:
Module Module1
    'based on http://support.microsoft.com/kb/904795/
    Sub Main()
        Using comport As IO.Ports.SerialPort = _
                My.Computer.Ports.OpenSerialPort("COM4")
            Do
                Dim Incoming As String = comport.ReadLine()
                If Incoming Is Nothing Then
                    Exit Do
                Else
                    Console.WriteLine(Incoming)
                End If
            Loop
            comport.Close()
        End Using

        Console.WriteLine("Press ENTER to quit")
        Console.ReadLine()
    End Sub

End Module
__________________
WINDMILLS DO NOT WORK THAT WAY!!!
  Reply With Quote