├── C# .NET
├── .gitignore
├── Basic Streaming .NET.sln
├── Basic Streaming .NET
│ ├── App.config
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── Basic Streaming .NET.csproj
│ ├── DeviceStreaming.xaml
│ ├── DeviceStreaming.xaml.cs
│ ├── MainWindow.xaml
│ ├── MainWindow.xaml.cs
│ ├── Models
│ │ ├── Mode.cs
│ │ ├── SensorModel.cs
│ │ └── StreamInfoModel.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── ViewModels
│ │ ├── ModesListVM.cs
│ │ ├── SensorListItemVM.cs
│ │ └── StreamInfoVM.cs
│ ├── Views
│ │ ├── LoadingIcon.xaml
│ │ ├── LoadingIcon.xaml.cs
│ │ ├── PairSensor.xaml
│ │ ├── PairSensor.xaml.cs
│ │ ├── ScannedSensors.xaml
│ │ ├── ScannedSensors.xaml.cs
│ │ ├── SensorListItem.xaml
│ │ ├── SensorListItem.xaml.cs
│ │ ├── StreamInfo.xaml
│ │ ├── StreamInfo.xaml.cs
│ │ ├── UserMessage.xaml
│ │ └── UserMessage.xaml.cs
│ └── packages.config
├── DelsysAPI
│ ├── Delsys.Drivers.1.2.2.110-main.nupkg
│ ├── Delsys.Signals.2.0.0.17-main.nupkg
│ └── DelsysAPI.2.8.1.1051-Main.nupkg
├── NuGet.Config
├── README.md
└── SiUSBXp.dll
├── File Reading Examples
├── C# API
│ ├── Delsys.FileManager.dll
│ ├── Delsys.FileReader.dll
│ ├── FileReader.dll
│ ├── FileReading_Example.ipynb
│ ├── Forearm Pronation & Supination_1.shpf
│ ├── Forearm_Pronation_Supination_1.delsys
│ ├── Forearm_Pronation_Supination_1.shpf
│ └── README.md
├── MATLAB API
│ ├── Channel.m
│ ├── Component.m
│ ├── DelsysFile.m
│ ├── FileReader.m
│ ├── FileReader_Example.mlx
│ ├── Forearm_Pronation_Supination_1.delsys
│ ├── Forearm_Pronation_Supination_1.shpf
│ ├── README.md
│ └── dependencies
│ │ ├── Delsys.FileManager.dll
│ │ ├── Delsys.FileManager.runtimeconfig.json
│ │ ├── Delsys.FileReader.dll
│ │ ├── Humanizer.dll
│ │ ├── Microsoft.Data.Sqlite.dll
│ │ ├── Microsoft.DotNet.PlatformAbstractions.dll
│ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll
│ │ ├── Microsoft.EntityFrameworkCore.Design.dll
│ │ ├── Microsoft.EntityFrameworkCore.Relational.dll
│ │ ├── Microsoft.EntityFrameworkCore.Sqlite.dll
│ │ ├── Microsoft.EntityFrameworkCore.dll
│ │ ├── Microsoft.Extensions.Caching.Abstractions.dll
│ │ ├── Microsoft.Extensions.Caching.Memory.dll
│ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll
│ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll
│ │ ├── Microsoft.Extensions.DependencyInjection.dll
│ │ ├── Microsoft.Extensions.DependencyModel.dll
│ │ ├── Microsoft.Extensions.Logging.Abstractions.dll
│ │ ├── Microsoft.Extensions.Logging.dll
│ │ ├── Microsoft.Extensions.Options.dll
│ │ ├── Microsoft.Extensions.Primitives.dll
│ │ ├── SQLitePCLRaw.batteries_v2.dll
│ │ ├── SQLitePCLRaw.core.dll
│ │ ├── SQLitePCLRaw.nativelibrary.dll
│ │ ├── SQLitePCLRaw.provider.dynamic_cdecl.dll
│ │ ├── e_sqlite3.dll
│ │ └── runtimes
│ │ ├── alpine-x64
│ │ └── native
│ │ │ └── libe_sqlite3.so
│ │ ├── linux-arm
│ │ └── native
│ │ │ └── libe_sqlite3.so
│ │ ├── linux-arm64
│ │ └── native
│ │ │ └── libe_sqlite3.so
│ │ ├── linux-armel
│ │ └── native
│ │ │ └── libe_sqlite3.so
│ │ ├── linux-mips64
│ │ └── native
│ │ │ └── libe_sqlite3.so
│ │ ├── linux-musl-x64
│ │ └── native
│ │ │ └── libe_sqlite3.so
│ │ ├── linux-x64
│ │ └── native
│ │ │ └── libe_sqlite3.so
│ │ ├── linux-x86
│ │ └── native
│ │ │ └── libe_sqlite3.so
│ │ ├── osx-x64
│ │ └── native
│ │ │ └── libe_sqlite3.dylib
│ │ ├── win-arm
│ │ └── native
│ │ │ └── e_sqlite3.dll
│ │ ├── win-arm64
│ │ └── native
│ │ │ └── e_sqlite3.dll
│ │ ├── win-x64
│ │ └── native
│ │ │ └── e_sqlite3.dll
│ │ └── win-x86
│ │ └── native
│ │ └── e_sqlite3.dll
└── Python API
│ ├── Channel.py
│ ├── Component.py
│ ├── DelsysFile.py
│ ├── File_Reader.py
│ ├── File_Reader_Example.ipynb
│ ├── Forearm_Pronation_Supination_1.delsys
│ ├── Forearm_Pronation_Supination_1.shpf
│ ├── README.md
│ ├── Setup_Configuration.py
│ ├── dependencies
│ ├── Delsys.FileManager.dll
│ ├── Delsys.FileManager.runtimeconfig.json
│ ├── Delsys.FileReader.dll
│ ├── Humanizer.dll
│ ├── Microsoft.Data.Sqlite.dll
│ ├── Microsoft.DotNet.PlatformAbstractions.dll
│ ├── Microsoft.EntityFrameworkCore.Abstractions.dll
│ ├── Microsoft.EntityFrameworkCore.Design.dll
│ ├── Microsoft.EntityFrameworkCore.Relational.dll
│ ├── Microsoft.EntityFrameworkCore.Sqlite.dll
│ ├── Microsoft.EntityFrameworkCore.dll
│ ├── Microsoft.Extensions.Caching.Abstractions.dll
│ ├── Microsoft.Extensions.Caching.Memory.dll
│ ├── Microsoft.Extensions.Configuration.Abstractions.dll
│ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll
│ ├── Microsoft.Extensions.DependencyInjection.dll
│ ├── Microsoft.Extensions.DependencyModel.dll
│ ├── Microsoft.Extensions.Logging.Abstractions.dll
│ ├── Microsoft.Extensions.Logging.dll
│ ├── Microsoft.Extensions.Options.dll
│ ├── Microsoft.Extensions.Primitives.dll
│ ├── SQLitePCLRaw.batteries_v2.dll
│ ├── SQLitePCLRaw.core.dll
│ ├── SQLitePCLRaw.nativelibrary.dll
│ ├── SQLitePCLRaw.provider.dynamic_cdecl.dll
│ ├── e_sqlite3.dll
│ └── runtimes
│ │ ├── alpine-x64
│ │ └── native
│ │ │ └── libe_sqlite3.so
│ │ ├── linux-arm
│ │ └── native
│ │ │ └── libe_sqlite3.so
│ │ ├── linux-arm64
│ │ └── native
│ │ │ └── libe_sqlite3.so
│ │ ├── linux-armel
│ │ └── native
│ │ │ └── libe_sqlite3.so
│ │ ├── linux-mips64
│ │ └── native
│ │ │ └── libe_sqlite3.so
│ │ ├── linux-musl-x64
│ │ └── native
│ │ │ └── libe_sqlite3.so
│ │ ├── linux-x64
│ │ └── native
│ │ │ └── libe_sqlite3.so
│ │ ├── linux-x86
│ │ └── native
│ │ │ └── libe_sqlite3.so
│ │ ├── osx-x64
│ │ └── native
│ │ │ └── libe_sqlite3.dylib
│ │ ├── win-arm
│ │ └── native
│ │ │ └── e_sqlite3.dll
│ │ ├── win-arm64
│ │ └── native
│ │ │ └── e_sqlite3.dll
│ │ ├── win-x64
│ │ └── native
│ │ │ └── e_sqlite3.dll
│ │ └── win-x86
│ │ └── native
│ │ └── e_sqlite3.dll
│ └── requirements.txt
├── Python
├── .gitignore
├── AeroPy
│ ├── DataManager.py
│ └── TrignoBase.py
├── DataCollector
│ ├── CollectDataController.py
│ ├── CollectDataWindow.py
│ └── CollectionMetricsManagement.py
├── DelsysPythonDemo.py
├── Export
│ └── CsvWriter.py
├── Images
│ ├── centro_trigger_config.png
│ └── delsys.png
├── Plotter
│ └── GenericPlot.py
├── README.md
├── StartMenu
│ └── StartWindow.py
├── UIControls
│ ├── FrameController.py
│ └── LandingScreenController.py
├── data.csv
├── requirements.txt
└── resources
│ ├── BouncyCastle.Crypto.dll
│ ├── CentroUSB_32.dll
│ ├── CentroUSB_64.dll
│ ├── CoreCompat.Portable.Licensing.dll
│ ├── DelsysAPI.dll
│ ├── MathNet.Filtering.dll
│ ├── MathNet.Numerics.dll
│ ├── Microsoft.Extensions.Logging.Abstractions.dll
│ ├── Newtonsoft.Json.dll
│ ├── Plugin.BLE.Abstractions.dll
│ ├── Plugin.BLE.dll
│ ├── RJCP.Core.Environment.dll
│ ├── RJCP.Core.SysCompat.dll
│ ├── RJCP.Diagnostics.Trace.dll
│ ├── RJCP.IO.Buffer.dll
│ ├── RJCP.IO.Device.dll
│ ├── RJCP.SerialPortStream.dll
│ ├── SiUSBXp_32.dll
│ ├── SiUSBXp_64.dll
│ ├── Signals.dll
│ ├── Stateless.dll
│ └── System.IO.Ports.dll
├── README.md
└── Unity
├── .gitignore
├── Assets
├── Picture1.png
├── Picture1.png.meta
├── Plugins.meta
├── Plugins
│ ├── BouncyCastle.Crypto.dll
│ ├── BouncyCastle.Crypto.dll.meta
│ ├── Castle.Core.dll
│ ├── Castle.Core.dll.meta
│ ├── CoreCompat.Portable.Licensing.dll
│ ├── CoreCompat.Portable.Licensing.dll.meta
│ ├── Delsys.TrignoLite_32.dll
│ ├── Delsys.TrignoLite_32.dll.meta
│ ├── Delsys.TrignoLite_64.dll
│ ├── Delsys.TrignoLite_64.dll.meta
│ ├── DelsysAPI.dll
│ ├── DelsysAPI.dll.meta
│ ├── MathNet.Numerics.dll
│ ├── MathNet.Numerics.dll.meta
│ ├── Plugin.BLE.Abstractions.dll
│ ├── Plugin.BLE.Abstractions.dll.meta
│ ├── Plugin.BLE.dll
│ ├── Plugin.BLE.dll.meta
│ ├── SiUSBXp.dll
│ ├── SiUSBXp.dll.meta
│ ├── SiUSBXp_32.dll
│ ├── SiUSBXp_32.dll.meta
│ ├── SiUSBXp_64.dll
│ ├── SiUSBXp_64.dll.meta
│ ├── Signals.dll
│ ├── Signals.dll.meta
│ ├── Stateless.dll
│ ├── Stateless.dll.meta
│ ├── System.CodeDom.dll
│ ├── System.CodeDom.dll.meta
│ ├── System.Collections.Immutable.dll
│ ├── System.Collections.Immutable.dll.meta
│ ├── System.ComponentModel.Annotations.dll
│ ├── System.ComponentModel.Annotations.dll.meta
│ ├── System.IO.Ports.dll
│ ├── System.IO.Ports.dll.meta
│ ├── System.Management.dll
│ ├── System.Management.dll.meta
│ ├── System.Reactive.Core.dll
│ ├── System.Reactive.Core.dll.meta
│ ├── System.Reactive.Interfaces.dll
│ ├── System.Reactive.Interfaces.dll.meta
│ ├── System.Reactive.Linq.dll
│ ├── System.Reactive.Linq.dll.meta
│ ├── System.Reactive.PlatformServices.dll
│ ├── System.Reactive.PlatformServices.dll.meta
│ ├── System.Security.AccessControl.dll
│ ├── System.Security.AccessControl.dll.meta
│ ├── System.Security.Principal.Windows.dll
│ ├── System.Security.Principal.Windows.dll.meta
│ ├── TrignoLite.dll
│ └── TrignoLite.dll.meta
├── Resources.meta
├── Resources
│ ├── BillingMode.json
│ ├── BillingMode.json.meta
│ ├── delsys-logo-web-retina.png
│ └── delsys-logo-web-retina.png.meta
├── Scenes.meta
├── Scenes
│ ├── SampleScene.unity
│ └── SampleScene.unity.meta
├── Status.png
├── Status.png.meta
├── StreamingAssets.meta
├── StreamingAssets
│ ├── SiUSBXp.dll
│ └── SiUSBXp.dll.meta
├── UnityExample.cs
├── UnityExample.cs.meta
├── XR.meta
├── XR
│ ├── Loaders.meta
│ └── Settings.meta
├── delsys-api-logo2-01.png
└── delsys-api-logo2-01.png.meta
├── BuildVersions
├── DelsysAPI-UnityExample.exe
├── DelsysAPI-UnityExample_Data
│ ├── Managed
│ │ ├── Assembly-CSharp.dll
│ │ ├── DelsysAPI.dll
│ │ ├── MathNet.Numerics.dll
│ │ ├── Mono.Posix.dll
│ │ ├── Mono.Security.dll
│ │ ├── Plugin.BLE.Abstractions.dll
│ │ ├── Plugin.BLE.dll
│ │ ├── Portable.Licensing.dll
│ │ ├── Stateless.dll
│ │ ├── System.Collections.Concurrent.dll
│ │ ├── System.Collections.dll
│ │ ├── System.ComponentModel.Composition.dll
│ │ ├── System.Configuration.dll
│ │ ├── System.Core.dll
│ │ ├── System.Diagnostics.Debug.dll
│ │ ├── System.IO.dll
│ │ ├── System.Linq.dll
│ │ ├── System.Numerics.dll
│ │ ├── System.Reflection.dll
│ │ ├── System.Resources.ResourceManager.dll
│ │ ├── System.Runtime.Extensions.dll
│ │ ├── System.Runtime.InteropServices.dll
│ │ ├── System.Runtime.Serialization.dll
│ │ ├── System.Runtime.dll
│ │ ├── System.Security.dll
│ │ ├── System.ServiceModel.Internals.dll
│ │ ├── System.Text.Encoding.dll
│ │ ├── System.Threading.Tasks.Parallel.dll
│ │ ├── System.Threading.Tasks.dll
│ │ ├── System.Threading.dll
│ │ ├── System.Xml.Linq.dll
│ │ ├── System.Xml.XDocument.dll
│ │ ├── System.Xml.dll
│ │ ├── System.dll
│ │ ├── Unity.Analytics.DataPrivacy.dll
│ │ ├── Unity.TextMeshPro.dll
│ │ ├── Unity.Timeline.dll
│ │ ├── UnityEngine.AIModule.dll
│ │ ├── UnityEngine.ARModule.dll
│ │ ├── UnityEngine.AccessibilityModule.dll
│ │ ├── UnityEngine.AnimationModule.dll
│ │ ├── UnityEngine.AssetBundleModule.dll
│ │ ├── UnityEngine.AudioModule.dll
│ │ ├── UnityEngine.ClothModule.dll
│ │ ├── UnityEngine.ClusterInputModule.dll
│ │ ├── UnityEngine.ClusterRendererModule.dll
│ │ ├── UnityEngine.CoreModule.dll
│ │ ├── UnityEngine.CrashReportingModule.dll
│ │ ├── UnityEngine.DirectorModule.dll
│ │ ├── UnityEngine.FileSystemHttpModule.dll
│ │ ├── UnityEngine.GameCenterModule.dll
│ │ ├── UnityEngine.GridModule.dll
│ │ ├── UnityEngine.HotReloadModule.dll
│ │ ├── UnityEngine.IMGUIModule.dll
│ │ ├── UnityEngine.ImageConversionModule.dll
│ │ ├── UnityEngine.InputModule.dll
│ │ ├── UnityEngine.JSONSerializeModule.dll
│ │ ├── UnityEngine.LocalizationModule.dll
│ │ ├── UnityEngine.ParticleSystemModule.dll
│ │ ├── UnityEngine.PerformanceReportingModule.dll
│ │ ├── UnityEngine.Physics2DModule.dll
│ │ ├── UnityEngine.PhysicsModule.dll
│ │ ├── UnityEngine.ProfilerModule.dll
│ │ ├── UnityEngine.Purchasing.dll
│ │ ├── UnityEngine.ScreenCaptureModule.dll
│ │ ├── UnityEngine.SharedInternalsModule.dll
│ │ ├── UnityEngine.SpatialTracking.dll
│ │ ├── UnityEngine.SpriteMaskModule.dll
│ │ ├── UnityEngine.SpriteShapeModule.dll
│ │ ├── UnityEngine.StreamingModule.dll
│ │ ├── UnityEngine.StyleSheetsModule.dll
│ │ ├── UnityEngine.SubstanceModule.dll
│ │ ├── UnityEngine.TLSModule.dll
│ │ ├── UnityEngine.TerrainModule.dll
│ │ ├── UnityEngine.TerrainPhysicsModule.dll
│ │ ├── UnityEngine.TextCoreModule.dll
│ │ ├── UnityEngine.TextRenderingModule.dll
│ │ ├── UnityEngine.TilemapModule.dll
│ │ ├── UnityEngine.UI.dll
│ │ ├── UnityEngine.UIElementsModule.dll
│ │ ├── UnityEngine.UIModule.dll
│ │ ├── UnityEngine.UNETModule.dll
│ │ ├── UnityEngine.UmbraModule.dll
│ │ ├── UnityEngine.UnityAnalyticsModule.dll
│ │ ├── UnityEngine.UnityConnectModule.dll
│ │ ├── UnityEngine.UnityTestProtocolModule.dll
│ │ ├── UnityEngine.UnityWebRequestAssetBundleModule.dll
│ │ ├── UnityEngine.UnityWebRequestAudioModule.dll
│ │ ├── UnityEngine.UnityWebRequestModule.dll
│ │ ├── UnityEngine.UnityWebRequestTextureModule.dll
│ │ ├── UnityEngine.UnityWebRequestWWWModule.dll
│ │ ├── UnityEngine.VFXModule.dll
│ │ ├── UnityEngine.VRModule.dll
│ │ ├── UnityEngine.VehiclesModule.dll
│ │ ├── UnityEngine.VideoModule.dll
│ │ ├── UnityEngine.WindModule.dll
│ │ ├── UnityEngine.XR.LegacyInputHelpers.dll
│ │ ├── UnityEngine.XRModule.dll
│ │ ├── UnityEngine.dll
│ │ ├── com.unity.multiplayer-hlapi.Runtime.dll
│ │ └── mscorlib.dll
│ ├── Plugins
│ │ └── SiUSBXp.dll
│ ├── Resources
│ │ ├── unity default resources
│ │ └── unity_builtin_extra
│ ├── StreamingAssets
│ │ └── SiUSBXp.dll
│ ├── app.info
│ ├── boot.config
│ ├── globalgamemanagers
│ ├── globalgamemanagers.assets
│ ├── level0
│ ├── level0.resS
│ ├── resources.assets
│ ├── sharedassets0.assets
│ └── sharedassets0.assets.resS
├── MonoBleedingEdge
│ ├── EmbedRuntime
│ │ ├── MonoPosixHelper.dll
│ │ └── mono-2.0-bdwgc.dll
│ └── etc
│ │ └── mono
│ │ ├── 2.0
│ │ ├── Browsers
│ │ │ └── Compat.browser
│ │ ├── DefaultWsdlHelpGenerator.aspx
│ │ ├── machine.config
│ │ ├── settings.map
│ │ └── web.config
│ │ ├── 4.0
│ │ ├── Browsers
│ │ │ └── Compat.browser
│ │ ├── DefaultWsdlHelpGenerator.aspx
│ │ ├── machine.config
│ │ ├── settings.map
│ │ └── web.config
│ │ ├── 4.5
│ │ ├── Browsers
│ │ │ └── Compat.browser
│ │ ├── DefaultWsdlHelpGenerator.aspx
│ │ ├── machine.config
│ │ ├── settings.map
│ │ └── web.config
│ │ ├── browscap.ini
│ │ ├── config
│ │ └── mconfig
│ │ └── config.xml
├── UnityCrashHandler32.exe
└── UnityPlayer.dll
├── Packages
├── manifest.json
└── packages-lock.json
├── ProjectSettings
├── AudioManager.asset
├── ClusterInputManager.asset
├── DynamicsManager.asset
├── EditorBuildSettings.asset
├── EditorSettings.asset
├── GraphicsSettings.asset
├── InputManager.asset
├── MemorySettings.asset
├── NavMeshAreas.asset
├── NetworkManager.asset
├── PackageManagerSettings.asset
├── Physics2DSettings.asset
├── PresetManager.asset
├── ProjectSettings.asset
├── ProjectVersion.txt
├── QualitySettings.asset
├── SceneTemplateSettings.json
├── TagManager.asset
├── TimeManager.asset
├── UnityConnectSettings.asset
├── VFXManager.asset
├── VersionControlSettings.asset
├── XRSettings.asset
└── boot.config
├── README.md
└── SiUSBXp.dll
/C# .NET/Basic Streaming .NET.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio Version 17
4 | VisualStudioVersion = 17.0.31903.59
5 | MinimumVisualStudioVersion = 10.0.40219.1
6 | Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Basic Streaming .NET", "Basic Streaming .NET\Basic Streaming .NET.csproj", "{29328E6B-A49C-469A-B4EC-A047B01B9004}"
7 | EndProject
8 | Global
9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
10 | Debug|Any CPU = Debug|Any CPU
11 | Debug|x64 = Debug|x64
12 | Release|Any CPU = Release|Any CPU
13 | Release|x64 = Release|x64
14 | EndGlobalSection
15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
16 | {29328E6B-A49C-469A-B4EC-A047B01B9004}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
17 | {29328E6B-A49C-469A-B4EC-A047B01B9004}.Debug|Any CPU.Build.0 = Debug|Any CPU
18 | {29328E6B-A49C-469A-B4EC-A047B01B9004}.Debug|x64.ActiveCfg = Debug|Any CPU
19 | {29328E6B-A49C-469A-B4EC-A047B01B9004}.Debug|x64.Build.0 = Debug|Any CPU
20 | {29328E6B-A49C-469A-B4EC-A047B01B9004}.Release|Any CPU.ActiveCfg = Release|Any CPU
21 | {29328E6B-A49C-469A-B4EC-A047B01B9004}.Release|Any CPU.Build.0 = Release|Any CPU
22 | {29328E6B-A49C-469A-B4EC-A047B01B9004}.Release|x64.ActiveCfg = Release|Any CPU
23 | {29328E6B-A49C-469A-B4EC-A047B01B9004}.Release|x64.Build.0 = Release|Any CPU
24 | EndGlobalSection
25 | GlobalSection(SolutionProperties) = preSolution
26 | HideSolutionNode = FALSE
27 | EndGlobalSection
28 | GlobalSection(ExtensibilityGlobals) = postSolution
29 | SolutionGuid = {54BD3A36-1DCE-4432-A56B-BA4D53F18DD4}
30 | EndGlobalSection
31 | EndGlobal
32 |
--------------------------------------------------------------------------------
/C# .NET/Basic Streaming .NET/App.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/C# .NET/Basic Streaming .NET/App.xaml:
--------------------------------------------------------------------------------
1 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/C# .NET/Basic Streaming .NET/App.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Configuration;
4 | using System.Data;
5 | using System.Linq;
6 | using System.Threading.Tasks;
7 | using System.Windows;
8 |
9 | namespace Basic_Streaming.NET
10 | {
11 | ///
12 | /// Interaction logic for App.xaml
13 | ///
14 | public partial class App : Application
15 | {
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/C# .NET/Basic Streaming .NET/Basic Streaming .NET.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | WinExe
5 | net6.0-windows10.0.17763.0
6 | enable
7 | true
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 | false
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/C# .NET/Basic Streaming .NET/MainWindow.xaml.cs:
--------------------------------------------------------------------------------
1 | using DelsysAPI.Pipelines;
2 | using System.Windows;
3 |
4 |
5 | namespace Basic_Streaming.NET
6 | {
7 | ///
8 | /// Interaction logic for MainWindow.xaml
9 | ///
10 | public partial class MainWindow : Window
11 | {
12 | private DeviceStreaming _deviceSteamingUC;
13 |
14 | public MainWindow()
15 | {
16 | InitializeComponent();
17 | }
18 |
19 | public void clk_DeviceStreaming(object sender, RoutedEventArgs e)
20 | {
21 | MainPanel.Children.Clear();
22 | _deviceSteamingUC = new DeviceStreaming(this);
23 | MainPanel.Children.Add(_deviceSteamingUC);
24 | }
25 |
26 | public void clk_Exit(object sender, RoutedEventArgs e)
27 | {
28 | System.Windows.Application.Current.Shutdown();
29 | }
30 |
31 | public void clk_BackButton(object sender, RoutedEventArgs e)
32 | {
33 | MainPanel.Children.Clear();
34 |
35 | MainPanel.Children.Add(MainWindowBorder);
36 |
37 | System.Diagnostics.Debug.WriteLine("Simulating Stream # of pipeline Ids before removal: " + PipelineController.Instance.PipelineIds.Count);
38 | if (PipelineController.Instance.PipelineIds.Count > 0)
39 | {
40 | PipelineController.Instance.RemovePipeline(0);
41 | }
42 | System.Diagnostics.Debug.WriteLine("Simulating Stream # of pipeline Ids after removal: " + PipelineController.Instance.PipelineIds.Count);
43 | }
44 | }
45 | }
46 |
--------------------------------------------------------------------------------
/C# .NET/Basic Streaming .NET/Models/Mode.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 |
7 | namespace Basic_Streaming.NET.Models
8 | {
9 | public class Mode
10 | {
11 |
12 | public string ModeName { get; set; }
13 |
14 | public int ModeIndex { get; set; }
15 |
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/C# .NET/Basic Streaming .NET/Models/SensorModel.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.ComponentModel;
4 | using System.Linq;
5 | using System.Text;
6 | using System.Threading.Tasks;
7 |
8 | namespace Basic_Streaming.NET.Models
9 | {
10 | public class SensorModel : INotifyPropertyChanged
11 | {
12 |
13 | private string _sensorName;
14 |
15 | public string SensorName
16 | {
17 | get { return _sensorName; }
18 | set
19 | {
20 | _sensorName = value;
21 | RaisePropertyChanged("SensorName");
22 | }
23 | }
24 |
25 | private int _sensorId;
26 |
27 | public int SensorId
28 | {
29 | get { return _sensorId; }
30 | set
31 | {
32 | _sensorId = value;
33 | RaisePropertyChanged("SensorId");
34 | }
35 | }
36 |
37 | private int _pairNum;
38 |
39 | public int PairNum
40 | {
41 | get { return _pairNum; }
42 | set
43 | {
44 | _pairNum = value;
45 | RaisePropertyChanged("PairNum");
46 | }
47 | }
48 |
49 | public event PropertyChangedEventHandler PropertyChanged;
50 |
51 | protected void RaisePropertyChanged(string propertyName)
52 | {
53 | PropertyChangedEventHandler handler = PropertyChanged;
54 | if (handler != null)
55 | {
56 | handler(this, new PropertyChangedEventArgs(propertyName));
57 | }
58 | }
59 |
60 | public override bool Equals(object obj)
61 | {
62 | return base.Equals(obj);
63 | }
64 |
65 | public override int GetHashCode()
66 | {
67 | return base.GetHashCode();
68 | }
69 |
70 | }
71 | }
72 |
--------------------------------------------------------------------------------
/C# .NET/Basic Streaming .NET/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using System.Resources;
3 | using System.Runtime.CompilerServices;
4 | using System.Runtime.InteropServices;
5 | using System.Windows;
6 |
7 | // General Information about an assembly is controlled through the following
8 | // set of attributes. Change these attribute values to modify the information
9 | // associated with an assembly.
10 | [assembly: AssemblyTitle("Basic Streaming .NET")]
11 | [assembly: AssemblyDescription("")]
12 | [assembly: AssemblyConfiguration("")]
13 | [assembly: AssemblyCompany("")]
14 | [assembly: AssemblyProduct("Basic Streaming .NET")]
15 | [assembly: AssemblyCopyright("Copyright © 2019")]
16 | [assembly: AssemblyTrademark("")]
17 | [assembly: AssemblyCulture("")]
18 |
19 | // Setting ComVisible to false makes the types in this assembly not visible
20 | // to COM components. If you need to access a type in this assembly from
21 | // COM, set the ComVisible attribute to true on that type.
22 | [assembly: ComVisible(false)]
23 |
24 | //In order to begin building localizable applications, set
25 | //CultureYouAreCodingWith in your .csproj file
26 | //inside a . For example, if you are using US english
27 | //in your source files, set the to en-US. Then uncomment
28 | //the NeutralResourceLanguage attribute below. Update the "en-US" in
29 | //the line below to match the UICulture setting in the project file.
30 |
31 | //[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
32 |
33 |
34 | [assembly: ThemeInfo(
35 | ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
36 | //(used if a resource is not found in the page,
37 | // or application resource dictionaries)
38 | ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
39 | //(used if a resource is not found in the page,
40 | // app, or any theme specific resource dictionaries)
41 | )]
42 |
43 |
44 | // Version information for an assembly consists of the following four values:
45 | //
46 | // Major Version
47 | // Minor Version
48 | // Build Number
49 | // Revision
50 | //
51 | // You can specify all the values or you can default the Build and Revision Numbers
52 | // by using the '*' as shown below:
53 | // [assembly: AssemblyVersion("1.0.*")]
54 | [assembly: AssemblyVersion("1.0.0.0")]
55 | [assembly: AssemblyFileVersion("1.0.0.0")]
56 |
--------------------------------------------------------------------------------
/C# .NET/Basic Streaming .NET/Properties/Settings.Designer.cs:
--------------------------------------------------------------------------------
1 | //------------------------------------------------------------------------------
2 | //
3 | // This code was generated by a tool.
4 | // Runtime Version:4.0.30319.42000
5 | //
6 | // Changes to this file may cause incorrect behavior and will be lost if
7 | // the code is regenerated.
8 | //
9 | //------------------------------------------------------------------------------
10 |
11 | namespace Basic_Streaming.NET.Properties {
12 |
13 |
14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.0.3.0")]
16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
17 |
18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
19 |
20 | public static Settings Default {
21 | get {
22 | return defaultInstance;
23 | }
24 | }
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/C# .NET/Basic Streaming .NET/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/C# .NET/Basic Streaming .NET/ViewModels/ModesListVM.cs:
--------------------------------------------------------------------------------
1 | using Basic_Streaming.NET.Models;
2 | using System;
3 | using System.Collections.Generic;
4 | using System.Linq;
5 | using System.Text;
6 | using System.Threading.Tasks;
7 |
8 | namespace Basic_Streaming.NET.ViewModels
9 | {
10 |
11 |
12 |
13 | public class ModesListVM
14 | {
15 |
16 | public List Modes { get; set; }
17 |
18 | public ModesListVM()
19 | {
20 |
21 | }
22 |
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/C# .NET/Basic Streaming .NET/ViewModels/SensorListItemVM.cs:
--------------------------------------------------------------------------------
1 | using Basic_Streaming.NET.Models;
2 | using System;
3 | using System.Collections.Generic;
4 | using System.Linq;
5 | using System.Text;
6 | using System.Threading.Tasks;
7 |
8 | namespace Basic_Streaming.NET.ViewModels
9 | {
10 | public class SensorListItemVM
11 | {
12 | public SensorModel Sensor { get; set; }
13 |
14 | public SensorListItemVM()
15 | {
16 |
17 | }
18 |
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/C# .NET/Basic Streaming .NET/ViewModels/StreamInfoVM.cs:
--------------------------------------------------------------------------------
1 | using Basic_Streaming.NET.Models;
2 | using System;
3 | using System.Collections.Generic;
4 | using System.Linq;
5 | using System.Text;
6 | using System.Threading.Tasks;
7 |
8 | namespace Basic_Streaming.NET.ViewModels
9 | {
10 | public class StreamInfoVM
11 | {
12 |
13 | public StreamInfoModel StreamInfo { get; set; }
14 |
15 | public StreamInfoVM()
16 | {
17 |
18 | }
19 |
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/C# .NET/Basic Streaming .NET/Views/LoadingIcon.xaml:
--------------------------------------------------------------------------------
1 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/C# .NET/Basic Streaming .NET/Views/LoadingIcon.xaml.cs:
--------------------------------------------------------------------------------
1 | using System.Windows;
2 | using System.Windows.Controls;
3 |
4 | namespace Basic_Streaming.NET.Views
5 | {
6 | ///
7 | /// Interaction logic for LoadingIcon.xaml
8 | ///
9 | public partial class LoadingIcon : UserControl
10 | {
11 |
12 | public LoadingIcon(string msg, int[]? IconMargin = null, int[]? msgMargin = null)
13 | {
14 | InitializeComponent();
15 | LoadMsg.Text = msg;
16 | pairSensorsTextAndIconMarginSettings(msgMargin: msgMargin, IconMargin: IconMargin);
17 | }
18 |
19 | ///
20 | /// Displays message without icon, used when no components are found in scan/pair request
21 | ///
22 | ///
23 | public void JustShowMessage(string msg, int[]? msgMargin = null)
24 | {
25 | this.Dispatcher.Invoke(() =>
26 | {
27 | Icon.Visibility = Visibility.Collapsed;
28 | LoadMsg.Text = msg;
29 | });
30 | pairSensorsTextAndIconMarginSettings(msgONLYMargin: msgMargin);
31 | }
32 |
33 | private void pairSensorsTextAndIconMarginSettings(int[]? msgMargin = null, int[]? IconMargin = null, int[]? msgONLYMargin = null)
34 | {
35 | if (IconMargin != null)
36 | {
37 | Icon.Margin = new Thickness(IconMargin[0], IconMargin[1], IconMargin[2], IconMargin[3]);
38 | }
39 |
40 | if (msgMargin != null)
41 | {
42 | Grid.SetRow(LoadMsg, 0);
43 | LoadMsg.VerticalAlignment = VerticalAlignment.Top;
44 | LoadMsg.Margin = new Thickness(msgMargin[0], msgMargin[1], msgMargin[2], msgMargin[3]);
45 | }
46 | else if (msgONLYMargin == null && msgMargin == null)
47 | {
48 | Grid.SetRow(LoadMsg, 1);
49 | }
50 |
51 | if (msgONLYMargin != null)
52 | {
53 | LoadMsg.Margin = new Thickness(msgONLYMargin[0], msgONLYMargin[1], msgONLYMargin[2], msgONLYMargin[3]);
54 | }
55 | }
56 | }
57 | }
58 |
--------------------------------------------------------------------------------
/C# .NET/Basic Streaming .NET/Views/ScannedSensors.xaml:
--------------------------------------------------------------------------------
1 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
--------------------------------------------------------------------------------
/C# .NET/Basic Streaming .NET/Views/SensorListItem.xaml.cs:
--------------------------------------------------------------------------------
1 | using Basic_Streaming.NET.ViewModels;
2 | using Basic_Streaming.NET.Models;
3 | using DelsysAPI.Components.TrignoRf;
4 | using System;
5 | using System.Collections.Generic;
6 | using System.Linq;
7 | using System.Text;
8 | using System.Threading.Tasks;
9 | using System.Windows;
10 | using System.Windows.Controls;
11 | using System.Windows.Data;
12 | using System.Windows.Documents;
13 | using System.Windows.Input;
14 | using System.Windows.Media;
15 | using System.Windows.Media.Imaging;
16 | using System.Windows.Navigation;
17 | using System.Windows.Shapes;
18 |
19 | namespace Basic_Streaming.NET.Views
20 | {
21 | ///
22 | /// Interaction logic for SensorListItem.xaml
23 | ///
24 | public partial class SensorListItem : UserControl
25 | {
26 |
27 | public SensorModel Model;
28 |
29 | public SensorListItem(SensorTrignoRf sensor)
30 | {
31 | InitializeComponent();
32 | SensorListItemVM vm = new SensorListItemVM();
33 |
34 | Model = new SensorModel
35 | {
36 | SensorName = sensor.FriendlyName,
37 | PairNum = sensor.PairNumber,
38 | SensorId = sensor.Properties.Sid
39 | };
40 |
41 | vm.Sensor = Model;
42 | ListItem.DataContext = vm;
43 |
44 | ModesListVM modeVM = new ModesListVM();
45 |
46 | List modeList = new List();
47 | int modeIndex = 0;
48 | foreach (var mode in sensor.Configuration.SampleModes)
49 | {
50 | Mode modeModel = new Mode
51 | {
52 | ModeName = mode,
53 | ModeIndex = modeIndex
54 | };
55 |
56 | modeList.Add(modeModel);
57 | modeIndex++;
58 | }
59 |
60 | modeVM.Modes = modeList;
61 |
62 | ModeList.DataContext = modeVM;
63 | }
64 | }
65 | }
66 |
--------------------------------------------------------------------------------
/C# .NET/Basic Streaming .NET/Views/StreamInfo.xaml.cs:
--------------------------------------------------------------------------------
1 | using Basic_Streaming.NET.Models;
2 | using Basic_Streaming.NET.ViewModels;
3 | using System;
4 | using System.Collections.Generic;
5 | using System.Linq;
6 | using System.Text;
7 | using System.Threading.Tasks;
8 | using System.Windows;
9 | using System.Windows.Controls;
10 | using System.Windows.Data;
11 | using System.Windows.Documents;
12 | using System.Windows.Input;
13 | using System.Windows.Media;
14 | using System.Windows.Media.Imaging;
15 | using System.Windows.Navigation;
16 | using System.Windows.Shapes;
17 |
18 | namespace Basic_Streaming.NET.Views
19 | {
20 | ///
21 | /// Interaction logic for StreamInfo.xaml
22 | ///
23 | public partial class StreamInfo : UserControl
24 | {
25 |
26 | public StreamInfoModel Model;
27 |
28 | public StreamInfo()
29 | {
30 | InitializeComponent();
31 |
32 | // Build StreamInfo data model
33 |
34 | StreamInfoVM vm = new StreamInfoVM();
35 |
36 | Model = new StreamInfoModel
37 | {
38 | DeviceName = "N/A",
39 | SensorsConnected = 0,
40 | TotalChannels = 0,
41 | PipelineStatus = "N/A",
42 | StreamTime = "0.0 seconds",
43 | PacketsLost = 0,
44 | FramesCollected = 0
45 | };
46 |
47 | vm.StreamInfo = Model;
48 |
49 | StreamInfoGrid.DataContext = vm;
50 | }
51 | }
52 | }
53 |
--------------------------------------------------------------------------------
/C# .NET/Basic Streaming .NET/Views/UserMessage.xaml:
--------------------------------------------------------------------------------
1 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/C# .NET/Basic Streaming .NET/Views/UserMessage.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 | using System.Windows;
7 | using System.Windows.Controls;
8 | using System.Windows.Data;
9 | using System.Windows.Documents;
10 | using System.Windows.Input;
11 | using System.Windows.Media;
12 | using System.Windows.Media.Imaging;
13 | using System.Windows.Navigation;
14 | using System.Windows.Shapes;
15 |
16 | namespace Basic_Streaming.NET.Views
17 | {
18 | ///
19 | /// Interaction logic for UserMessage.xaml
20 | ///
21 | public partial class UserMessage : UserControl
22 | {
23 | public UserMessage(string msg)
24 | {
25 | InitializeComponent();
26 | Message.Text = msg;
27 | }
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/C# .NET/Basic Streaming .NET/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/C# .NET/DelsysAPI/Delsys.Drivers.1.2.2.110-main.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/C# .NET/DelsysAPI/Delsys.Drivers.1.2.2.110-main.nupkg
--------------------------------------------------------------------------------
/C# .NET/DelsysAPI/Delsys.Signals.2.0.0.17-main.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/C# .NET/DelsysAPI/Delsys.Signals.2.0.0.17-main.nupkg
--------------------------------------------------------------------------------
/C# .NET/DelsysAPI/DelsysAPI.2.8.1.1051-Main.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/C# .NET/DelsysAPI/DelsysAPI.2.8.1.1051-Main.nupkg
--------------------------------------------------------------------------------
/C# .NET/NuGet.Config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/C# .NET/README.md:
--------------------------------------------------------------------------------
1 | # Delsys API - Basic Streaming (C#) #
2 |
3 | ## Overview ##
4 |
5 | An application showcasing core Data streaming functionalities of the Delsys API, these features include:
6 | * Pair/Configure Trigno Sensors
7 | * Device Streaming
8 | * Export Data to CSV
9 |
10 | The purpose of this repository is to familiarize yourself with how the Delsys API is used to stream Trigno data in real time through code examples.
11 |
12 | **Hardware Requirements**:
13 |
14 | Trigno Basestation/Lite
15 |
16 | https://delsys.com/systems/
17 |
18 | **Software Requirements**:
19 |
20 | Microsoft Visual Studio:
21 | https://visualstudio.microsoft.com/
22 |
23 | Delsys API:
24 | https://delsys.com/api/
25 | *Users must have an active key/license to run the API & this application.
26 |
27 | ## Getting Started ##
28 |
29 | 1) Enter your key/license strings into DeviceStreaming.xaml.cs
30 | 2) Build & Run the solution
31 | 3) Choose Device Streaming then click Load Trigno Device (See console output to see initalizing steps)
32 | 4) (Optional) If it is your first time with the system, click Pair Additional Sensors then proceed with pairing the sensors. Click Finish and Scan to complete pairing process.
33 | Note: Once sensors have been paired to the system you will only need to run a scan to find them, even after the program has been closed.
34 | 5) Once scan is complete, all of your sensors will be listed in the Paired Sensors window. Use checkbox to select sensors for streaming (unselected sensors will not output data).
35 | 6) (Optional) Change sensor mode by using the selection dropdown.
36 | 7) Click Arm Pipeline once sensors have been selected and modes are set.
37 | 8) Start Stream to begin data collection
38 | 9) Once Stopped, you can either stream again, export the data to CSV, or reset the pipeline.
39 | Note: The pipeline must be reset if you want to pair/scan/select sensors again. If you are using the same sensor configuration, you may start/stop the data streaming continuously without resetting.
40 |
41 |
42 |
43 |
--------------------------------------------------------------------------------
/C# .NET/SiUSBXp.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/C# .NET/SiUSBXp.dll
--------------------------------------------------------------------------------
/File Reading Examples/C# API/Delsys.FileManager.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/C# API/Delsys.FileManager.dll
--------------------------------------------------------------------------------
/File Reading Examples/C# API/Delsys.FileReader.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/C# API/Delsys.FileReader.dll
--------------------------------------------------------------------------------
/File Reading Examples/C# API/FileReader.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/C# API/FileReader.dll
--------------------------------------------------------------------------------
/File Reading Examples/C# API/Forearm Pronation & Supination_1.shpf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/C# API/Forearm Pronation & Supination_1.shpf
--------------------------------------------------------------------------------
/File Reading Examples/C# API/Forearm_Pronation_Supination_1.delsys:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/C# API/Forearm_Pronation_Supination_1.delsys
--------------------------------------------------------------------------------
/File Reading Examples/C# API/Forearm_Pronation_Supination_1.shpf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/C# API/Forearm_Pronation_Supination_1.shpf
--------------------------------------------------------------------------------
/File Reading Examples/C# API/README.md:
--------------------------------------------------------------------------------
1 | # Delsys FileReader API - C# .NET Example
2 |
3 | ## Getting Started
4 |
5 | Download this .NET example repository
6 |
7 | Install Python [v3.8.10](https://www.python.org/downloads/release/python-3810/)
8 |
9 | Install Jupyter Notebook - Open windows command prompt & run:
10 |
11 | `pip install notebook`
12 |
13 | Install [.NET Core 6](https://dotnet.microsoft.com/en-us/download/dotnet/6.0)
14 |
15 | Install dotnet interactive - Open windows command prompt & run:
16 |
17 | `dotnet tool install --global Microsoft.dotnet-interactive --version 1.0.260601`
18 |
19 | Add dontnet interactive to jupyter notebook by running:
20 |
21 | `dotnet interactive jupyter install`
22 |
23 | *If a file not found exception occurs on the FileReader.dll file, it may have been blocked by Windows during the unzip process. Go to file explorer, navigate to the python example directory, right click on FileReader.dll and choose properties, select Unblock and continue.
24 |
25 | ## Run in Jupyter Notebook
26 |
27 | Open windows command prompt and navigate to local repository directory. Example:
28 |
29 | `cd ..\Example-Applications\File Reading Examples\C# API`
30 |
31 | run: `jupyter notebook`
32 |
33 | Jupyter notebook should open in your web browser. Open File_Reader_Example.ipynb file
34 |
35 | Make sure ".NET (C#)" kernel is activated in the top right corner
36 |
37 | Run individual code blocks or run the entire notebook. The code executed correctly if no errors occur, and plots are displayed in separate browser windows
38 |
39 | ## Run in Visual Studio Code
40 |
41 | Download [VS Code](https://code.visualstudio.com/download)
42 |
43 | Open VS Code and navigate to the FileReader_C#API directory
44 |
45 | You may need to install the [Jupyter](https://marketplace.visualstudio.com/items?itemName=ms-toolsai.jupyter) and [.NET Interactive Notebook](https://marketplace.visualstudio.com/items?itemName=ms-dotnettools.dotnet-interactive-vscode) VS Code Extensions
46 |
47 | Open File_Reader_Example.ipynb file and configure to the .NET Interactive kernel
48 |
49 | Run individual code blocks or run the entire notebook. The code executed correctly if no errors occur, and plots are displayed in separate browser windows
50 |
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/DelsysFile.m:
--------------------------------------------------------------------------------
1 | classdef DelsysFile < handle
2 | %Delsys File Wrapper for FileReaderAPI%
3 |
4 | properties (Access = private)
5 | file;
6 | end
7 |
8 | methods
9 | function obj = DelsysFile(delsysFile)
10 | obj.file = delsysFile;
11 | end
12 |
13 | function component = Component(obj, selectedComponent)
14 | %Component/Sensor Object - Pass component index and return the component object%
15 |
16 | tempComponent = obj.file.Trial.Components.Item(ShiftIndexing(obj, selectedComponent));
17 | component = Component(tempComponent, obj.file.Trial.DataStream);
18 | end
19 |
20 | function componentCount = ComponentCount(obj)
21 | %Returns the amount of sensor components in the file%
22 |
23 | componentCount = double(obj.file.Trial.Components.Count);
24 | end
25 |
26 | function data = GetAllData(obj)
27 | %Return all of the data from all sensor/component channels%
28 |
29 | componentCount = obj.ComponentCount();
30 | data = {};
31 | for i = 1:componentCount
32 | component = Component(i);
33 | componentData = component.GetAllData();
34 | for j = 1:length(componentData)
35 | data{i} = componentData{j};
36 | end
37 | end
38 | end
39 |
40 | function trialname = Name(obj)
41 | %Return trial name%
42 |
43 | trialname = string(obj.file.Trial.Name());
44 | end
45 |
46 | function timeseries = GetChannelTimeSeries(obj, guid)
47 | %Get time series for a given channel%
48 | timeseries = double(obj.file.Trial.GetChannelXyData(guid).xData);
49 | end
50 |
51 | function xychanneldata = GetChannelXyData(obj, guid)
52 | %Get xy data for a given channel%
53 | xychanneldata = obj.file.Trial.GetChannelXyData(guid);
54 | end
55 |
56 | end
57 |
58 | methods(Access = private)
59 |
60 | % Shifts indexes left by 1 to adjust for the C# language that
61 | % starts indexing at 0 instead of 1 like matlab
62 | function shiftedIndex = ShiftIndexing(obj, index)
63 | shiftedIndex = index - 1;
64 | end
65 | end
66 | end
67 |
68 |
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/FileReader.m:
--------------------------------------------------------------------------------
1 | classdef FileReader < handle
2 | %File Reader Interface to FileManagerAPI%
3 |
4 | properties (Access = private)
5 | pathToDll;
6 | reader;
7 | file;
8 | trials;
9 |
10 | end
11 |
12 | methods
13 | function obj = FileReader(pathToDll)
14 | %Pass path dll dependencies.%
15 | dotnetenv("core");
16 | obj.pathToDll = pathToDll;
17 | NET.addAssembly(pathToDll + "Delsys.FileReader.dll");
18 | NET.addAssembly(pathToDll + "Delsys.FileManager.dll");
19 | end
20 |
21 | function Read(obj,filePath)
22 | %Pass path to .shpf file - FileReaderAPI will parse the file%
23 | obj.reader = Delsys.FileManager.Reader.DelsysFileReader(filePath);
24 | end
25 |
26 | function file = ParsedFile(obj)
27 | %Once the file is paresd return the DelsysFile object%
28 | obj.trials = obj.reader.OpenFileArray();
29 | file = DelsysFile(obj.trials(1));
30 | end
31 |
32 | function count = TrialCount(obj)
33 | %Number of trials in the file%
34 | count = obj.trials.Length;
35 | end
36 |
37 | function file = Trial(obj, selectedTrial)
38 | %Get Trial at an index%
39 | file = DelsysFile(obj.trials(selectedTrial));
40 | end
41 |
42 | function fileType = FileType(obj)
43 | %Returns the file type or extension%
44 |
45 | fileType = string(obj.reader.FileType);
46 | end
47 |
48 | function Close(obj)
49 | %Closes the file type or extension%
50 |
51 | obj.reader.Close();
52 | end
53 |
54 | end
55 |
56 | end
57 |
58 |
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/FileReader_Example.mlx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/MATLAB API/FileReader_Example.mlx
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/Forearm_Pronation_Supination_1.delsys:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/MATLAB API/Forearm_Pronation_Supination_1.delsys
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/Forearm_Pronation_Supination_1.shpf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/MATLAB API/Forearm_Pronation_Supination_1.shpf
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/README.md:
--------------------------------------------------------------------------------
1 | # Delsys FileReader API - MATLAB Example
2 |
3 | ## Getting Started
4 |
5 | Download this MATLAB example repository
6 |
7 | Download [MATLAB](https://www.mathworks.com/products/matlab.html) & register
8 |
9 | Open MATLAB & navigate to FileReader_MatlabAPI directory
10 |
11 | Open FileReader_Example.mlx
12 |
13 | Run individual code blocks or run the entire live script. The code executed correctly if no errors occur, and All Data plots are displayed at the bottom.
14 |
15 | *If a file not found exception occurs on the FileReader.dll file, it may have been blocked by Windows during the unzip process. Go to file explorer, navigate to the python example directory, right click on FileReader.dll and choose properties, select Unblock and continue.
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/dependencies/Delsys.FileManager.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/MATLAB API/dependencies/Delsys.FileManager.dll
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/dependencies/Delsys.FileManager.runtimeconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "runtimeOptions": {
3 | "tfm": "net6.0",
4 | "framework": {
5 | "name": "Microsoft.NETCore.App",
6 | "version": "6.0.0"
7 | },
8 | "configProperties": {
9 | "System.Reflection.Metadata.MetadataUpdater.IsSupported": false
10 | }
11 | }
12 | }
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/dependencies/Delsys.FileReader.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/MATLAB API/dependencies/Delsys.FileReader.dll
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/dependencies/Humanizer.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/MATLAB API/dependencies/Humanizer.dll
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/dependencies/Microsoft.Data.Sqlite.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/MATLAB API/dependencies/Microsoft.Data.Sqlite.dll
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/dependencies/Microsoft.DotNet.PlatformAbstractions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/MATLAB API/dependencies/Microsoft.DotNet.PlatformAbstractions.dll
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/dependencies/Microsoft.EntityFrameworkCore.Abstractions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/MATLAB API/dependencies/Microsoft.EntityFrameworkCore.Abstractions.dll
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/dependencies/Microsoft.EntityFrameworkCore.Design.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/MATLAB API/dependencies/Microsoft.EntityFrameworkCore.Design.dll
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/dependencies/Microsoft.EntityFrameworkCore.Relational.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/MATLAB API/dependencies/Microsoft.EntityFrameworkCore.Relational.dll
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/dependencies/Microsoft.EntityFrameworkCore.Sqlite.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/MATLAB API/dependencies/Microsoft.EntityFrameworkCore.Sqlite.dll
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/dependencies/Microsoft.EntityFrameworkCore.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/MATLAB API/dependencies/Microsoft.EntityFrameworkCore.dll
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/dependencies/Microsoft.Extensions.Caching.Abstractions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/MATLAB API/dependencies/Microsoft.Extensions.Caching.Abstractions.dll
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/dependencies/Microsoft.Extensions.Caching.Memory.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/MATLAB API/dependencies/Microsoft.Extensions.Caching.Memory.dll
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/dependencies/Microsoft.Extensions.Configuration.Abstractions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/MATLAB API/dependencies/Microsoft.Extensions.Configuration.Abstractions.dll
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/dependencies/Microsoft.Extensions.DependencyInjection.Abstractions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/MATLAB API/dependencies/Microsoft.Extensions.DependencyInjection.Abstractions.dll
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/dependencies/Microsoft.Extensions.DependencyInjection.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/MATLAB API/dependencies/Microsoft.Extensions.DependencyInjection.dll
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/dependencies/Microsoft.Extensions.DependencyModel.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/MATLAB API/dependencies/Microsoft.Extensions.DependencyModel.dll
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/dependencies/Microsoft.Extensions.Logging.Abstractions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/MATLAB API/dependencies/Microsoft.Extensions.Logging.Abstractions.dll
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/dependencies/Microsoft.Extensions.Logging.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/MATLAB API/dependencies/Microsoft.Extensions.Logging.dll
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/dependencies/Microsoft.Extensions.Options.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/MATLAB API/dependencies/Microsoft.Extensions.Options.dll
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/dependencies/Microsoft.Extensions.Primitives.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/MATLAB API/dependencies/Microsoft.Extensions.Primitives.dll
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/dependencies/SQLitePCLRaw.batteries_v2.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/MATLAB API/dependencies/SQLitePCLRaw.batteries_v2.dll
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/dependencies/SQLitePCLRaw.core.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/MATLAB API/dependencies/SQLitePCLRaw.core.dll
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/dependencies/SQLitePCLRaw.nativelibrary.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/MATLAB API/dependencies/SQLitePCLRaw.nativelibrary.dll
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/dependencies/SQLitePCLRaw.provider.dynamic_cdecl.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/MATLAB API/dependencies/SQLitePCLRaw.provider.dynamic_cdecl.dll
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/dependencies/e_sqlite3.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/MATLAB API/dependencies/e_sqlite3.dll
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/dependencies/runtimes/alpine-x64/native/libe_sqlite3.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/MATLAB API/dependencies/runtimes/alpine-x64/native/libe_sqlite3.so
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/dependencies/runtimes/linux-arm/native/libe_sqlite3.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/MATLAB API/dependencies/runtimes/linux-arm/native/libe_sqlite3.so
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/dependencies/runtimes/linux-arm64/native/libe_sqlite3.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/MATLAB API/dependencies/runtimes/linux-arm64/native/libe_sqlite3.so
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/dependencies/runtimes/linux-armel/native/libe_sqlite3.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/MATLAB API/dependencies/runtimes/linux-armel/native/libe_sqlite3.so
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/dependencies/runtimes/linux-mips64/native/libe_sqlite3.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/MATLAB API/dependencies/runtimes/linux-mips64/native/libe_sqlite3.so
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/dependencies/runtimes/linux-musl-x64/native/libe_sqlite3.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/MATLAB API/dependencies/runtimes/linux-musl-x64/native/libe_sqlite3.so
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/dependencies/runtimes/linux-x64/native/libe_sqlite3.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/MATLAB API/dependencies/runtimes/linux-x64/native/libe_sqlite3.so
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/dependencies/runtimes/linux-x86/native/libe_sqlite3.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/MATLAB API/dependencies/runtimes/linux-x86/native/libe_sqlite3.so
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/dependencies/runtimes/osx-x64/native/libe_sqlite3.dylib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/MATLAB API/dependencies/runtimes/osx-x64/native/libe_sqlite3.dylib
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/dependencies/runtimes/win-arm/native/e_sqlite3.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/MATLAB API/dependencies/runtimes/win-arm/native/e_sqlite3.dll
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/dependencies/runtimes/win-arm64/native/e_sqlite3.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/MATLAB API/dependencies/runtimes/win-arm64/native/e_sqlite3.dll
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/dependencies/runtimes/win-x64/native/e_sqlite3.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/MATLAB API/dependencies/runtimes/win-x64/native/e_sqlite3.dll
--------------------------------------------------------------------------------
/File Reading Examples/MATLAB API/dependencies/runtimes/win-x86/native/e_sqlite3.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/MATLAB API/dependencies/runtimes/win-x86/native/e_sqlite3.dll
--------------------------------------------------------------------------------
/File Reading Examples/Python API/DelsysFile.py:
--------------------------------------------------------------------------------
1 | from uuid import UUID
2 | from Component import Component
3 |
4 | class DelsysFile:
5 | """Delsys .shpf File Wrapper for FileReaderAPI"""
6 |
7 | def __init__(self, file):
8 | self.file = file
9 |
10 | def Component(self, selectedComponent: int) -> Component:
11 | """Component/Sensor Object - Pass component index and return the component object"""
12 |
13 | tempComponent = self.file.Trial.Components[selectedComponent]
14 | return Component(tempComponent, self.file.Trial.DataStream)
15 |
16 | # This section is additional methods that do not exist in the base library
17 | def ComponentCount(self) -> int:
18 | """Returns the amount of sensor components in the file"""
19 |
20 | componentCount = len(self.file.Trial.Components)
21 | return componentCount
22 |
23 | def GetAllData(self):
24 | """Return all of the data from all sensor/component channels"""
25 |
26 | componentCount = self.ComponentCount()
27 | data = []
28 | for i in range(componentCount):
29 | component = Component(i)
30 | componentData = component.GetAllData()
31 | for x in componentData:
32 | data.append(x)
33 | return data
34 |
35 | def GetChannelTimeSeries(self, guid):
36 | return list(self.file.Trial.GetChannelXyData(guid).xData)
37 |
38 | def GetChannelXyData(self, guid):
39 | """Return xy data for a channel"""
40 | return self.file.Trial.GetChannelXyData(guid)
41 |
42 | def Name(self) -> str:
43 | """Return all of the data from all sensor/component channels"""
44 | return self.file.Trial.Name
--------------------------------------------------------------------------------
/File Reading Examples/Python API/File_Reader.py:
--------------------------------------------------------------------------------
1 | from DelsysFile import DelsysFile
2 |
3 | class File_Reader:
4 | """File Reader Interface to FileReaderAPI"""
5 |
6 | def __init__(self):
7 | self.filePath = ""
8 | self.reader = []
9 | self.trials = []
10 |
11 | def readFile(self, filePath):
12 | """Pass path to .shpf file - FileReaderAPI will parse the file"""
13 | import Delsys.FileManager.Reader as FM
14 | self.filePath = filePath
15 | self.reader = FM.DelsysFileReader(filePath)
16 |
17 | def ParsedFile(self) -> DelsysFile:
18 | """Once the file is parsed return the DelsysFile object"""
19 | self.trials = list(self.reader.OpenFileArray())
20 | return self.Trial(0)
21 |
22 | def Trial(self, selected_trial: int) -> DelsysFile:
23 | """Trial for given index"""
24 | return DelsysFile(self.trials[selected_trial])
25 |
26 | def TrialCount(self) -> int:
27 | """Returns the amount of trials in the file"""
28 | return len(self.trials)
29 |
30 | def Close(self):
31 | """Close the file"""
32 | self.reader.Close()
33 |
34 | def FileType(self) -> str:
35 | """Returns the file type or extension"""
36 |
37 | readType = int(self.reader.FileType)
38 | if readType == 1:
39 | fileType = '.shpf'
40 | elif readType == 5:
41 | fileType = '.delsys'
42 | else:
43 | fileType = 'Not a .shpf'
44 | return fileType
--------------------------------------------------------------------------------
/File Reading Examples/Python API/Forearm_Pronation_Supination_1.delsys:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/Python API/Forearm_Pronation_Supination_1.delsys
--------------------------------------------------------------------------------
/File Reading Examples/Python API/Forearm_Pronation_Supination_1.shpf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/Python API/Forearm_Pronation_Supination_1.shpf
--------------------------------------------------------------------------------
/File Reading Examples/Python API/README.md:
--------------------------------------------------------------------------------
1 | # Delsys FileReader API - Python Example
2 |
3 | ## Getting Started
4 |
5 | Download this python example repository
6 |
7 | Download Python [v3.8.10](https://www.python.org/downloads/release/python-3810/)
8 |
9 | *pythonnet (Python.NET) library is not supported on python 3.9+
10 |
11 | Install Jupyter Notebook - Open windows command prompt & run:
12 |
13 | `pip install notebook`
14 |
15 | *If a file not found exception occurs on the FileReader.dll file, it may have been blocked by Windows during the unzip process. Go to file explorer, navigate to the python example directory, right click on FileReader.dll and choose properties, select Unblock and continue.
16 |
17 | ## Run in Jupyter Notebook
18 |
19 | Open windows command prompt and navigate to local repository directory. Example:
20 |
21 | `cd C:\Users\[user]\Documents\FileReader_PythonAPI`
22 |
23 | run: `jupyter notebook`
24 |
25 | Jupyter notebook should open in your web browser. Open File_Reader_Example.ipynb file
26 |
27 | Make sure "Python 3 (ipykernel)" kernel is activated in the top right corner
28 |
29 | Run individual code blocks or run the entire notebook. The code executed correctly if no errors occur, and All Data plots are displayed at the bottom.
30 |
31 | ## Run in Visual Studio Code
32 |
33 | Download [VS Code](https://code.visualstudio.com/download)
34 |
35 | Open VS Code and navigate to the FileReader_PythonAPI directory
36 |
37 | You may need to install the [Jupyter](https://marketplace.visualstudio.com/items?itemName=ms-toolsai.jupyter) and [Python](https://marketplace.visualstudio.com/items?itemName=ms-python.python) VS Code Extensions
38 |
39 | Open File_Reader_Example.ipynb file and configure python kernel to your installed python
40 |
41 | Run individual code blocks or run the entire notebook. The code executed correctly if no errors occur, and All Data plots are displayed at the bottom.
42 |
--------------------------------------------------------------------------------
/File Reading Examples/Python API/Setup_Configuration.py:
--------------------------------------------------------------------------------
1 | def setup(path=None, debug=False):
2 | import os
3 |
4 | if debug:
5 | import platform
6 | print(platform.architecture())
7 |
8 | # For updating this code for newer builds, it's useful to have the directory point to the bin/build output
9 | outDirectory = path
10 | if outDirectory is None:
11 | #outDirectory = "...\ShpfWritingUtility\DelsysFileManager\bin\Release\net6.0"
12 | outDirectory = os.path.join(os.getcwd(), r"dependencies")
13 |
14 | pathToRuntimeConfigDll = os.path.join(outDirectory, r"Delsys.FileManager.runtimeconfig.json")
15 |
16 | from pythonnet import load
17 | load("coreclr", runtime_config=pathToRuntimeConfigDll)
18 |
19 | import pythonnet
20 | if debug: print(pythonnet.get_runtime_info())
21 | import clr
22 | import sys
23 |
24 | # Need to copy e_sqlite3.dll into the out directory from runtimes\win-x64\native tp
25 | sys.path.append(outDirectory)
26 | clr.AddReference("Delsys.FileManager")
27 |
--------------------------------------------------------------------------------
/File Reading Examples/Python API/dependencies/Delsys.FileManager.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/Python API/dependencies/Delsys.FileManager.dll
--------------------------------------------------------------------------------
/File Reading Examples/Python API/dependencies/Delsys.FileManager.runtimeconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "runtimeOptions": {
3 | "tfm": "net6.0",
4 | "framework": {
5 | "name": "Microsoft.NETCore.App",
6 | "version": "6.0.0"
7 | },
8 | "configProperties": {
9 | "System.Reflection.Metadata.MetadataUpdater.IsSupported": false
10 | }
11 | }
12 | }
--------------------------------------------------------------------------------
/File Reading Examples/Python API/dependencies/Delsys.FileReader.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/Python API/dependencies/Delsys.FileReader.dll
--------------------------------------------------------------------------------
/File Reading Examples/Python API/dependencies/Humanizer.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/Python API/dependencies/Humanizer.dll
--------------------------------------------------------------------------------
/File Reading Examples/Python API/dependencies/Microsoft.Data.Sqlite.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/Python API/dependencies/Microsoft.Data.Sqlite.dll
--------------------------------------------------------------------------------
/File Reading Examples/Python API/dependencies/Microsoft.DotNet.PlatformAbstractions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/Python API/dependencies/Microsoft.DotNet.PlatformAbstractions.dll
--------------------------------------------------------------------------------
/File Reading Examples/Python API/dependencies/Microsoft.EntityFrameworkCore.Abstractions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/Python API/dependencies/Microsoft.EntityFrameworkCore.Abstractions.dll
--------------------------------------------------------------------------------
/File Reading Examples/Python API/dependencies/Microsoft.EntityFrameworkCore.Design.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/Python API/dependencies/Microsoft.EntityFrameworkCore.Design.dll
--------------------------------------------------------------------------------
/File Reading Examples/Python API/dependencies/Microsoft.EntityFrameworkCore.Relational.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/Python API/dependencies/Microsoft.EntityFrameworkCore.Relational.dll
--------------------------------------------------------------------------------
/File Reading Examples/Python API/dependencies/Microsoft.EntityFrameworkCore.Sqlite.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/Python API/dependencies/Microsoft.EntityFrameworkCore.Sqlite.dll
--------------------------------------------------------------------------------
/File Reading Examples/Python API/dependencies/Microsoft.EntityFrameworkCore.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/Python API/dependencies/Microsoft.EntityFrameworkCore.dll
--------------------------------------------------------------------------------
/File Reading Examples/Python API/dependencies/Microsoft.Extensions.Caching.Abstractions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/Python API/dependencies/Microsoft.Extensions.Caching.Abstractions.dll
--------------------------------------------------------------------------------
/File Reading Examples/Python API/dependencies/Microsoft.Extensions.Caching.Memory.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/Python API/dependencies/Microsoft.Extensions.Caching.Memory.dll
--------------------------------------------------------------------------------
/File Reading Examples/Python API/dependencies/Microsoft.Extensions.Configuration.Abstractions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/Python API/dependencies/Microsoft.Extensions.Configuration.Abstractions.dll
--------------------------------------------------------------------------------
/File Reading Examples/Python API/dependencies/Microsoft.Extensions.DependencyInjection.Abstractions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/Python API/dependencies/Microsoft.Extensions.DependencyInjection.Abstractions.dll
--------------------------------------------------------------------------------
/File Reading Examples/Python API/dependencies/Microsoft.Extensions.DependencyInjection.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/Python API/dependencies/Microsoft.Extensions.DependencyInjection.dll
--------------------------------------------------------------------------------
/File Reading Examples/Python API/dependencies/Microsoft.Extensions.DependencyModel.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/Python API/dependencies/Microsoft.Extensions.DependencyModel.dll
--------------------------------------------------------------------------------
/File Reading Examples/Python API/dependencies/Microsoft.Extensions.Logging.Abstractions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/Python API/dependencies/Microsoft.Extensions.Logging.Abstractions.dll
--------------------------------------------------------------------------------
/File Reading Examples/Python API/dependencies/Microsoft.Extensions.Logging.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/Python API/dependencies/Microsoft.Extensions.Logging.dll
--------------------------------------------------------------------------------
/File Reading Examples/Python API/dependencies/Microsoft.Extensions.Options.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/Python API/dependencies/Microsoft.Extensions.Options.dll
--------------------------------------------------------------------------------
/File Reading Examples/Python API/dependencies/Microsoft.Extensions.Primitives.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/Python API/dependencies/Microsoft.Extensions.Primitives.dll
--------------------------------------------------------------------------------
/File Reading Examples/Python API/dependencies/SQLitePCLRaw.batteries_v2.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/Python API/dependencies/SQLitePCLRaw.batteries_v2.dll
--------------------------------------------------------------------------------
/File Reading Examples/Python API/dependencies/SQLitePCLRaw.core.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/Python API/dependencies/SQLitePCLRaw.core.dll
--------------------------------------------------------------------------------
/File Reading Examples/Python API/dependencies/SQLitePCLRaw.nativelibrary.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/Python API/dependencies/SQLitePCLRaw.nativelibrary.dll
--------------------------------------------------------------------------------
/File Reading Examples/Python API/dependencies/SQLitePCLRaw.provider.dynamic_cdecl.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/Python API/dependencies/SQLitePCLRaw.provider.dynamic_cdecl.dll
--------------------------------------------------------------------------------
/File Reading Examples/Python API/dependencies/e_sqlite3.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/Python API/dependencies/e_sqlite3.dll
--------------------------------------------------------------------------------
/File Reading Examples/Python API/dependencies/runtimes/alpine-x64/native/libe_sqlite3.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/Python API/dependencies/runtimes/alpine-x64/native/libe_sqlite3.so
--------------------------------------------------------------------------------
/File Reading Examples/Python API/dependencies/runtimes/linux-arm/native/libe_sqlite3.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/Python API/dependencies/runtimes/linux-arm/native/libe_sqlite3.so
--------------------------------------------------------------------------------
/File Reading Examples/Python API/dependencies/runtimes/linux-arm64/native/libe_sqlite3.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/Python API/dependencies/runtimes/linux-arm64/native/libe_sqlite3.so
--------------------------------------------------------------------------------
/File Reading Examples/Python API/dependencies/runtimes/linux-armel/native/libe_sqlite3.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/Python API/dependencies/runtimes/linux-armel/native/libe_sqlite3.so
--------------------------------------------------------------------------------
/File Reading Examples/Python API/dependencies/runtimes/linux-mips64/native/libe_sqlite3.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/Python API/dependencies/runtimes/linux-mips64/native/libe_sqlite3.so
--------------------------------------------------------------------------------
/File Reading Examples/Python API/dependencies/runtimes/linux-musl-x64/native/libe_sqlite3.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/Python API/dependencies/runtimes/linux-musl-x64/native/libe_sqlite3.so
--------------------------------------------------------------------------------
/File Reading Examples/Python API/dependencies/runtimes/linux-x64/native/libe_sqlite3.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/Python API/dependencies/runtimes/linux-x64/native/libe_sqlite3.so
--------------------------------------------------------------------------------
/File Reading Examples/Python API/dependencies/runtimes/linux-x86/native/libe_sqlite3.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/Python API/dependencies/runtimes/linux-x86/native/libe_sqlite3.so
--------------------------------------------------------------------------------
/File Reading Examples/Python API/dependencies/runtimes/osx-x64/native/libe_sqlite3.dylib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/Python API/dependencies/runtimes/osx-x64/native/libe_sqlite3.dylib
--------------------------------------------------------------------------------
/File Reading Examples/Python API/dependencies/runtimes/win-arm/native/e_sqlite3.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/Python API/dependencies/runtimes/win-arm/native/e_sqlite3.dll
--------------------------------------------------------------------------------
/File Reading Examples/Python API/dependencies/runtimes/win-arm64/native/e_sqlite3.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/Python API/dependencies/runtimes/win-arm64/native/e_sqlite3.dll
--------------------------------------------------------------------------------
/File Reading Examples/Python API/dependencies/runtimes/win-x64/native/e_sqlite3.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/Python API/dependencies/runtimes/win-x64/native/e_sqlite3.dll
--------------------------------------------------------------------------------
/File Reading Examples/Python API/dependencies/runtimes/win-x86/native/e_sqlite3.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/File Reading Examples/Python API/dependencies/runtimes/win-x86/native/e_sqlite3.dll
--------------------------------------------------------------------------------
/File Reading Examples/Python API/requirements.txt:
--------------------------------------------------------------------------------
1 | numpy
2 | pythonnet
3 | plotly
4 | pandas
5 | ipykernel
6 | nbformat
--------------------------------------------------------------------------------
/Python/.gitignore:
--------------------------------------------------------------------------------
1 | venv/
2 | .idea/
3 | *.pyc
4 | *.xml
5 | */__pycache__/
6 | *.vs
--------------------------------------------------------------------------------
/Python/DataCollector/CollectionMetricsManagement.py:
--------------------------------------------------------------------------------
1 | from PySide6.QtCore import Qt
2 | from PySide6.QtWidgets import *
3 |
4 |
5 | class CollectionMetricsManagement():
6 | def __init__(self):
7 | self.collectionmetrics = self.CollectionValuesPanel()
8 |
9 |
10 | def CollectionValuesPanel(self):
11 | collectionValuesPanel = QWidget()
12 | collectionvaluesLayout = QVBoxLayout()
13 |
14 | self.pipelinestatelabel = QLabel("-")
15 | self.pipelinestatelabel.setAlignment(Qt.AlignVCenter | Qt.AlignLeft)
16 | self.pipelinestatelabel.setStyleSheet("color:white")
17 | collectionvaluesLayout.addWidget(self.pipelinestatelabel)
18 |
19 | self.sensorsconnected = QLabel('-')
20 | self.sensorsconnected.setAlignment(Qt.AlignVCenter | Qt.AlignLeft)
21 | self.sensorsconnected.setStyleSheet("color : white ")
22 | collectionvaluesLayout.addWidget(self.sensorsconnected)
23 |
24 | self.totalchannels = QLabel('-')
25 | self.totalchannels.setAlignment(Qt.AlignVCenter | Qt.AlignLeft)
26 | self.totalchannels.setStyleSheet("color : white ")
27 | collectionvaluesLayout.addWidget(self.totalchannels)
28 |
29 | self.framescollected = QLabel('-')
30 | self.framescollected.setAlignment(Qt.AlignVCenter | Qt.AlignLeft)
31 | self.framescollected.setStyleSheet("color : white ")
32 | collectionvaluesLayout.addWidget(self.framescollected)
33 | collectionValuesPanel.setFixedWidth(200)
34 | collectionValuesPanel.setLayout(collectionvaluesLayout)
35 |
36 | return collectionValuesPanel
--------------------------------------------------------------------------------
/Python/DelsysPythonDemo.py:
--------------------------------------------------------------------------------
1 | import sys
2 | from PySide6.QtWidgets import QApplication
3 | from UIControls.LandingScreenController import *
4 |
5 | def main():
6 | app = QApplication(sys.argv)
7 | app.setStyleSheet('.QLabel { font-size: 12pt;}'
8 | '.QPushButton { font-size: 12pt;}'
9 | '.QListWidget { font-size: 12pt;}'
10 | '.QComboBox{ font-size: 12pt;}'
11 | )
12 | controller = LandingScreenController()
13 | sys.exit(app.exec())
14 |
15 | if __name__ == '__main__':
16 | main()
--------------------------------------------------------------------------------
/Python/Images/centro_trigger_config.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Python/Images/centro_trigger_config.png
--------------------------------------------------------------------------------
/Python/Images/delsys.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Python/Images/delsys.png
--------------------------------------------------------------------------------
/Python/UIControls/FrameController.py:
--------------------------------------------------------------------------------
1 | from DataCollector.CollectDataWindow import CollectDataWindow
2 | from StartMenu.StartWindow import StartWindow
3 | import sys
4 | from PySide2.QtWidgets import *
5 |
6 | class FrameController():
7 | def __init__(self):
8 | self.startWindow = StartWindow(self)
9 | self.collectWindow = CollectDataWindow(self)
10 |
11 | self.startWindow.show()
12 |
13 | self.curHeight = 650
14 | self.curWidth = 1115
15 |
16 | def showStartMenu(self):
17 | self.collectWindow.close()
18 | self.startWindow.show()
19 |
20 | def showCollectData(self):
21 | self.startWindow.close()
22 | if self.startWindow.plot_enabled.isChecked():
23 | self.collectWindow.plot_enabled = True
24 | self.collectWindow.AddPlotPanel()
25 | self.collectWindow.SetCallbackConnector()
26 | self.collectWindow.show()
27 |
28 |
29 | def main():
30 | app = QApplication(sys.argv)
31 | controller = FrameController()
32 | sys.exit(app.exec_())
33 |
34 | if __name__ == '__main__':
35 | main()
36 |
37 |
38 |
39 |
40 |
--------------------------------------------------------------------------------
/Python/UIControls/LandingScreenController.py:
--------------------------------------------------------------------------------
1 | from DataCollector.CollectDataWindow import CollectDataWindow
2 | from StartMenu.StartWindow import StartWindow
3 |
4 |
5 | class LandingScreenController():
6 | def __init__(self):
7 | self.startWindow = StartWindow(self)
8 | self.collectWindow = CollectDataWindow(self)
9 |
10 | self.startWindow.show()
11 |
12 | self.curHeight = 900
13 | self.curWidth = 1400
14 |
15 | def showStartMenu(self):
16 | self.collectWindow.close()
17 | self.startWindow.show()
18 |
19 | def showCollectData(self):
20 | self.startWindow.close()
21 | if self.startWindow.plot_enabled.isChecked():
22 | self.collectWindow.plot_enabled = True
23 | self.collectWindow.AddPlotPanel()
24 | self.collectWindow.SetCallbackConnector()
25 | self.collectWindow.connect_callback()
26 | self.collectWindow.show()
27 |
--------------------------------------------------------------------------------
/Python/requirements.txt:
--------------------------------------------------------------------------------
1 | PySide6
2 | Vispy
3 | Scipy
4 | pythonnet==3.0.3
5 | numpy
--------------------------------------------------------------------------------
/Python/resources/BouncyCastle.Crypto.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Python/resources/BouncyCastle.Crypto.dll
--------------------------------------------------------------------------------
/Python/resources/CentroUSB_32.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Python/resources/CentroUSB_32.dll
--------------------------------------------------------------------------------
/Python/resources/CentroUSB_64.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Python/resources/CentroUSB_64.dll
--------------------------------------------------------------------------------
/Python/resources/CoreCompat.Portable.Licensing.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Python/resources/CoreCompat.Portable.Licensing.dll
--------------------------------------------------------------------------------
/Python/resources/DelsysAPI.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Python/resources/DelsysAPI.dll
--------------------------------------------------------------------------------
/Python/resources/MathNet.Filtering.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Python/resources/MathNet.Filtering.dll
--------------------------------------------------------------------------------
/Python/resources/MathNet.Numerics.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Python/resources/MathNet.Numerics.dll
--------------------------------------------------------------------------------
/Python/resources/Microsoft.Extensions.Logging.Abstractions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Python/resources/Microsoft.Extensions.Logging.Abstractions.dll
--------------------------------------------------------------------------------
/Python/resources/Newtonsoft.Json.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Python/resources/Newtonsoft.Json.dll
--------------------------------------------------------------------------------
/Python/resources/Plugin.BLE.Abstractions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Python/resources/Plugin.BLE.Abstractions.dll
--------------------------------------------------------------------------------
/Python/resources/Plugin.BLE.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Python/resources/Plugin.BLE.dll
--------------------------------------------------------------------------------
/Python/resources/RJCP.Core.Environment.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Python/resources/RJCP.Core.Environment.dll
--------------------------------------------------------------------------------
/Python/resources/RJCP.Core.SysCompat.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Python/resources/RJCP.Core.SysCompat.dll
--------------------------------------------------------------------------------
/Python/resources/RJCP.Diagnostics.Trace.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Python/resources/RJCP.Diagnostics.Trace.dll
--------------------------------------------------------------------------------
/Python/resources/RJCP.IO.Buffer.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Python/resources/RJCP.IO.Buffer.dll
--------------------------------------------------------------------------------
/Python/resources/RJCP.IO.Device.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Python/resources/RJCP.IO.Device.dll
--------------------------------------------------------------------------------
/Python/resources/RJCP.SerialPortStream.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Python/resources/RJCP.SerialPortStream.dll
--------------------------------------------------------------------------------
/Python/resources/SiUSBXp_32.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Python/resources/SiUSBXp_32.dll
--------------------------------------------------------------------------------
/Python/resources/SiUSBXp_64.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Python/resources/SiUSBXp_64.dll
--------------------------------------------------------------------------------
/Python/resources/Signals.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Python/resources/Signals.dll
--------------------------------------------------------------------------------
/Python/resources/Stateless.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Python/resources/Stateless.dll
--------------------------------------------------------------------------------
/Python/resources/System.IO.Ports.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Python/resources/System.IO.Ports.dll
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Delsys Example Apps
2 |
3 | ## Overview
4 |
5 | This repository includes:
6 |
7 | - .NET Basic Streaming App
8 | - Python Streaming App
9 | - Unity Streaming Example
10 | - File Reading Examples (Python, MATLAB, C#)
11 |
12 | ## Requirements
13 |
14 | Applications that are using the DelsysAPI will need a key and license provided by Delsys. These key/license strings will be inserted into your code (see application documentation for details). Contact [Delsys Support](https://delsys.com/support) if you have any questions.
15 |
16 | The file reading examples include everything needed to read files collected from Trigno Discover. The MATLAB example requires an activate MATLAB license.
17 |
18 | ## Intended Use
19 |
20 | The Delsys API is a software development tool to be used in conjunction with the Trigno Wireless Biofeedback System. The API is not intended to perform medical assessments or diagnostic procedures. It is intended to be used as a software component of a third-party software application. The function of the API is to manage the transfer of data from the Trigno System to third-party software applications, and is designed to work exclusively with the Trigno System. It is designed to facilitate communication with the Trigno System from a third-party software application. Any claims regarding the intended use of the 3rd party software are the sole responsibility of the 3rd party software manufacturer.
--------------------------------------------------------------------------------
/Unity/.gitignore:
--------------------------------------------------------------------------------
1 | # This .gitignore file should be placed at the root of your Unity project directory
2 | #
3 | # Get latest from https://github.com/github/gitignore/blob/main/Unity.gitignore
4 | #
5 | /[Ll]ibrary/
6 | /[Tt]emp/
7 | /[Oo]bj/
8 | /[Bb]uild/
9 | /[Bb]uilds/
10 | /[Ll]ogs/
11 | /[Uu]ser[Ss]ettings/
12 |
13 | # MemoryCaptures can get excessive in size.
14 | # They also could contain extremely sensitive data
15 | /[Mm]emoryCaptures/
16 |
17 | # Recordings can get excessive in size
18 | /[Rr]ecordings/
19 |
20 | # Uncomment this line if you wish to ignore the asset store tools plugin
21 | # /[Aa]ssets/AssetStoreTools*
22 |
23 | # Autogenerated Jetbrains Rider plugin
24 | /[Aa]ssets/Plugins/Editor/JetBrains*
25 |
26 | # Visual Studio cache directory
27 | .vs/
28 |
29 | # Gradle cache directory
30 | .gradle/
31 |
32 | # Autogenerated VS/MD/Consulo solution and project files
33 | ExportedObj/
34 | .consulo/
35 | *.csproj
36 | *.unityproj
37 | *.sln
38 | *.suo
39 | *.tmp
40 | *.user
41 | *.userprefs
42 | *.pidb
43 | *.booproj
44 | *.svd
45 | *.pdb
46 | *.mdb
47 | *.opendb
48 | *.VC.db
49 |
50 | # Unity3D generated meta files
51 | *.pidb.meta
52 | *.pdb.meta
53 | *.mdb.meta
54 |
55 | # Unity3D generated file on crash reports
56 | sysinfo.txt
57 |
58 | # Builds
59 | *.apk
60 | *.aab
61 | *.unitypackage
62 | *.app
63 |
64 | # Crashlytics generated file
65 | crashlytics-build.properties
66 |
67 | # Packed Addressables
68 | /[Aa]ssets/[Aa]ddressable[Aa]ssets[Dd]ata/*/*.bin*
69 |
70 | # Temporary auto-generated Android Assets
71 | /[Aa]ssets/[Ss]treamingAssets/aa.meta
72 | /[Aa]ssets/[Ss]treamingAssets/aa/*
--------------------------------------------------------------------------------
/Unity/Assets/Picture1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/Assets/Picture1.png
--------------------------------------------------------------------------------
/Unity/Assets/Picture1.png.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 909de91c77dc05740a03912ea3912f7c
3 | TextureImporter:
4 | internalIDToNameTable: []
5 | externalObjects: {}
6 | serializedVersion: 11
7 | mipmaps:
8 | mipMapMode: 0
9 | enableMipMap: 1
10 | sRGBTexture: 1
11 | linearTexture: 0
12 | fadeOut: 0
13 | borderMipMap: 0
14 | mipMapsPreserveCoverage: 0
15 | alphaTestReferenceValue: 0.5
16 | mipMapFadeDistanceStart: 1
17 | mipMapFadeDistanceEnd: 3
18 | bumpmap:
19 | convertToNormalMap: 0
20 | externalNormalMap: 0
21 | heightScale: 0.25
22 | normalMapFilter: 0
23 | isReadable: 0
24 | streamingMipmaps: 0
25 | streamingMipmapsPriority: 0
26 | grayScaleToAlpha: 0
27 | generateCubemap: 6
28 | cubemapConvolution: 0
29 | seamlessCubemap: 0
30 | textureFormat: 1
31 | maxTextureSize: 2048
32 | textureSettings:
33 | serializedVersion: 2
34 | filterMode: 1
35 | aniso: 1
36 | mipBias: 0
37 | wrapU: 0
38 | wrapV: 0
39 | wrapW: 0
40 | nPOTScale: 1
41 | lightmap: 0
42 | compressionQuality: 50
43 | spriteMode: 0
44 | spriteExtrude: 1
45 | spriteMeshType: 1
46 | alignment: 0
47 | spritePivot: {x: 0.5, y: 0.5}
48 | spritePixelsToUnits: 100
49 | spriteBorder: {x: 0, y: 0, z: 0, w: 0}
50 | spriteGenerateFallbackPhysicsShape: 1
51 | alphaUsage: 1
52 | alphaIsTransparency: 0
53 | spriteTessellationDetail: -1
54 | textureType: 0
55 | textureShape: 1
56 | singleChannelComponent: 0
57 | maxTextureSizeSet: 0
58 | compressionQualitySet: 0
59 | textureFormatSet: 0
60 | applyGammaDecoding: 0
61 | platformSettings:
62 | - serializedVersion: 3
63 | buildTarget: DefaultTexturePlatform
64 | maxTextureSize: 2048
65 | resizeAlgorithm: 0
66 | textureFormat: -1
67 | textureCompression: 1
68 | compressionQuality: 50
69 | crunchedCompression: 0
70 | allowsAlphaSplitting: 0
71 | overridden: 0
72 | androidETC2FallbackOverride: 0
73 | forceMaximumCompressionQuality_BC6H_BC7: 0
74 | spriteSheet:
75 | serializedVersion: 2
76 | sprites: []
77 | outline: []
78 | physicsShape: []
79 | bones: []
80 | spriteID:
81 | internalID: 0
82 | vertices: []
83 | indices:
84 | edges: []
85 | weights: []
86 | secondaryTextures: []
87 | spritePackingTag:
88 | pSDRemoveMatte: 0
89 | pSDShowRemoveMatteOption: 0
90 | userData:
91 | assetBundleName:
92 | assetBundleVariant:
93 |
--------------------------------------------------------------------------------
/Unity/Assets/Plugins.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 2bd1d676d3fd3614dae84f42a1a163ae
3 | folderAsset: yes
4 | DefaultImporter:
5 | externalObjects: {}
6 | userData:
7 | assetBundleName:
8 | assetBundleVariant:
9 |
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/BouncyCastle.Crypto.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/Assets/Plugins/BouncyCastle.Crypto.dll
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/BouncyCastle.Crypto.dll.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 17ac3a28ddee8c5409e78c9e84845d0d
3 | PluginImporter:
4 | externalObjects: {}
5 | serializedVersion: 2
6 | iconMap: {}
7 | executionOrder: {}
8 | defineConstraints: []
9 | isPreloaded: 0
10 | isOverridable: 0
11 | isExplicitlyReferenced: 0
12 | validateReferences: 1
13 | platformData:
14 | - first:
15 | Any:
16 | second:
17 | enabled: 1
18 | settings: {}
19 | - first:
20 | Editor: Editor
21 | second:
22 | enabled: 0
23 | settings:
24 | DefaultValueInitialized: true
25 | - first:
26 | Windows Store Apps: WindowsStoreApps
27 | second:
28 | enabled: 0
29 | settings:
30 | CPU: AnyCPU
31 | userData:
32 | assetBundleName:
33 | assetBundleVariant:
34 |
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/Castle.Core.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/Assets/Plugins/Castle.Core.dll
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/Castle.Core.dll.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 32bad5a5c4295be4cbe1fd2761268441
3 | PluginImporter:
4 | externalObjects: {}
5 | serializedVersion: 2
6 | iconMap: {}
7 | executionOrder: {}
8 | defineConstraints: []
9 | isPreloaded: 0
10 | isOverridable: 0
11 | isExplicitlyReferenced: 0
12 | validateReferences: 1
13 | platformData:
14 | - first:
15 | Any:
16 | second:
17 | enabled: 1
18 | settings: {}
19 | - first:
20 | Editor: Editor
21 | second:
22 | enabled: 0
23 | settings:
24 | DefaultValueInitialized: true
25 | - first:
26 | Windows Store Apps: WindowsStoreApps
27 | second:
28 | enabled: 0
29 | settings:
30 | CPU: AnyCPU
31 | userData:
32 | assetBundleName:
33 | assetBundleVariant:
34 |
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/CoreCompat.Portable.Licensing.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/Assets/Plugins/CoreCompat.Portable.Licensing.dll
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/CoreCompat.Portable.Licensing.dll.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 063bb7584b92c724b85538fa17569a46
3 | PluginImporter:
4 | externalObjects: {}
5 | serializedVersion: 2
6 | iconMap: {}
7 | executionOrder: {}
8 | defineConstraints: []
9 | isPreloaded: 0
10 | isOverridable: 0
11 | isExplicitlyReferenced: 0
12 | validateReferences: 1
13 | platformData:
14 | - first:
15 | Any:
16 | second:
17 | enabled: 1
18 | settings: {}
19 | - first:
20 | Editor: Editor
21 | second:
22 | enabled: 0
23 | settings:
24 | DefaultValueInitialized: true
25 | - first:
26 | Windows Store Apps: WindowsStoreApps
27 | second:
28 | enabled: 0
29 | settings:
30 | CPU: AnyCPU
31 | userData:
32 | assetBundleName:
33 | assetBundleVariant:
34 |
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/Delsys.TrignoLite_32.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/Assets/Plugins/Delsys.TrignoLite_32.dll
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/Delsys.TrignoLite_32.dll.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 210fa36f90f10f74ea5be40819f2eea2
3 | PluginImporter:
4 | externalObjects: {}
5 | serializedVersion: 2
6 | iconMap: {}
7 | executionOrder: {}
8 | defineConstraints: []
9 | isPreloaded: 0
10 | isOverridable: 0
11 | isExplicitlyReferenced: 0
12 | validateReferences: 1
13 | platformData:
14 | - first:
15 | Any:
16 | second:
17 | enabled: 1
18 | settings: {}
19 | - first:
20 | Editor: Editor
21 | second:
22 | enabled: 0
23 | settings:
24 | DefaultValueInitialized: true
25 | userData:
26 | assetBundleName:
27 | assetBundleVariant:
28 |
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/Delsys.TrignoLite_64.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/Assets/Plugins/Delsys.TrignoLite_64.dll
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/Delsys.TrignoLite_64.dll.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: bf6f1929540185548abf12a6d3509980
3 | PluginImporter:
4 | externalObjects: {}
5 | serializedVersion: 2
6 | iconMap: {}
7 | executionOrder: {}
8 | defineConstraints: []
9 | isPreloaded: 0
10 | isOverridable: 0
11 | isExplicitlyReferenced: 0
12 | validateReferences: 1
13 | platformData:
14 | - first:
15 | Any:
16 | second:
17 | enabled: 1
18 | settings: {}
19 | - first:
20 | Editor: Editor
21 | second:
22 | enabled: 0
23 | settings:
24 | DefaultValueInitialized: true
25 | userData:
26 | assetBundleName:
27 | assetBundleVariant:
28 |
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/DelsysAPI.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/Assets/Plugins/DelsysAPI.dll
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/DelsysAPI.dll.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 3b56b40dff5626f4e8bec3e6837003ff
3 | PluginImporter:
4 | externalObjects: {}
5 | serializedVersion: 2
6 | iconMap: {}
7 | executionOrder: {}
8 | defineConstraints: []
9 | isPreloaded: 0
10 | isOverridable: 0
11 | isExplicitlyReferenced: 0
12 | validateReferences: 1
13 | platformData:
14 | - first:
15 | Any:
16 | second:
17 | enabled: 1
18 | settings: {}
19 | - first:
20 | Editor: Editor
21 | second:
22 | enabled: 0
23 | settings:
24 | DefaultValueInitialized: true
25 | - first:
26 | Windows Store Apps: WindowsStoreApps
27 | second:
28 | enabled: 0
29 | settings:
30 | CPU: AnyCPU
31 | userData:
32 | assetBundleName:
33 | assetBundleVariant:
34 |
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/MathNet.Numerics.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/Assets/Plugins/MathNet.Numerics.dll
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/MathNet.Numerics.dll.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 5616a8a6f4309374fb8112768db5f211
3 | PluginImporter:
4 | externalObjects: {}
5 | serializedVersion: 2
6 | iconMap: {}
7 | executionOrder: {}
8 | defineConstraints: []
9 | isPreloaded: 0
10 | isOverridable: 0
11 | isExplicitlyReferenced: 0
12 | validateReferences: 1
13 | platformData:
14 | - first:
15 | Any:
16 | second:
17 | enabled: 1
18 | settings: {}
19 | - first:
20 | Editor: Editor
21 | second:
22 | enabled: 0
23 | settings:
24 | DefaultValueInitialized: true
25 | - first:
26 | Windows Store Apps: WindowsStoreApps
27 | second:
28 | enabled: 0
29 | settings:
30 | CPU: AnyCPU
31 | userData:
32 | assetBundleName:
33 | assetBundleVariant:
34 |
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/Plugin.BLE.Abstractions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/Assets/Plugins/Plugin.BLE.Abstractions.dll
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/Plugin.BLE.Abstractions.dll.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 5307e59f08566124ca3ac28827c11a75
3 | PluginImporter:
4 | externalObjects: {}
5 | serializedVersion: 2
6 | iconMap: {}
7 | executionOrder: {}
8 | defineConstraints: []
9 | isPreloaded: 0
10 | isOverridable: 0
11 | isExplicitlyReferenced: 0
12 | validateReferences: 1
13 | platformData:
14 | - first:
15 | Any:
16 | second:
17 | enabled: 1
18 | settings: {}
19 | - first:
20 | Editor: Editor
21 | second:
22 | enabled: 0
23 | settings:
24 | DefaultValueInitialized: true
25 | - first:
26 | Windows Store Apps: WindowsStoreApps
27 | second:
28 | enabled: 0
29 | settings:
30 | CPU: AnyCPU
31 | userData:
32 | assetBundleName:
33 | assetBundleVariant:
34 |
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/Plugin.BLE.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/Assets/Plugins/Plugin.BLE.dll
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/Plugin.BLE.dll.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: fb8146b1dd26cfc4795f997a5c2b5a95
3 | PluginImporter:
4 | externalObjects: {}
5 | serializedVersion: 2
6 | iconMap: {}
7 | executionOrder: {}
8 | defineConstraints: []
9 | isPreloaded: 0
10 | isOverridable: 0
11 | isExplicitlyReferenced: 0
12 | validateReferences: 1
13 | platformData:
14 | - first:
15 | Any:
16 | second:
17 | enabled: 1
18 | settings: {}
19 | - first:
20 | Editor: Editor
21 | second:
22 | enabled: 0
23 | settings:
24 | DefaultValueInitialized: true
25 | - first:
26 | Windows Store Apps: WindowsStoreApps
27 | second:
28 | enabled: 0
29 | settings:
30 | CPU: AnyCPU
31 | userData:
32 | assetBundleName:
33 | assetBundleVariant:
34 |
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/SiUSBXp.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/Assets/Plugins/SiUSBXp.dll
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/SiUSBXp.dll.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: ddd4d63fb5be8744cafc138ba9d2cc87
3 | PluginImporter:
4 | externalObjects: {}
5 | serializedVersion: 2
6 | iconMap: {}
7 | executionOrder: {}
8 | defineConstraints: []
9 | isPreloaded: 0
10 | isOverridable: 0
11 | isExplicitlyReferenced: 0
12 | validateReferences: 1
13 | platformData:
14 | - first:
15 | Any:
16 | second:
17 | enabled: 1
18 | settings: {}
19 | - first:
20 | Editor: Editor
21 | second:
22 | enabled: 0
23 | settings:
24 | DefaultValueInitialized: true
25 | userData:
26 | assetBundleName:
27 | assetBundleVariant:
28 |
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/SiUSBXp_32.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/Assets/Plugins/SiUSBXp_32.dll
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/SiUSBXp_32.dll.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 12741add77bf0dd45b9e7ad3f57338da
3 | PluginImporter:
4 | externalObjects: {}
5 | serializedVersion: 2
6 | iconMap: {}
7 | executionOrder: {}
8 | defineConstraints: []
9 | isPreloaded: 0
10 | isOverridable: 0
11 | isExplicitlyReferenced: 0
12 | validateReferences: 1
13 | platformData:
14 | - first:
15 | Any:
16 | second:
17 | enabled: 1
18 | settings: {}
19 | - first:
20 | Editor: Editor
21 | second:
22 | enabled: 0
23 | settings:
24 | DefaultValueInitialized: true
25 | userData:
26 | assetBundleName:
27 | assetBundleVariant:
28 |
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/SiUSBXp_64.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/Assets/Plugins/SiUSBXp_64.dll
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/SiUSBXp_64.dll.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 238651aacd5d5a143a9432c361d96bb1
3 | PluginImporter:
4 | externalObjects: {}
5 | serializedVersion: 2
6 | iconMap: {}
7 | executionOrder: {}
8 | defineConstraints: []
9 | isPreloaded: 0
10 | isOverridable: 0
11 | isExplicitlyReferenced: 0
12 | validateReferences: 1
13 | platformData:
14 | - first:
15 | Any:
16 | second:
17 | enabled: 1
18 | settings: {}
19 | - first:
20 | Editor: Editor
21 | second:
22 | enabled: 0
23 | settings:
24 | DefaultValueInitialized: true
25 | userData:
26 | assetBundleName:
27 | assetBundleVariant:
28 |
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/Signals.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/Assets/Plugins/Signals.dll
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/Signals.dll.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 4d3d22fc08be34848a9269d9c0f3b133
3 | PluginImporter:
4 | externalObjects: {}
5 | serializedVersion: 2
6 | iconMap: {}
7 | executionOrder: {}
8 | defineConstraints: []
9 | isPreloaded: 0
10 | isOverridable: 0
11 | isExplicitlyReferenced: 0
12 | validateReferences: 1
13 | platformData:
14 | - first:
15 | Any:
16 | second:
17 | enabled: 1
18 | settings: {}
19 | - first:
20 | Editor: Editor
21 | second:
22 | enabled: 0
23 | settings:
24 | DefaultValueInitialized: true
25 | - first:
26 | Windows Store Apps: WindowsStoreApps
27 | second:
28 | enabled: 0
29 | settings:
30 | CPU: AnyCPU
31 | userData:
32 | assetBundleName:
33 | assetBundleVariant:
34 |
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/Stateless.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/Assets/Plugins/Stateless.dll
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/Stateless.dll.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 699a2720982844f4f83d3f472397dd1c
3 | PluginImporter:
4 | externalObjects: {}
5 | serializedVersion: 2
6 | iconMap: {}
7 | executionOrder: {}
8 | defineConstraints: []
9 | isPreloaded: 0
10 | isOverridable: 0
11 | isExplicitlyReferenced: 0
12 | validateReferences: 1
13 | platformData:
14 | - first:
15 | Any:
16 | second:
17 | enabled: 1
18 | settings: {}
19 | - first:
20 | Editor: Editor
21 | second:
22 | enabled: 0
23 | settings:
24 | DefaultValueInitialized: true
25 | - first:
26 | Windows Store Apps: WindowsStoreApps
27 | second:
28 | enabled: 0
29 | settings:
30 | CPU: AnyCPU
31 | userData:
32 | assetBundleName:
33 | assetBundleVariant:
34 |
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/System.CodeDom.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/Assets/Plugins/System.CodeDom.dll
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/System.CodeDom.dll.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 6e675cfad96a8f8448cefe569fb55b98
3 | PluginImporter:
4 | externalObjects: {}
5 | serializedVersion: 2
6 | iconMap: {}
7 | executionOrder: {}
8 | defineConstraints: []
9 | isPreloaded: 0
10 | isOverridable: 0
11 | isExplicitlyReferenced: 0
12 | validateReferences: 1
13 | platformData:
14 | - first:
15 | Any:
16 | second:
17 | enabled: 1
18 | settings: {}
19 | - first:
20 | Editor: Editor
21 | second:
22 | enabled: 0
23 | settings:
24 | DefaultValueInitialized: true
25 | - first:
26 | Windows Store Apps: WindowsStoreApps
27 | second:
28 | enabled: 0
29 | settings:
30 | CPU: AnyCPU
31 | userData:
32 | assetBundleName:
33 | assetBundleVariant:
34 |
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/System.Collections.Immutable.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/Assets/Plugins/System.Collections.Immutable.dll
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/System.Collections.Immutable.dll.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: b9ccf98debb617d48a12d3e71520d4df
3 | PluginImporter:
4 | externalObjects: {}
5 | serializedVersion: 2
6 | iconMap: {}
7 | executionOrder: {}
8 | defineConstraints: []
9 | isPreloaded: 0
10 | isOverridable: 0
11 | isExplicitlyReferenced: 0
12 | validateReferences: 1
13 | platformData:
14 | - first:
15 | Any:
16 | second:
17 | enabled: 1
18 | settings: {}
19 | - first:
20 | Editor: Editor
21 | second:
22 | enabled: 0
23 | settings:
24 | DefaultValueInitialized: true
25 | - first:
26 | Windows Store Apps: WindowsStoreApps
27 | second:
28 | enabled: 0
29 | settings:
30 | CPU: AnyCPU
31 | userData:
32 | assetBundleName:
33 | assetBundleVariant:
34 |
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/System.ComponentModel.Annotations.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/Assets/Plugins/System.ComponentModel.Annotations.dll
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/System.ComponentModel.Annotations.dll.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: e4d63db166edcbf4f98e3967ebd12355
3 | PluginImporter:
4 | externalObjects: {}
5 | serializedVersion: 2
6 | iconMap: {}
7 | executionOrder: {}
8 | defineConstraints: []
9 | isPreloaded: 0
10 | isOverridable: 0
11 | isExplicitlyReferenced: 0
12 | validateReferences: 1
13 | platformData:
14 | - first:
15 | Any:
16 | second:
17 | enabled: 1
18 | settings: {}
19 | - first:
20 | Editor: Editor
21 | second:
22 | enabled: 0
23 | settings:
24 | DefaultValueInitialized: true
25 | - first:
26 | Windows Store Apps: WindowsStoreApps
27 | second:
28 | enabled: 0
29 | settings:
30 | CPU: AnyCPU
31 | userData:
32 | assetBundleName:
33 | assetBundleVariant:
34 |
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/System.IO.Ports.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/Assets/Plugins/System.IO.Ports.dll
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/System.IO.Ports.dll.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 16d957ba70a929748a53ca7fb9980732
3 | PluginImporter:
4 | externalObjects: {}
5 | serializedVersion: 2
6 | iconMap: {}
7 | executionOrder: {}
8 | defineConstraints: []
9 | isPreloaded: 0
10 | isOverridable: 0
11 | isExplicitlyReferenced: 0
12 | validateReferences: 1
13 | platformData:
14 | - first:
15 | Any:
16 | second:
17 | enabled: 1
18 | settings: {}
19 | - first:
20 | Editor: Editor
21 | second:
22 | enabled: 0
23 | settings:
24 | DefaultValueInitialized: true
25 | - first:
26 | Windows Store Apps: WindowsStoreApps
27 | second:
28 | enabled: 0
29 | settings:
30 | CPU: AnyCPU
31 | userData:
32 | assetBundleName:
33 | assetBundleVariant:
34 |
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/System.Management.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/Assets/Plugins/System.Management.dll
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/System.Management.dll.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: dbd4fb8d9dcfa3047bb720c74e92edee
3 | PluginImporter:
4 | externalObjects: {}
5 | serializedVersion: 2
6 | iconMap: {}
7 | executionOrder: {}
8 | defineConstraints: []
9 | isPreloaded: 0
10 | isOverridable: 0
11 | isExplicitlyReferenced: 0
12 | validateReferences: 1
13 | platformData:
14 | - first:
15 | Any:
16 | second:
17 | enabled: 1
18 | settings: {}
19 | - first:
20 | Editor: Editor
21 | second:
22 | enabled: 0
23 | settings:
24 | DefaultValueInitialized: true
25 | - first:
26 | Windows Store Apps: WindowsStoreApps
27 | second:
28 | enabled: 0
29 | settings:
30 | CPU: AnyCPU
31 | userData:
32 | assetBundleName:
33 | assetBundleVariant:
34 |
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/System.Reactive.Core.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/Assets/Plugins/System.Reactive.Core.dll
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/System.Reactive.Core.dll.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 6299d8a966eb9dc4f984d027a746eee0
3 | PluginImporter:
4 | externalObjects: {}
5 | serializedVersion: 2
6 | iconMap: {}
7 | executionOrder: {}
8 | defineConstraints: []
9 | isPreloaded: 0
10 | isOverridable: 0
11 | isExplicitlyReferenced: 0
12 | validateReferences: 1
13 | platformData:
14 | - first:
15 | Any:
16 | second:
17 | enabled: 1
18 | settings: {}
19 | - first:
20 | Editor: Editor
21 | second:
22 | enabled: 0
23 | settings:
24 | DefaultValueInitialized: true
25 | - first:
26 | Windows Store Apps: WindowsStoreApps
27 | second:
28 | enabled: 0
29 | settings:
30 | CPU: AnyCPU
31 | userData:
32 | assetBundleName:
33 | assetBundleVariant:
34 |
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/System.Reactive.Interfaces.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/Assets/Plugins/System.Reactive.Interfaces.dll
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/System.Reactive.Interfaces.dll.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 40927b79bba079b4a9ceb356dd245460
3 | PluginImporter:
4 | externalObjects: {}
5 | serializedVersion: 2
6 | iconMap: {}
7 | executionOrder: {}
8 | defineConstraints: []
9 | isPreloaded: 0
10 | isOverridable: 0
11 | isExplicitlyReferenced: 0
12 | validateReferences: 1
13 | platformData:
14 | - first:
15 | Any:
16 | second:
17 | enabled: 1
18 | settings: {}
19 | - first:
20 | Editor: Editor
21 | second:
22 | enabled: 0
23 | settings:
24 | DefaultValueInitialized: true
25 | - first:
26 | Windows Store Apps: WindowsStoreApps
27 | second:
28 | enabled: 0
29 | settings:
30 | CPU: AnyCPU
31 | userData:
32 | assetBundleName:
33 | assetBundleVariant:
34 |
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/System.Reactive.Linq.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/Assets/Plugins/System.Reactive.Linq.dll
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/System.Reactive.Linq.dll.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 978dd467502e66b4e828b8f85b065984
3 | PluginImporter:
4 | externalObjects: {}
5 | serializedVersion: 2
6 | iconMap: {}
7 | executionOrder: {}
8 | defineConstraints: []
9 | isPreloaded: 0
10 | isOverridable: 0
11 | isExplicitlyReferenced: 0
12 | validateReferences: 1
13 | platformData:
14 | - first:
15 | Any:
16 | second:
17 | enabled: 1
18 | settings: {}
19 | - first:
20 | Editor: Editor
21 | second:
22 | enabled: 0
23 | settings:
24 | DefaultValueInitialized: true
25 | - first:
26 | Windows Store Apps: WindowsStoreApps
27 | second:
28 | enabled: 0
29 | settings:
30 | CPU: AnyCPU
31 | userData:
32 | assetBundleName:
33 | assetBundleVariant:
34 |
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/System.Reactive.PlatformServices.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/Assets/Plugins/System.Reactive.PlatformServices.dll
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/System.Reactive.PlatformServices.dll.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: dd00727a5612c9945ae81bb9a3edc12f
3 | PluginImporter:
4 | externalObjects: {}
5 | serializedVersion: 2
6 | iconMap: {}
7 | executionOrder: {}
8 | defineConstraints: []
9 | isPreloaded: 0
10 | isOverridable: 0
11 | isExplicitlyReferenced: 0
12 | validateReferences: 1
13 | platformData:
14 | - first:
15 | Any:
16 | second:
17 | enabled: 1
18 | settings: {}
19 | - first:
20 | Editor: Editor
21 | second:
22 | enabled: 0
23 | settings:
24 | DefaultValueInitialized: true
25 | - first:
26 | Windows Store Apps: WindowsStoreApps
27 | second:
28 | enabled: 0
29 | settings:
30 | CPU: AnyCPU
31 | userData:
32 | assetBundleName:
33 | assetBundleVariant:
34 |
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/System.Security.AccessControl.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/Assets/Plugins/System.Security.AccessControl.dll
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/System.Security.AccessControl.dll.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: cfa27481435fe4e4e84396681cdb25af
3 | PluginImporter:
4 | externalObjects: {}
5 | serializedVersion: 2
6 | iconMap: {}
7 | executionOrder: {}
8 | defineConstraints: []
9 | isPreloaded: 0
10 | isOverridable: 0
11 | isExplicitlyReferenced: 0
12 | validateReferences: 1
13 | platformData:
14 | - first:
15 | Any:
16 | second:
17 | enabled: 1
18 | settings: {}
19 | - first:
20 | Editor: Editor
21 | second:
22 | enabled: 0
23 | settings:
24 | DefaultValueInitialized: true
25 | - first:
26 | Windows Store Apps: WindowsStoreApps
27 | second:
28 | enabled: 0
29 | settings:
30 | CPU: AnyCPU
31 | userData:
32 | assetBundleName:
33 | assetBundleVariant:
34 |
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/System.Security.Principal.Windows.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/Assets/Plugins/System.Security.Principal.Windows.dll
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/System.Security.Principal.Windows.dll.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: a210c32462328b64ab10e1009c794024
3 | PluginImporter:
4 | externalObjects: {}
5 | serializedVersion: 2
6 | iconMap: {}
7 | executionOrder: {}
8 | defineConstraints: []
9 | isPreloaded: 0
10 | isOverridable: 0
11 | isExplicitlyReferenced: 0
12 | validateReferences: 1
13 | platformData:
14 | - first:
15 | Any:
16 | second:
17 | enabled: 1
18 | settings: {}
19 | - first:
20 | Editor: Editor
21 | second:
22 | enabled: 0
23 | settings:
24 | DefaultValueInitialized: true
25 | - first:
26 | Windows Store Apps: WindowsStoreApps
27 | second:
28 | enabled: 0
29 | settings:
30 | CPU: AnyCPU
31 | userData:
32 | assetBundleName:
33 | assetBundleVariant:
34 |
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/TrignoLite.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/Assets/Plugins/TrignoLite.dll
--------------------------------------------------------------------------------
/Unity/Assets/Plugins/TrignoLite.dll.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: e01d815a56826714296a8969efc5ca09
3 | PluginImporter:
4 | externalObjects: {}
5 | serializedVersion: 2
6 | iconMap: {}
7 | executionOrder: {}
8 | defineConstraints: []
9 | isPreloaded: 0
10 | isOverridable: 0
11 | isExplicitlyReferenced: 0
12 | validateReferences: 1
13 | platformData:
14 | - first:
15 | Any:
16 | second:
17 | enabled: 1
18 | settings: {}
19 | - first:
20 | Editor: Editor
21 | second:
22 | enabled: 0
23 | settings:
24 | DefaultValueInitialized: true
25 | userData:
26 | assetBundleName:
27 | assetBundleVariant:
28 |
--------------------------------------------------------------------------------
/Unity/Assets/Resources.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: daecdac3771adbd42814faba4f8bd947
3 | folderAsset: yes
4 | DefaultImporter:
5 | externalObjects: {}
6 | userData:
7 | assetBundleName:
8 | assetBundleVariant:
9 |
--------------------------------------------------------------------------------
/Unity/Assets/Resources/BillingMode.json:
--------------------------------------------------------------------------------
1 | {"androidStore":"GooglePlay"}
--------------------------------------------------------------------------------
/Unity/Assets/Resources/BillingMode.json.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 7f47b1d4f5038064c9de68f7a9f07e80
3 | TextScriptImporter:
4 | externalObjects: {}
5 | userData:
6 | assetBundleName:
7 | assetBundleVariant:
8 |
--------------------------------------------------------------------------------
/Unity/Assets/Resources/delsys-logo-web-retina.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/Assets/Resources/delsys-logo-web-retina.png
--------------------------------------------------------------------------------
/Unity/Assets/Resources/delsys-logo-web-retina.png.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: a3b1547958c5d65429c58adbe08a64f2
3 | TextureImporter:
4 | internalIDToNameTable: []
5 | externalObjects: {}
6 | serializedVersion: 11
7 | mipmaps:
8 | mipMapMode: 0
9 | enableMipMap: 1
10 | sRGBTexture: 1
11 | linearTexture: 0
12 | fadeOut: 0
13 | borderMipMap: 0
14 | mipMapsPreserveCoverage: 0
15 | alphaTestReferenceValue: 0.5
16 | mipMapFadeDistanceStart: 1
17 | mipMapFadeDistanceEnd: 3
18 | bumpmap:
19 | convertToNormalMap: 0
20 | externalNormalMap: 0
21 | heightScale: 0.25
22 | normalMapFilter: 0
23 | isReadable: 0
24 | streamingMipmaps: 0
25 | streamingMipmapsPriority: 0
26 | grayScaleToAlpha: 0
27 | generateCubemap: 6
28 | cubemapConvolution: 0
29 | seamlessCubemap: 0
30 | textureFormat: 1
31 | maxTextureSize: 2048
32 | textureSettings:
33 | serializedVersion: 2
34 | filterMode: 1
35 | aniso: 1
36 | mipBias: 0
37 | wrapU: 0
38 | wrapV: 0
39 | wrapW: 0
40 | nPOTScale: 1
41 | lightmap: 0
42 | compressionQuality: 50
43 | spriteMode: 0
44 | spriteExtrude: 1
45 | spriteMeshType: 1
46 | alignment: 0
47 | spritePivot: {x: 0.5, y: 0.5}
48 | spritePixelsToUnits: 100
49 | spriteBorder: {x: 0, y: 0, z: 0, w: 0}
50 | spriteGenerateFallbackPhysicsShape: 1
51 | alphaUsage: 1
52 | alphaIsTransparency: 0
53 | spriteTessellationDetail: -1
54 | textureType: 0
55 | textureShape: 1
56 | singleChannelComponent: 0
57 | maxTextureSizeSet: 0
58 | compressionQualitySet: 0
59 | textureFormatSet: 0
60 | applyGammaDecoding: 0
61 | platformSettings:
62 | - serializedVersion: 3
63 | buildTarget: DefaultTexturePlatform
64 | maxTextureSize: 2048
65 | resizeAlgorithm: 0
66 | textureFormat: -1
67 | textureCompression: 1
68 | compressionQuality: 50
69 | crunchedCompression: 0
70 | allowsAlphaSplitting: 0
71 | overridden: 0
72 | androidETC2FallbackOverride: 0
73 | forceMaximumCompressionQuality_BC6H_BC7: 0
74 | spriteSheet:
75 | serializedVersion: 2
76 | sprites: []
77 | outline: []
78 | physicsShape: []
79 | bones: []
80 | spriteID:
81 | internalID: 0
82 | vertices: []
83 | indices:
84 | edges: []
85 | weights: []
86 | secondaryTextures: []
87 | spritePackingTag:
88 | pSDRemoveMatte: 0
89 | pSDShowRemoveMatteOption: 0
90 | userData:
91 | assetBundleName:
92 | assetBundleVariant:
93 |
--------------------------------------------------------------------------------
/Unity/Assets/Scenes.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 12f1cde448f4da048852700024ba78b8
3 | folderAsset: yes
4 | DefaultImporter:
5 | externalObjects: {}
6 | userData:
7 | assetBundleName:
8 | assetBundleVariant:
9 |
--------------------------------------------------------------------------------
/Unity/Assets/Scenes/SampleScene.unity.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: b9388f7c8fe60b844810937241870fdc
3 | DefaultImporter:
4 | externalObjects: {}
5 | userData:
6 | assetBundleName:
7 | assetBundleVariant:
8 |
--------------------------------------------------------------------------------
/Unity/Assets/Status.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/Assets/Status.png
--------------------------------------------------------------------------------
/Unity/Assets/Status.png.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: f4d70900eac6657468f64591bf49cc23
3 | TextureImporter:
4 | internalIDToNameTable: []
5 | externalObjects: {}
6 | serializedVersion: 11
7 | mipmaps:
8 | mipMapMode: 0
9 | enableMipMap: 1
10 | sRGBTexture: 1
11 | linearTexture: 0
12 | fadeOut: 0
13 | borderMipMap: 0
14 | mipMapsPreserveCoverage: 0
15 | alphaTestReferenceValue: 0.5
16 | mipMapFadeDistanceStart: 1
17 | mipMapFadeDistanceEnd: 3
18 | bumpmap:
19 | convertToNormalMap: 0
20 | externalNormalMap: 0
21 | heightScale: 0.25
22 | normalMapFilter: 0
23 | isReadable: 0
24 | streamingMipmaps: 0
25 | streamingMipmapsPriority: 0
26 | grayScaleToAlpha: 0
27 | generateCubemap: 6
28 | cubemapConvolution: 0
29 | seamlessCubemap: 0
30 | textureFormat: 1
31 | maxTextureSize: 2048
32 | textureSettings:
33 | serializedVersion: 2
34 | filterMode: 0
35 | aniso: 1
36 | mipBias: 0
37 | wrapU: 0
38 | wrapV: 0
39 | wrapW: 0
40 | nPOTScale: 0
41 | lightmap: 0
42 | compressionQuality: 50
43 | spriteMode: 3
44 | spriteExtrude: 1
45 | spriteMeshType: 1
46 | alignment: 0
47 | spritePivot: {x: 0.5, y: 0.5}
48 | spritePixelsToUnits: 4
49 | spriteBorder: {x: 0, y: 0, z: 0, w: 0}
50 | spriteGenerateFallbackPhysicsShape: 1
51 | alphaUsage: 1
52 | alphaIsTransparency: 0
53 | spriteTessellationDetail: -1
54 | textureType: 8
55 | textureShape: 1
56 | singleChannelComponent: 0
57 | maxTextureSizeSet: 0
58 | compressionQualitySet: 0
59 | textureFormatSet: 0
60 | applyGammaDecoding: 0
61 | platformSettings:
62 | - serializedVersion: 3
63 | buildTarget: DefaultTexturePlatform
64 | maxTextureSize: 2048
65 | resizeAlgorithm: 0
66 | textureFormat: 4
67 | textureCompression: 1
68 | compressionQuality: 50
69 | crunchedCompression: 0
70 | allowsAlphaSplitting: 0
71 | overridden: 0
72 | androidETC2FallbackOverride: 0
73 | forceMaximumCompressionQuality_BC6H_BC7: 0
74 | spriteSheet:
75 | serializedVersion: 2
76 | sprites: []
77 | outline:
78 | - - {x: -2, y: -2}
79 | - {x: 2, y: -2}
80 | - {x: 2, y: 2}
81 | - {x: -2, y: 2}
82 | physicsShape:
83 | - - {x: -2, y: -2}
84 | - {x: 2, y: -2}
85 | - {x: 2, y: 2}
86 | - {x: -2, y: 2}
87 | bones: []
88 | spriteID: 5e97eb03825dee720800000000000000
89 | internalID: 0
90 | vertices: []
91 | indices:
92 | edges: []
93 | weights: []
94 | secondaryTextures: []
95 | spritePackingTag:
96 | pSDRemoveMatte: 0
97 | pSDShowRemoveMatteOption: 0
98 | userData:
99 | assetBundleName:
100 | assetBundleVariant:
101 |
--------------------------------------------------------------------------------
/Unity/Assets/StreamingAssets.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 6341b7479d4456749b1e675137693ef0
3 | folderAsset: yes
4 | DefaultImporter:
5 | externalObjects: {}
6 | userData:
7 | assetBundleName:
8 | assetBundleVariant:
9 |
--------------------------------------------------------------------------------
/Unity/Assets/StreamingAssets/SiUSBXp.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/Assets/StreamingAssets/SiUSBXp.dll
--------------------------------------------------------------------------------
/Unity/Assets/StreamingAssets/SiUSBXp.dll.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: eef5f064a54f90647bdc01ae86dd14d0
3 | DefaultImporter:
4 | externalObjects: {}
5 | userData:
6 | assetBundleName:
7 | assetBundleVariant:
8 |
--------------------------------------------------------------------------------
/Unity/Assets/UnityExample.cs.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 6df0ba70702de1a439b2b5f50621f7cb
3 | MonoImporter:
4 | externalObjects: {}
5 | serializedVersion: 2
6 | defaultReferences: []
7 | executionOrder: 0
8 | icon: {instanceID: 0}
9 | userData:
10 | assetBundleName:
11 | assetBundleVariant:
12 |
--------------------------------------------------------------------------------
/Unity/Assets/XR.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: b881114db69582446adaea811583822f
3 | folderAsset: yes
4 | DefaultImporter:
5 | externalObjects: {}
6 | userData:
7 | assetBundleName:
8 | assetBundleVariant:
9 |
--------------------------------------------------------------------------------
/Unity/Assets/XR/Loaders.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: e285638f0177cca48acc82a2dd1965cb
3 | folderAsset: yes
4 | DefaultImporter:
5 | externalObjects: {}
6 | userData:
7 | assetBundleName:
8 | assetBundleVariant:
9 |
--------------------------------------------------------------------------------
/Unity/Assets/XR/Settings.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 8d90bea5d089c1141a22638a5858d139
3 | folderAsset: yes
4 | DefaultImporter:
5 | externalObjects: {}
6 | userData:
7 | assetBundleName:
8 | assetBundleVariant:
9 |
--------------------------------------------------------------------------------
/Unity/Assets/delsys-api-logo2-01.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/Assets/delsys-api-logo2-01.png
--------------------------------------------------------------------------------
/Unity/Assets/delsys-api-logo2-01.png.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 4966962386ee98844aa46404f3f00fa8
3 | TextureImporter:
4 | internalIDToNameTable: []
5 | externalObjects: {}
6 | serializedVersion: 11
7 | mipmaps:
8 | mipMapMode: 0
9 | enableMipMap: 1
10 | sRGBTexture: 1
11 | linearTexture: 0
12 | fadeOut: 0
13 | borderMipMap: 0
14 | mipMapsPreserveCoverage: 0
15 | alphaTestReferenceValue: 0.5
16 | mipMapFadeDistanceStart: 1
17 | mipMapFadeDistanceEnd: 3
18 | bumpmap:
19 | convertToNormalMap: 0
20 | externalNormalMap: 0
21 | heightScale: 0.25
22 | normalMapFilter: 0
23 | isReadable: 0
24 | streamingMipmaps: 0
25 | streamingMipmapsPriority: 0
26 | grayScaleToAlpha: 0
27 | generateCubemap: 6
28 | cubemapConvolution: 0
29 | seamlessCubemap: 0
30 | textureFormat: 1
31 | maxTextureSize: 2048
32 | textureSettings:
33 | serializedVersion: 2
34 | filterMode: 1
35 | aniso: 1
36 | mipBias: 0
37 | wrapU: 0
38 | wrapV: 0
39 | wrapW: 0
40 | nPOTScale: 1
41 | lightmap: 0
42 | compressionQuality: 50
43 | spriteMode: 0
44 | spriteExtrude: 1
45 | spriteMeshType: 1
46 | alignment: 0
47 | spritePivot: {x: 0.5, y: 0.5}
48 | spritePixelsToUnits: 100
49 | spriteBorder: {x: 0, y: 0, z: 0, w: 0}
50 | spriteGenerateFallbackPhysicsShape: 1
51 | alphaUsage: 1
52 | alphaIsTransparency: 0
53 | spriteTessellationDetail: -1
54 | textureType: 0
55 | textureShape: 1
56 | singleChannelComponent: 0
57 | maxTextureSizeSet: 0
58 | compressionQualitySet: 0
59 | textureFormatSet: 0
60 | applyGammaDecoding: 0
61 | platformSettings:
62 | - serializedVersion: 3
63 | buildTarget: DefaultTexturePlatform
64 | maxTextureSize: 2048
65 | resizeAlgorithm: 0
66 | textureFormat: -1
67 | textureCompression: 1
68 | compressionQuality: 50
69 | crunchedCompression: 0
70 | allowsAlphaSplitting: 0
71 | overridden: 0
72 | androidETC2FallbackOverride: 0
73 | forceMaximumCompressionQuality_BC6H_BC7: 0
74 | spriteSheet:
75 | serializedVersion: 2
76 | sprites: []
77 | outline: []
78 | physicsShape: []
79 | bones: []
80 | spriteID:
81 | internalID: 0
82 | vertices: []
83 | indices:
84 | edges: []
85 | weights: []
86 | secondaryTextures: []
87 | spritePackingTag:
88 | pSDRemoveMatte: 0
89 | pSDShowRemoveMatteOption: 0
90 | userData:
91 | assetBundleName:
92 | assetBundleVariant:
93 |
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample.exe
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/Assembly-CSharp.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/Assembly-CSharp.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/DelsysAPI.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/DelsysAPI.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/MathNet.Numerics.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/MathNet.Numerics.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/Mono.Posix.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/Mono.Posix.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/Mono.Security.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/Mono.Security.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/Plugin.BLE.Abstractions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/Plugin.BLE.Abstractions.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/Plugin.BLE.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/Plugin.BLE.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/Portable.Licensing.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/Portable.Licensing.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/Stateless.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/Stateless.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Collections.Concurrent.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Collections.Concurrent.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Collections.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Collections.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.ComponentModel.Composition.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.ComponentModel.Composition.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Configuration.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Configuration.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Core.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Core.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Diagnostics.Debug.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Diagnostics.Debug.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.IO.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.IO.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Linq.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Linq.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Numerics.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Numerics.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Reflection.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Reflection.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Resources.ResourceManager.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Resources.ResourceManager.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Runtime.Extensions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Runtime.Extensions.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Runtime.InteropServices.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Runtime.InteropServices.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Runtime.Serialization.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Runtime.Serialization.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Runtime.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Runtime.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Security.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Security.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.ServiceModel.Internals.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.ServiceModel.Internals.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Text.Encoding.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Text.Encoding.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Threading.Tasks.Parallel.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Threading.Tasks.Parallel.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Threading.Tasks.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Threading.Tasks.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Threading.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Threading.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Xml.Linq.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Xml.Linq.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Xml.XDocument.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Xml.XDocument.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Xml.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.Xml.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/System.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/Unity.Analytics.DataPrivacy.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/Unity.Analytics.DataPrivacy.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/Unity.TextMeshPro.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/Unity.TextMeshPro.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/Unity.Timeline.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/Unity.Timeline.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.AIModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.AIModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.ARModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.ARModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.AccessibilityModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.AccessibilityModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.AnimationModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.AnimationModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.AssetBundleModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.AssetBundleModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.AudioModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.AudioModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.ClothModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.ClothModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.ClusterInputModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.ClusterInputModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.ClusterRendererModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.ClusterRendererModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.CoreModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.CoreModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.CrashReportingModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.CrashReportingModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.DirectorModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.DirectorModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.FileSystemHttpModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.FileSystemHttpModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.GameCenterModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.GameCenterModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.GridModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.GridModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.HotReloadModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.HotReloadModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.IMGUIModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.IMGUIModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.ImageConversionModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.ImageConversionModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.InputModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.InputModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.JSONSerializeModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.JSONSerializeModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.LocalizationModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.LocalizationModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.ParticleSystemModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.ParticleSystemModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.PerformanceReportingModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.PerformanceReportingModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.Physics2DModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.Physics2DModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.PhysicsModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.PhysicsModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.ProfilerModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.ProfilerModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.Purchasing.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.Purchasing.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.ScreenCaptureModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.ScreenCaptureModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.SharedInternalsModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.SharedInternalsModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.SpatialTracking.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.SpatialTracking.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.SpriteMaskModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.SpriteMaskModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.SpriteShapeModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.SpriteShapeModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.StreamingModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.StreamingModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.StyleSheetsModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.StyleSheetsModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.SubstanceModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.SubstanceModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.TLSModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.TLSModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.TerrainModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.TerrainModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.TerrainPhysicsModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.TerrainPhysicsModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.TextCoreModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.TextCoreModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.TextRenderingModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.TextRenderingModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.TilemapModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.TilemapModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.UI.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.UI.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.UIElementsModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.UIElementsModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.UIModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.UIModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.UNETModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.UNETModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.UmbraModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.UmbraModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.UnityAnalyticsModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.UnityAnalyticsModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.UnityConnectModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.UnityConnectModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.UnityTestProtocolModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.UnityTestProtocolModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.UnityWebRequestAssetBundleModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.UnityWebRequestAssetBundleModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.UnityWebRequestAudioModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.UnityWebRequestAudioModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.UnityWebRequestModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.UnityWebRequestModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.UnityWebRequestTextureModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.UnityWebRequestTextureModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.UnityWebRequestWWWModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.UnityWebRequestWWWModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.VFXModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.VFXModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.VRModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.VRModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.VehiclesModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.VehiclesModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.VideoModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.VideoModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.WindModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.WindModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.XR.LegacyInputHelpers.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.XR.LegacyInputHelpers.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.XRModule.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.XRModule.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/UnityEngine.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/com.unity.multiplayer-hlapi.Runtime.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/com.unity.multiplayer-hlapi.Runtime.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/mscorlib.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Managed/mscorlib.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Plugins/SiUSBXp.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Plugins/SiUSBXp.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Resources/unity default resources:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Resources/unity default resources
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Resources/unity_builtin_extra:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/Resources/unity_builtin_extra
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/StreamingAssets/SiUSBXp.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/StreamingAssets/SiUSBXp.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/app.info:
--------------------------------------------------------------------------------
1 | Delsys Inc.
2 | DelsysAPI-UnityExample
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/boot.config:
--------------------------------------------------------------------------------
1 | gfx-enable-native-gfx-jobs=
2 | wait-for-native-debugger=0
3 | scripting-runtime-version=latest
4 | vr-enabled=0
5 | hdr-display-enabled=0
6 |
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/globalgamemanagers:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/globalgamemanagers
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/globalgamemanagers.assets:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/globalgamemanagers.assets
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/level0:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/level0
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/level0.resS:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/level0.resS
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/resources.assets:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/resources.assets
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/sharedassets0.assets:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/sharedassets0.assets
--------------------------------------------------------------------------------
/Unity/BuildVersions/DelsysAPI-UnityExample_Data/sharedassets0.assets.resS:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/DelsysAPI-UnityExample_Data/sharedassets0.assets.resS
--------------------------------------------------------------------------------
/Unity/BuildVersions/MonoBleedingEdge/EmbedRuntime/MonoPosixHelper.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/MonoBleedingEdge/EmbedRuntime/MonoPosixHelper.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/MonoBleedingEdge/EmbedRuntime/mono-2.0-bdwgc.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/MonoBleedingEdge/EmbedRuntime/mono-2.0-bdwgc.dll
--------------------------------------------------------------------------------
/Unity/BuildVersions/MonoBleedingEdge/etc/mono/2.0/Browsers/Compat.browser:
--------------------------------------------------------------------------------
1 |
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 |
38 |
39 |
40 |
41 |
42 |
--------------------------------------------------------------------------------
/Unity/BuildVersions/MonoBleedingEdge/etc/mono/2.0/settings.map:
--------------------------------------------------------------------------------
1 |
2 |
3 |
25 |
26 |
48 |
49 |
--------------------------------------------------------------------------------
/Unity/BuildVersions/MonoBleedingEdge/etc/mono/4.0/Browsers/Compat.browser:
--------------------------------------------------------------------------------
1 |
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 |
38 |
39 |
40 |
41 |
42 |
--------------------------------------------------------------------------------
/Unity/BuildVersions/MonoBleedingEdge/etc/mono/4.0/settings.map:
--------------------------------------------------------------------------------
1 |
2 |
3 |
25 |
26 |
48 |
49 |
--------------------------------------------------------------------------------
/Unity/BuildVersions/MonoBleedingEdge/etc/mono/4.5/Browsers/Compat.browser:
--------------------------------------------------------------------------------
1 |
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 |
38 |
39 |
40 |
41 |
42 |
--------------------------------------------------------------------------------
/Unity/BuildVersions/MonoBleedingEdge/etc/mono/browscap.ini:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/MonoBleedingEdge/etc/mono/browscap.ini
--------------------------------------------------------------------------------
/Unity/BuildVersions/UnityCrashHandler32.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/UnityCrashHandler32.exe
--------------------------------------------------------------------------------
/Unity/BuildVersions/UnityPlayer.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/BuildVersions/UnityPlayer.dll
--------------------------------------------------------------------------------
/Unity/Packages/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "dependencies": {
3 | "com.unity.2d.sprite": "1.0.0",
4 | "com.unity.2d.tilemap": "1.0.0",
5 | "com.unity.ads": "3.7.5",
6 | "com.unity.analytics": "3.6.12",
7 | "com.unity.collab-proxy": "1.15.15",
8 | "com.unity.ide.rider": "3.0.13",
9 | "com.unity.ide.visualstudio": "2.0.14",
10 | "com.unity.ide.vscode": "1.2.5",
11 | "com.unity.purchasing": "4.1.3",
12 | "com.unity.test-framework": "1.1.31",
13 | "com.unity.textmeshpro": "3.0.6",
14 | "com.unity.timeline": "1.6.4",
15 | "com.unity.ugui": "1.0.0",
16 | "com.unity.xr.legacyinputhelpers": "2.1.9",
17 | "com.unity.modules.ai": "1.0.0",
18 | "com.unity.modules.androidjni": "1.0.0",
19 | "com.unity.modules.animation": "1.0.0",
20 | "com.unity.modules.assetbundle": "1.0.0",
21 | "com.unity.modules.audio": "1.0.0",
22 | "com.unity.modules.cloth": "1.0.0",
23 | "com.unity.modules.director": "1.0.0",
24 | "com.unity.modules.imageconversion": "1.0.0",
25 | "com.unity.modules.imgui": "1.0.0",
26 | "com.unity.modules.jsonserialize": "1.0.0",
27 | "com.unity.modules.particlesystem": "1.0.0",
28 | "com.unity.modules.physics": "1.0.0",
29 | "com.unity.modules.physics2d": "1.0.0",
30 | "com.unity.modules.screencapture": "1.0.0",
31 | "com.unity.modules.terrain": "1.0.0",
32 | "com.unity.modules.terrainphysics": "1.0.0",
33 | "com.unity.modules.tilemap": "1.0.0",
34 | "com.unity.modules.ui": "1.0.0",
35 | "com.unity.modules.uielements": "1.0.0",
36 | "com.unity.modules.umbra": "1.0.0",
37 | "com.unity.modules.unityanalytics": "1.0.0",
38 | "com.unity.modules.unitywebrequest": "1.0.0",
39 | "com.unity.modules.unitywebrequestassetbundle": "1.0.0",
40 | "com.unity.modules.unitywebrequestaudio": "1.0.0",
41 | "com.unity.modules.unitywebrequesttexture": "1.0.0",
42 | "com.unity.modules.unitywebrequestwww": "1.0.0",
43 | "com.unity.modules.vehicles": "1.0.0",
44 | "com.unity.modules.video": "1.0.0",
45 | "com.unity.modules.vr": "1.0.0",
46 | "com.unity.modules.wind": "1.0.0",
47 | "com.unity.modules.xr": "1.0.0"
48 | }
49 | }
50 |
--------------------------------------------------------------------------------
/Unity/ProjectSettings/AudioManager.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!11 &1
4 | AudioManager:
5 | m_ObjectHideFlags: 0
6 | m_Volume: 1
7 | Rolloff Scale: 1
8 | Doppler Factor: 1
9 | Default Speaker Mode: 2
10 | m_SampleRate: 0
11 | m_DSPBufferSize: 1024
12 | m_VirtualVoiceCount: 512
13 | m_RealVoiceCount: 32
14 | m_SpatializerPlugin:
15 | m_AmbisonicDecoderPlugin:
16 | m_DisableAudio: 0
17 | m_VirtualizeEffects: 1
18 |
--------------------------------------------------------------------------------
/Unity/ProjectSettings/ClusterInputManager.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!236 &1
4 | ClusterInputManager:
5 | m_ObjectHideFlags: 0
6 | m_Inputs: []
7 |
--------------------------------------------------------------------------------
/Unity/ProjectSettings/DynamicsManager.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!55 &1
4 | PhysicsManager:
5 | m_ObjectHideFlags: 0
6 | serializedVersion: 8
7 | m_Gravity: {x: 0, y: -9.81, z: 0}
8 | m_DefaultMaterial: {fileID: 0}
9 | m_BounceThreshold: 2
10 | m_SleepThreshold: 0.005
11 | m_DefaultContactOffset: 0.01
12 | m_DefaultSolverIterations: 6
13 | m_DefaultSolverVelocityIterations: 1
14 | m_QueriesHitBackfaces: 0
15 | m_QueriesHitTriggers: 1
16 | m_EnableAdaptiveForce: 0
17 | m_ClothInterCollisionDistance: 0
18 | m_ClothInterCollisionStiffness: 0
19 | m_ContactsGeneration: 1
20 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
21 | m_AutoSimulation: 1
22 | m_AutoSyncTransforms: 0
23 | m_ReuseCollisionCallbacks: 1
24 | m_ClothInterCollisionSettingsToggle: 0
25 | m_ContactPairsMode: 0
26 | m_BroadphaseType: 0
27 | m_WorldBounds:
28 | m_Center: {x: 0, y: 0, z: 0}
29 | m_Extent: {x: 250, y: 250, z: 250}
30 | m_WorldSubdivisions: 8
31 |
--------------------------------------------------------------------------------
/Unity/ProjectSettings/EditorBuildSettings.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!1045 &1
4 | EditorBuildSettings:
5 | m_ObjectHideFlags: 0
6 | serializedVersion: 2
7 | m_Scenes:
8 | - enabled: 0
9 | path:
10 | guid: 00000000000000000000000000000000
11 | m_configObjects: {}
12 |
--------------------------------------------------------------------------------
/Unity/ProjectSettings/EditorSettings.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!159 &1
4 | EditorSettings:
5 | m_ObjectHideFlags: 0
6 | serializedVersion: 9
7 | m_ExternalVersionControlSupport: Visible Meta Files
8 | m_SerializationMode: 2
9 | m_LineEndingsForNewScripts: 2
10 | m_DefaultBehaviorMode: 0
11 | m_PrefabRegularEnvironment: {fileID: 0}
12 | m_PrefabUIEnvironment: {fileID: 0}
13 | m_SpritePackerMode: 0
14 | m_SpritePackerPaddingPower: 1
15 | m_EtcTextureCompressorBehavior: 1
16 | m_EtcTextureFastCompressor: 1
17 | m_EtcTextureNormalCompressor: 2
18 | m_EtcTextureBestCompressor: 4
19 | m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd;asmref
20 | m_ProjectGenerationRootNamespace:
21 | m_CollabEditorSettings:
22 | inProgressEnabled: 1
23 | m_EnableTextureStreamingInEditMode: 1
24 | m_EnableTextureStreamingInPlayMode: 1
25 | m_AsyncShaderCompilation: 1
26 | m_EnterPlayModeOptionsEnabled: 1
27 | m_EnterPlayModeOptions: 1
28 | m_ShowLightmapResolutionOverlay: 1
29 | m_UseLegacyProbeSampleCount: 1
30 | m_AssetPipelineMode: 1
31 | m_CacheServerMode: 0
32 | m_CacheServerEndpoint:
33 | m_CacheServerNamespacePrefix: default
34 | m_CacheServerEnableDownload: 1
35 | m_CacheServerEnableUpload: 1
36 |
--------------------------------------------------------------------------------
/Unity/ProjectSettings/GraphicsSettings.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!30 &1
4 | GraphicsSettings:
5 | m_ObjectHideFlags: 0
6 | serializedVersion: 12
7 | m_Deferred:
8 | m_Mode: 1
9 | m_Shader: {fileID: 69, guid: 0000000000000000f000000000000000, type: 0}
10 | m_DeferredReflections:
11 | m_Mode: 1
12 | m_Shader: {fileID: 74, guid: 0000000000000000f000000000000000, type: 0}
13 | m_ScreenSpaceShadows:
14 | m_Mode: 1
15 | m_Shader: {fileID: 64, guid: 0000000000000000f000000000000000, type: 0}
16 | m_LegacyDeferred:
17 | m_Mode: 1
18 | m_Shader: {fileID: 63, guid: 0000000000000000f000000000000000, type: 0}
19 | m_DepthNormals:
20 | m_Mode: 1
21 | m_Shader: {fileID: 62, guid: 0000000000000000f000000000000000, type: 0}
22 | m_MotionVectors:
23 | m_Mode: 1
24 | m_Shader: {fileID: 75, guid: 0000000000000000f000000000000000, type: 0}
25 | m_LightHalo:
26 | m_Mode: 1
27 | m_Shader: {fileID: 105, guid: 0000000000000000f000000000000000, type: 0}
28 | m_LensFlare:
29 | m_Mode: 1
30 | m_Shader: {fileID: 102, guid: 0000000000000000f000000000000000, type: 0}
31 | m_AlwaysIncludedShaders:
32 | - {fileID: 7, guid: 0000000000000000f000000000000000, type: 0}
33 | - {fileID: 15104, guid: 0000000000000000f000000000000000, type: 0}
34 | - {fileID: 15105, guid: 0000000000000000f000000000000000, type: 0}
35 | - {fileID: 15106, guid: 0000000000000000f000000000000000, type: 0}
36 | - {fileID: 10753, guid: 0000000000000000f000000000000000, type: 0}
37 | - {fileID: 10770, guid: 0000000000000000f000000000000000, type: 0}
38 | - {fileID: 10783, guid: 0000000000000000f000000000000000, type: 0}
39 | - {fileID: 16000, guid: 0000000000000000f000000000000000, type: 0}
40 | - {fileID: 17000, guid: 0000000000000000f000000000000000, type: 0}
41 | - {fileID: 16001, guid: 0000000000000000f000000000000000, type: 0}
42 | m_PreloadedShaders: []
43 | m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000,
44 | type: 0}
45 | m_CustomRenderPipeline: {fileID: 0}
46 | m_TransparencySortMode: 0
47 | m_TransparencySortAxis: {x: 0, y: 0, z: 1}
48 | m_DefaultRenderingPath: 1
49 | m_DefaultMobileRenderingPath: 1
50 | m_TierSettings: []
51 | m_LightmapStripping: 0
52 | m_FogStripping: 0
53 | m_InstancingStripping: 0
54 | m_LightmapKeepPlain: 1
55 | m_LightmapKeepDirCombined: 1
56 | m_LightmapKeepDynamicPlain: 1
57 | m_LightmapKeepDynamicDirCombined: 1
58 | m_LightmapKeepShadowMask: 1
59 | m_LightmapKeepSubtractive: 1
60 | m_FogKeepLinear: 1
61 | m_FogKeepExp: 1
62 | m_FogKeepExp2: 1
63 | m_AlbedoSwatchInfos: []
64 | m_LightsUseLinearIntensity: 0
65 | m_LightsUseColorTemperature: 0
66 |
--------------------------------------------------------------------------------
/Unity/ProjectSettings/MemorySettings.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!387306366 &1
4 | MemorySettings:
5 | m_ObjectHideFlags: 0
6 | m_EditorMemorySettings:
7 | m_MainAllocatorBlockSize: -1
8 | m_ThreadAllocatorBlockSize: -1
9 | m_MainGfxBlockSize: -1
10 | m_ThreadGfxBlockSize: -1
11 | m_CacheBlockSize: -1
12 | m_TypetreeBlockSize: -1
13 | m_ProfilerBlockSize: -1
14 | m_ProfilerEditorBlockSize: -1
15 | m_BucketAllocatorGranularity: -1
16 | m_BucketAllocatorBucketsCount: -1
17 | m_BucketAllocatorBlockSize: -1
18 | m_BucketAllocatorBlockCount: -1
19 | m_ProfilerBucketAllocatorGranularity: -1
20 | m_ProfilerBucketAllocatorBucketsCount: -1
21 | m_ProfilerBucketAllocatorBlockSize: -1
22 | m_ProfilerBucketAllocatorBlockCount: -1
23 | m_TempAllocatorSizeMain: -1
24 | m_JobTempAllocatorBlockSize: -1
25 | m_BackgroundJobTempAllocatorBlockSize: -1
26 | m_JobTempAllocatorReducedBlockSize: -1
27 | m_TempAllocatorSizeGIBakingWorker: -1
28 | m_TempAllocatorSizeNavMeshWorker: -1
29 | m_TempAllocatorSizeAudioWorker: -1
30 | m_TempAllocatorSizeCloudWorker: -1
31 | m_TempAllocatorSizeGfx: -1
32 | m_TempAllocatorSizeJobWorker: -1
33 | m_TempAllocatorSizeBackgroundWorker: -1
34 | m_TempAllocatorSizePreloadManager: -1
35 | m_PlatformMemorySettings: {}
36 |
--------------------------------------------------------------------------------
/Unity/ProjectSettings/NavMeshAreas.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!126 &1
4 | NavMeshProjectSettings:
5 | m_ObjectHideFlags: 0
6 | serializedVersion: 2
7 | areas:
8 | - name: Walkable
9 | cost: 1
10 | - name: Not Walkable
11 | cost: 1
12 | - name: Jump
13 | cost: 2
14 | - name:
15 | cost: 1
16 | - name:
17 | cost: 1
18 | - name:
19 | cost: 1
20 | - name:
21 | cost: 1
22 | - name:
23 | cost: 1
24 | - name:
25 | cost: 1
26 | - name:
27 | cost: 1
28 | - name:
29 | cost: 1
30 | - name:
31 | cost: 1
32 | - name:
33 | cost: 1
34 | - name:
35 | cost: 1
36 | - name:
37 | cost: 1
38 | - name:
39 | cost: 1
40 | - name:
41 | cost: 1
42 | - name:
43 | cost: 1
44 | - name:
45 | cost: 1
46 | - name:
47 | cost: 1
48 | - name:
49 | cost: 1
50 | - name:
51 | cost: 1
52 | - name:
53 | cost: 1
54 | - name:
55 | cost: 1
56 | - name:
57 | cost: 1
58 | - name:
59 | cost: 1
60 | - name:
61 | cost: 1
62 | - name:
63 | cost: 1
64 | - name:
65 | cost: 1
66 | - name:
67 | cost: 1
68 | - name:
69 | cost: 1
70 | - name:
71 | cost: 1
72 | m_LastAgentTypeID: -887442657
73 | m_Settings:
74 | - serializedVersion: 2
75 | agentTypeID: 0
76 | agentRadius: 0.5
77 | agentHeight: 2
78 | agentSlope: 45
79 | agentClimb: 0.75
80 | ledgeDropHeight: 0
81 | maxJumpAcrossDistance: 0
82 | minRegionArea: 2
83 | manualCellSize: 0
84 | cellSize: 0.16666667
85 | manualTileSize: 0
86 | tileSize: 256
87 | accuratePlacement: 0
88 | debug:
89 | m_Flags: 0
90 | m_SettingNames:
91 | - Humanoid
92 |
--------------------------------------------------------------------------------
/Unity/ProjectSettings/NetworkManager.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!149 &1
4 | NetworkManager:
5 | m_ObjectHideFlags: 0
6 | m_DebugLevel: 0
7 | m_Sendrate: 15
8 | m_AssetToPrefab: {}
9 |
--------------------------------------------------------------------------------
/Unity/ProjectSettings/PackageManagerSettings.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!114 &1
4 | MonoBehaviour:
5 | m_ObjectHideFlags: 61
6 | m_CorrespondingSourceObject: {fileID: 0}
7 | m_PrefabInstance: {fileID: 0}
8 | m_PrefabAsset: {fileID: 0}
9 | m_GameObject: {fileID: 0}
10 | m_Enabled: 1
11 | m_EditorHideFlags: 0
12 | m_Script: {fileID: 13964, guid: 0000000000000000e000000000000000, type: 0}
13 | m_Name:
14 | m_EditorClassIdentifier:
15 | m_ScopedRegistriesSettingsExpanded: 1
16 | oneTimeWarningShown: 0
17 | m_Registries:
18 | - m_Id: main
19 | m_Name:
20 | m_Url: https://packages.unity.com
21 | m_Scopes: []
22 | m_IsDefault: 1
23 | m_UserSelectedRegistryName:
24 | m_UserAddingNewScopedRegistry: 0
25 | m_RegistryInfoDraft:
26 | m_ErrorMessage:
27 | m_Original:
28 | m_Id:
29 | m_Name:
30 | m_Url:
31 | m_Scopes: []
32 | m_IsDefault: 0
33 | m_Modified: 0
34 | m_Name:
35 | m_Url:
36 | m_Scopes:
37 | -
38 | m_SelectedScopeIndex: 0
39 |
--------------------------------------------------------------------------------
/Unity/ProjectSettings/Physics2DSettings.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!19 &1
4 | Physics2DSettings:
5 | m_ObjectHideFlags: 0
6 | serializedVersion: 4
7 | m_Gravity: {x: 0, y: -9.81}
8 | m_DefaultMaterial: {fileID: 0}
9 | m_VelocityIterations: 8
10 | m_PositionIterations: 3
11 | m_VelocityThreshold: 1
12 | m_MaxLinearCorrection: 0.2
13 | m_MaxAngularCorrection: 8
14 | m_MaxTranslationSpeed: 100
15 | m_MaxRotationSpeed: 360
16 | m_BaumgarteScale: 0.2
17 | m_BaumgarteTimeOfImpactScale: 0.75
18 | m_TimeToSleep: 0.5
19 | m_LinearSleepTolerance: 0.01
20 | m_AngularSleepTolerance: 2
21 | m_DefaultContactOffset: 0.01
22 | m_AutoSimulation: 1
23 | m_QueriesHitTriggers: 1
24 | m_QueriesStartInColliders: 1
25 | m_ChangeStopsCallbacks: 0
26 | m_CallbacksOnDisable: 1
27 | m_ReuseCollisionCallbacks: 1
28 | m_AutoSyncTransforms: 0
29 | m_AlwaysShowColliders: 0
30 | m_ShowColliderSleep: 1
31 | m_ShowColliderContacts: 0
32 | m_ShowColliderAABB: 0
33 | m_ContactArrowScale: 0.2
34 | m_ColliderAwakeColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.7529412}
35 | m_ColliderAsleepColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.36078432}
36 | m_ColliderContactColor: {r: 1, g: 0, b: 1, a: 0.6862745}
37 | m_ColliderAABBColor: {r: 1, g: 1, b: 0, a: 0.2509804}
38 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
39 |
--------------------------------------------------------------------------------
/Unity/ProjectSettings/PresetManager.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!1386491679 &1
4 | PresetManager:
5 | m_ObjectHideFlags: 0
6 | m_DefaultList:
7 | - type:
8 | m_NativeTypeID: 108
9 | m_ManagedTypePPtr: {fileID: 0}
10 | m_ManagedTypeFallback:
11 | defaultPresets:
12 | - m_Preset: {fileID: 2655988077585873504, guid: c1cf8506f04ef2c4a88b64b6c4202eea,
13 | type: 2}
14 | - type:
15 | m_NativeTypeID: 1020
16 | m_ManagedTypePPtr: {fileID: 0}
17 | m_ManagedTypeFallback:
18 | defaultPresets:
19 | - m_Preset: {fileID: 2655988077585873504, guid: 0cd792cc87e492d43b4e95b205fc5cc6,
20 | type: 2}
21 | - type:
22 | m_NativeTypeID: 1006
23 | m_ManagedTypePPtr: {fileID: 0}
24 | m_ManagedTypeFallback:
25 | defaultPresets:
26 | - m_Preset: {fileID: 2655988077585873504, guid: 7a99f8aa944efe94cb9bd74562b7d5f9,
27 | type: 2}
28 |
--------------------------------------------------------------------------------
/Unity/ProjectSettings/ProjectVersion.txt:
--------------------------------------------------------------------------------
1 | m_EditorVersion: 2021.3.0f1
2 | m_EditorVersionWithRevision: 2021.3.0f1 (6eacc8284459)
3 |
--------------------------------------------------------------------------------
/Unity/ProjectSettings/TagManager.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!78 &1
4 | TagManager:
5 | serializedVersion: 2
6 | tags:
7 | - ScanButton
8 | - StartButton
9 | - StopButton
10 | - SelectButton
11 | - PairButton
12 | layers:
13 | - Default
14 | - TransparentFX
15 | - Ignore Raycast
16 | -
17 | - Water
18 | - UI
19 | -
20 | -
21 | - PostProcessing
22 | -
23 | -
24 | -
25 | -
26 | -
27 | -
28 | -
29 | -
30 | -
31 | -
32 | -
33 | -
34 | -
35 | -
36 | -
37 | -
38 | -
39 | -
40 | -
41 | -
42 | -
43 | -
44 | -
45 | m_SortingLayers:
46 | - name: Default
47 | uniqueID: 0
48 | locked: 0
49 |
--------------------------------------------------------------------------------
/Unity/ProjectSettings/TimeManager.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!5 &1
4 | TimeManager:
5 | m_ObjectHideFlags: 0
6 | Fixed Timestep: 0.02
7 | Maximum Allowed Timestep: 0.1
8 | m_TimeScale: 1
9 | Maximum Particle Timestep: 0.03
10 |
--------------------------------------------------------------------------------
/Unity/ProjectSettings/UnityConnectSettings.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!310 &1
4 | UnityConnectSettings:
5 | m_ObjectHideFlags: 0
6 | serializedVersion: 1
7 | m_Enabled: 1
8 | m_TestMode: 0
9 | m_EventOldUrl: https://api.uca.cloud.unity3d.com/v1/events
10 | m_EventUrl: https://cdp.cloud.unity3d.com/v1/events
11 | m_ConfigUrl: https://config.uca.cloud.unity3d.com
12 | m_TestInitMode: 0
13 | CrashReportingSettings:
14 | m_EventUrl: https://perf-events.cloud.unity3d.com
15 | m_Enabled: 0
16 | m_LogBufferSize: 10
17 | m_CaptureEditorExceptions: 1
18 | UnityPurchasingSettings:
19 | m_Enabled: 0
20 | m_TestMode: 0
21 | UnityAnalyticsSettings:
22 | m_Enabled: 0
23 | m_TestMode: 0
24 | m_InitializeOnStartup: 1
25 | UnityAdsSettings:
26 | m_Enabled: 0
27 | m_InitializeOnStartup: 1
28 | m_TestMode: 0
29 | m_IosGameId:
30 | m_AndroidGameId:
31 | m_GameIds: {}
32 | m_GameId:
33 | PerformanceReportingSettings:
34 | m_Enabled: 0
35 |
--------------------------------------------------------------------------------
/Unity/ProjectSettings/VFXManager.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!937362698 &1
4 | VFXManager:
5 | m_ObjectHideFlags: 0
6 | m_IndirectShader: {fileID: 0}
7 | m_CopyBufferShader: {fileID: 0}
8 | m_SortShader: {fileID: 0}
9 | m_RenderPipeSettingsPath:
10 | m_FixedTimeStep: 0.016666668
11 | m_MaxDeltaTime: 0.05
12 |
--------------------------------------------------------------------------------
/Unity/ProjectSettings/VersionControlSettings.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!890905787 &1
4 | VersionControlSettings:
5 | m_ObjectHideFlags: 0
6 | m_Mode: Visible Meta Files
7 | m_CollabEditorSettings:
8 | inProgressEnabled: 1
9 |
--------------------------------------------------------------------------------
/Unity/ProjectSettings/XRSettings.asset:
--------------------------------------------------------------------------------
1 | {
2 | "m_SettingKeys": [
3 | "VR Device Disabled",
4 | "VR Device User Alert"
5 | ],
6 | "m_SettingValues": [
7 | "False",
8 | "False"
9 | ]
10 | }
--------------------------------------------------------------------------------
/Unity/ProjectSettings/boot.config:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/ProjectSettings/boot.config
--------------------------------------------------------------------------------
/Unity/README.md:
--------------------------------------------------------------------------------
1 | # Delsys API RF integration with Unity
2 |
3 | ## Requirements
4 | 1. Unity version 2021.3.0f1 or greater
5 | 2. DelsysAPI version 2.5.3+
6 | 3. Trigno sensors and Base Station/Lite running on latest firmware. You can follow the guide [here](http://data.delsys.com/DelsysServicePortal/api/web-examples/updating-firmware.html)
7 |
8 | 4. An active DelsysAPI key/license. Contact [support](https://delsys.com/support/) if you have any issues.
9 |
10 | ## Description of the Sample App using Delsys API in RF mode:
11 | 1. Open ..\Assets\UnityExample.cs and paste key/license strings (lines 22-23)
12 | 1. Open project in Unity Editor; Open Sample Scene located at */Assets/Scenes
13 | 2. Run from editor (play button) or build and run; Text will display "Data source loaded and ready to Scan." if initialization was successful
14 | 3. Click Scan to scan for previously paired sensors or click Pair to pair a sensor to the base (you always have to scan before running a collection)
15 | 4. Select sensors by clicking "Select" button once the "Scan Complete" text is displayed
16 | 3. Click "Start" to start data streaming and "Stop" to stop data streaming (UI counter indicates the amount of data packets received from the API - see CollectionDataReady event inside of UnityExample.cs to show parsing of collection data in real-time)
17 |
18 |
19 |
--------------------------------------------------------------------------------
/Unity/SiUSBXp.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/delsys-inc/Example-Applications/215f393c44e99edadebdf2abe758867f033e2f76/Unity/SiUSBXp.dll
--------------------------------------------------------------------------------