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 :slight_smile:

screenshot (serial comunicat arduino with 3 sensor )

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;

:slight_smile: