-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.4 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"author": "Felix Groll",
"dependencies": {
"com.unity.visualscripting": "1.7.0",
"io.github.jango-fx.simpleserial": "0.0.1"
},
"description": "Visual Scripting extension for the SimpleSerial package",
"displayName": "SimpleSerialVS",
"keywords": [
"unity",
"serial",
"arduino"
],
"license": "",
"name": "io.github.jango-fx.simpleserial.visualscripting",
"repository": "",
"unity": "2021.3",
"unityRelease": "15f1",
"version": "0.0.1",
"samples": [
{
"displayName": "Serial Receive",
"description": "Simple script, printing all incoming serial data to the console.\nConfigure the serial port in the `SerialConnection` asset. Add the `SimpleSerialVS` prefab to the scene. And hit Play.",
"path": "Samples~/SimpleSerialVS-ReceiveSerial"
},
{
"displayName": "Serial Send",
"description": "Simple script, sending undulating values to serial.\nConfigure the serial port in the `SerialConnection` asset. Add the `SimpleSerialVS - Send` prefab to the scene. And hit Play.",
"path": "Samples~/SimpleSerialVS-SendSerial"
},
{
"displayName": "Arduino Demo",
"description": "Simple Arduino sketch sending a string every 500ms over the serial interface and at the same time interprets incoming values as integer (between 0 and 255) to drive an LED at pin 13 via PWM.",
"path": "Samples~/SimpleSerial-ArduinoInOut"
}
]
}