Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by Trebotron · Sep 24, 2018 at 01:31 PM · threadingarduinoserialport

Unity Arduino Communication Problem

Hi!

Im trying to connect arduino to unity using a seperate thread. The port seems to open, thread is starting but reading and writing the serialport is not working, the static variables from the attached script are always NULL. Also the arduino is not receiving anything.

What am i doing wrong? Thanks for any answers!

using UnityEngine; using System.Collections; using System.Collections.Generic; using System.IO.Ports; using System.Threading;

 public class ReadArduino : MonoBehaviour
 {
     public string portname = "/dev/cu.usbmodem1411";
     public int baudrate = 115200;
     SerialPort _SerialPort;
 
     public string stringReceived;
 
     Thread myThread;
     public bool runThread = false;
 
     static string sendData;
     static string readData;
 
     public void Start ()
     {
         #if UNITY_STANDALONE_WIN && !UNITY_EDITOR_OSX
         portname = "\\\\.\\" + portname;
         #endif
 
         _SerialPort = new SerialPort (portname, baudrate);
 
 
         if (_SerialPort.IsOpen)
             _SerialPort.Close ();
 
         OpenConnection ();
 
         runThread = true;
         myThread = new Thread(new ThreadStart(GetArduino));
         myThread.Start();
     }
 
     void Update ()
     {
         if (_SerialPort != null && !_SerialPort.IsOpen) {
             OpenConnection ();
         } else {
 
                         // setting static var for use in thread
             sendData = myValue1 + "," + myValue2;
 
                         // reading static var from thread
             stringReceived = readData;
 
             if(stringReceived == null){
                                 Debug.Log("No Data Received");
                 return;
             }
 
             string[] values = stringReceived.Split(',');
 
             // Do Stuff With values
         }
     }
 
     void ReadPort ()
     {
         try {
             char[] SendToArduino = sendData.ToCharArray();
 
             _SerialPort.Write (SendToArduino, 0, SendToArduino.Length);
             readData = _SerialPort.ReadLine ();
             _SerialPort.BaseStream.Flush();
 
         } catch (System.IO.IOException ex) {
             Debug.Log ("Read Error: " + ex.ToString ());
         }
     }
 
     void GetArduino(){
         while(runThread)
         {
             ReadPort ();
         }
     }
 
     void OpenConnection ()
     {
         if (_SerialPort != null) {
             if (_SerialPort.IsOpen) {
                 _SerialPort.Close ();
                 Debug.Log ("Closing port, because it was already open!");
             } else {
                 try{
                     _SerialPort.Open (); 
                     _SerialPort.ReadTimeout = 50;  
                     _SerialPort.WriteTimeout = 50;
                     _SerialPort.DtrEnable = true;
                     Debug.Log ("Port Opened!");
                 }catch (System.IO.IOException ex) {
                     Debug.Log ("Unable to open SerialPort: " + ex.ToString ());
                 }
             }
         } else {
             if (_SerialPort.IsOpen) {
                 Debug.Log ("Port is already open");
             } else {
                 Debug.Log ("Port == null");
             }
         }
     }
 
     void CloseConnection(){
         if (_SerialPort.IsOpen){
             _SerialPort.Close ();
         }
 
         runThread = false;
         myThread.Join();
     }
 
     void OnDestroy ()
     {
         CloseConnection();
     }
 
     void OnApplicationQuit ()
     {
         CloseConnection();
     }
 }
Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

0 Replies

· Add your reply
  • Sort: 

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

91 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

The Semaphore Timeout Period Has Expired 0 Answers

Using Arduino as controller in Unity is giving me bad framerate 1 Answer

Does not read information by serial port when creating executable 0 Answers

Arduino Unity3d FPS drop after twisting Potentiometer 0 Answers

unity to serial ports ( blink LED ) 0 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges