- Home /
Question by
haris_budi · Feb 12, 2014 at 05:21 AM ·
arduinoparsingserialporttoken
parse serial data from arduino
hi everyone,i want to make bicycle simulation , with arduino control, i have a problem, how to parse serial comunication from arduino to unity (Handle bar, pedal speed, brake).?
or any reference?
thanks before :)
screenshot (serial comunicat arduino with 3 sensor )
untitled-1.jpg
(407.8 kB)
Comment
Answer by devil Games · May 17, 2015 at 06:31 PM
try
SerialPort portL = new SerialPort("COM10",9600);//9600
portL.Open();
need to add
using System.IO.Ports;
using System;
using System.IO;
using System.Text;
:)
Your answer
Follow this Question
Related Questions
The name 'Joystick' does not denote a valid type ('not found') 2 Answers
Arduino serial Read 0 Answers
Problems With Sending Data through Serial Port 1 Answer
Downloading all images from certain URL v2.0 0 Answers
Unexpected token: if 1 Answer