How to send multiple values from Arduino to Unity quickly
Hi. We are working on a project and we are using an IMU. We have been able to send multiple values from Arduino to unity and process them to animate two independent fingers constantly. But with the more fingers, the laggier it becomes due to the fact that the values are not being sent all at once but rather in a rotating order. This makes it so that the values in unity are only able to be read once at a time with the finger basically having to take turns. We are wanting to know how to send all these values faster. At the moment we are trying to use an IMU to track our hand position but we need to send at least 5 values for it to work the way we want. Anyone’s have any suggestions on how to send these values quickly?
share your code so we can help you, but basically catch all vars in an array and send them all at once, if you are using an string, just use some special character in between and split it later
Thank you for the comment. We will get the code to this post when we get it a little more developed. We are going to use the suggestions you gave us.
Your answer

Follow this Question
Related Questions
Read Arduino Stream with Js or C# 0 Answers
Read Arduino Sensors using bluetooth in Unity 0 Answers
Cannot implicitly convert type `string' to `int' 0 Answers
Arduino Unity bluetooth 0 Answers
HELP: Arduino Genuino 101 to Unity3D. Serial Communication 0 Answers