Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/relativty/wrmhl
(Archived) Simple communication between Unity3D and Arduino - by Maxim xyz.
https://github.com/relativty/wrmhl
arduino hardware hardware-libraries iot iot-framework threading threadsafe unity
Last synced: 8 days ago
JSON representation
(Archived) Simple communication between Unity3D and Arduino - by Maxim xyz.
- Host: GitHub
- URL: https://github.com/relativty/wrmhl
- Owner: relativty
- License: mit
- Archived: true
- Created: 2017-11-22T14:21:29.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2021-08-21T14:36:30.000Z (about 3 years ago)
- Last Synced: 2024-08-01T00:38:05.318Z (3 months ago)
- Topics: arduino, hardware, hardware-libraries, iot, iot-framework, threading, threadsafe, unity
- Language: C#
- Homepage:
- Size: 5 MB
- Stars: 642
- Watchers: 44
- Forks: 63
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
Super fast communication between Unity and Arduino ☄ ⏱
Create an Arduino and Unity3D interactive experience with no latency ! ⏱
## Arduino to Unity made simple
If you have ever wanted to transmit data from Arduino to Unity3D the main issue is INSANE LATENCY. We didn’t find any free, optimized, and customizable solutions to tackle this problem. So I built **wrmhl**. You can now connect any Arduino interface to Unity3D.
- **Just write your Arduino code, how about a [A Touchless 3D Tracking Interface](https://www.youtube.com/watch?v=ikD_3Vemkf0) or a [Brain-Computer Arduino Interface](http://www.instructables.com/id/Arduino-brain-wave-reader/) ?**
- **Add a Serial print to send data from your interface to Unity3D (see [Examples](https://github.com/relativty/wrmhl/blob/master/Arduino/Arduino.ino))**
- **Import wrmhl to Unity, and voilà!**
You can use the default protocol, or implement your own without having to deal with thread just by changing [wrmhl/Assets/WRMHL/Scripts/Thread/wrmhlThread_Lines.cs](https://github.com/relativty/wrmhl/blob/master/Assets/WRMHL/Scripts/Thread/wrmhlThread_Lines.cs).
# Getting Started
## How to Install
You can either install it using [Git](https://git-scm.com/) or direct [Download](https://github.com/relativty/wrmhl/archive/master.zip). Or from the command line:```bash
# Clone this repository
$ git clone https://github.com/relativty/wrmhl
```## Uploading to Arduino 🤖
Upload to the Arduino the following program:
#### Path: wrmhl/Arduino/Arduino.ino## On Unity3D ! 💻
Open the project either from **wrmhl folder** or **wrmhl-master** 🌈### Import the Package ! 📦
**Assets**, **Import Package** and **Custom Package..** and you're good to **GO !** ⚡️### Important ! ⚠ Change the .NET 2.0 Subset to .NET 2.0 ⚠
In order to do that : Go to **Edit** ➭ Then **Project Settings** ➭ **Player**, and under **Other Settings** find an option that reads **Api Compatibility Level** and change it from **_".NET 2.0 Subset" to ".NET 2.0"._**
## Run it ! 🏁 🚗
Select **Assets/WRMHL/DemoScenes** and choose the **demo** of your choice !
Don't forget to leave some feedback, contributions and suggestions are always welcome ! 🤝