Low-Level C# SDK  v1.2.0
Loading...
Searching...
No Matches
Low-Level C# SDK

Welcome to the Weart Low-Level C# SDK documentation.

The SDK allows to connect to the Weart middleware and perform various actions with the TouchDIVER devices:

  • Start and Stop the middleware operations
  • Calibrate the device
  • Receive tracking data from the devices
  • Send haptic effects to the devices

Architecture

C++ SDK Architecture

Setup

The minimum setup to use the weart SDK consists of:

  • A PC with the Middleware installed
  • A TouchDIVER device
  • A C# project using the Low-Level SDK

The SDK can be downloaded as a zip file containing all the necessary files. To use it in your C# project, unzip it and move the files in a folder inside your project. Then, add the sdk files in your project. In Visual Studio, this can be done by including the sdk directory into the project (Right Click on Solution -> Add -> Existing Directory).

To start using the SDK in your project, start the Middleware application and connect a TouchDIVER device to it.

Import the main namespaces:

using WeArt.Core;
Definition: TouchEffect.cs:9
Definition: IWeArtEffect.cs:9
Definition: WeArtMessageCustomSerializer.cs:18

Create the WeArtClient and start the communication with the middleware:

// Create weart client
WeArtClient weArtClient = new WeArtClient { IpAddress = WeArtNetwork.LocalIPAddress, Port = 13031 };
// Start connection and send start message to middleware
weArtClient.Start();
Network client used to send and receive message to/from the hardware middleware. This class is meant ...
Definition: WeArtClient.cs:22
Task Start(TrackingType trackingType=TrackingType.WEART_HAND)
Establishes a connection to the middleware and send the StartFromClientMessage
Definition: WeArtClient.cs:132
Note
The call to WeArtClient.Start() will also start the middleware, so be sure to have connected the devices before

Features

Start/Stop Client

As seen in the previous section, to start the middleware operations, call the Start() method.

weArtClient->Start();

To stop the middleware, call the Stop() method.

weArtClient->Stop();
async Task< bool > Stop()
Stops the middleware and the established connection.
Definition: WeArtClient.cs:189

Devices calibration

After starting the communication with the middleware, it's now possible to calibrate the TouchDIVER devices. The calibration allows to set the initial offsets of each thimble relative to the control unit position, in order to improve the finger tracking output.

The SDK client allows to add callbacks to monitor the calibration procedure status and result. For example, to start the calibration and print "Success" or "Failed":

weartClient.OnCalibrationStart += Console.WriteLine("Calibration start!");
weArtClient.OnCalibrationResultSuccess += (HandSide hand) => Console.WriteLine("Success!");
weArtClient.OnCalibrationResultFail += (HandSide hand) => Console.WriteLine("Failed");
weartClient.OnCalibrationFinish += (HandSide hand) => Console.WriteLine("Calibration finish!");
// Start calibraiton on demand
weArtClient.StartCalibration();
void StartCalibration()
Starts the calibration procedure.
Definition: WeArtClient.cs:200
HandSide
The hand side, left or right.
Definition: WeArtCommon.cs:20

Haptic feedback

The TouchDIVER allows to perform haptic feedback on the user's finger through its thimbles. Every thimble can apply a certain amount of pressure, temperature and vibration based on the processed object and texture.

Haptic Object

A WeArtHapticObject is the basic object used to apply haptic feedback. To create one, use the following code:

// create haptic object to manage actuation on Right hand and Index Thimble
WeArtHapticObject hapticObject = new WeArtHapticObject(_weartClient);
hapticObject.HandSides = HandSideFlags.Right;
hapticObject.ActuationPoints = ActuationPointFlags.Index;
This component controls the haptic actuators of one or more hardware thimbles. The haptic control can...
Definition: WeArtHapticObject.cs:24
ActuationPointFlags
The multi-selectable version of ActuationPoint
Definition: WeArtCommon.cs:118
HandSideFlags
The multi-selectable version of HandSide
Definition: WeArtCommon.cs:30

The attirbutes handSideFlag and actuationPointFlag accept multiple values. The next example presents a single haptic object that, when applied a WeArtEffect, will affect both hands and all fingers.

hapticObject.HandSides = HandSideFlags.Right | HandSideFlags.Left;
hapticObject.ActuationPoints = ActuationPointFlags.Index | ActuationPointFlags.Middle | ActuationPointFlags.Thumb;

Create Effect

The SDK contains a basic TouchEffect class to apply effects to the haptic device. The TouchEffect class contains the effects without any processing. For different use cases (e.g. values not directly set, but computed from other parameters), create a different effect class by implementing the IWeArtEffect interface.

Create the object on which the temperature, force and texture values will be applied:

TouchEffect touchEffect = new TouchEffect();
Internal class used to create the haptic effet on collision.
Definition: TouchEffect.cs:14

Add or Update Effect

It's possible to add a new effect to an haptic object, or to update an existing one.

In the example below, the effect created in the previous section is updated with a new temperature, force and texture. It is then added to the haptic object if not already present (if the effect is already applied to the thimble, it will update it automatically through the OnUpdate event).

// create temperature component
temperature.Active = true; // must be active to work
temperature.Value = 0.2f;
// create force component
force.Active = true;
force.Value = 0.7f;
// create texture component
texture.Active = true;
texture.TextureType = TextureType.ProfiledAluminiumMeshFast;
// effect set proporties
touchEffect.Set(temperature, force, texture);
// add effect if needed, to thimble
if (hapticObject.ActiveEffect == null)
hapticObject.AddEffect(touchEffect);
WeArt.Core.Texture Texture
Definition: WeArtHapticObject.cs:11
void Set(Temperature temperature, Force force, Texture texture)
The Set.
Definition: TouchEffect.cs:41
IWeArtEffect ActiveEffect
The currently active effects on this object.
Definition: WeArtHapticObject.cs:151
void AddEffect(IWeArtEffect effect)
Adds a haptic effect to this object. This effect will have an influence as long as it is not removed ...
Definition: WeArtHapticObject.cs:168
TextureType
Texture type to Haptic feel.
Definition: WeArtCommon.cs:130
The force applied as haptic pressure on the actuation point. The minimum value indicates no pressure,...
Definition: WeArtForce.cs:18
static Force Default
The default force is zero.
Definition: WeArtForce.cs:22
The temperature applied to the thermal actuator on the actuation point. The minimum value indicates t...
Definition: WeArtTemperature.cs:18
static Temperature Default
The default temperature is the ambient one, with the actuator off.
Definition: WeArtTemperature.cs:22
Note
When a new effect is added, the last effect applied is replaced by the new effect.

Remove Effect

If an effect is not needed anymore, it can be removed from the haptic object with the RemoveEffect method.

hapticObject.RemoveEffect(touchEffect);
void RemoveEffect(IWeArtEffect effect)
Removes a haptic effect from the set of influencing effects.
Definition: WeArtHapticObject.cs:181

Tracking

After starting the middleware and performing the device calibration, it's possible to receive tracking data related to the TouchDIVER thimbles.

To read these values, create and set a thimble tracker object for monitoring the closure/abduction value of a given finger:

WeArtThimbleTrackingObject thumbThimbleTracking = new WeArtThimbleTrackingObject(weArtClient, HandSide.Right, ActuationPoint.Index);
This component receives and exposes tracking data from the hardware.
Definition: WeArtThimbleTrackingObject.cs:15
ActuationPoint
The point of application of the haptic feeling.
Definition: WeArtCommon.cs:40

Once this object is created, it will start receiving the tracking values. To access the closure and abduction values, simply use the getters provided by the thimble tracking object.

The closure value ranges from 0 (opened) to 1 (closed).

The abduction value ranges from 0 (finger near the hand's central axis) to 1 (finger far from the hand central axis).

float closure = thumbThimbleTracking.Closure.Value;
float abduction = thumbThimbleTracking.Abduction.Value;
Abduction Abduction
The abduction measure received from the hardware (if any)
Definition: WeArtThimbleTrackingObject.cs:47
Closure Closure
The closure measure received from the hardware.
Definition: WeArtThimbleTrackingObject.cs:42
Note
The closure value is available for all thimbles, while the abduction value is available only for the thumb (other thimbles will have a value of 0).

Raw Sensors Data

It's possible to receive the raw data from the sensors on each thimble (and the control unit), in addition to the tracking data. Each sensor has:

  • 3-axis accelerometer
  • 3-axis gyroscope
  • Time of Flight sensor

To read these values, create a WeArtRawSensorsDataTrackingObject object and add it to the client.

This component receives and exposes raw sensors data from the hardware.
Definition: WeArtRawSensorsDataTrackingObject.cs:15

Once this object is added to the client, it will listen for raw data messages. To start receiving raw data from the middleware, call the WeArtClient.StartRawData() method. To stop receiving raw data, call the WeArtClient.StopRawData() method.

To get the sensors data, get the latest sample (SensorData) from the WeArtRawSensorsDataTrackingObject object. The sample contains the accelerometer, gyroscope and time of flight data, in addition to the timestamp of its sampling (generated by the middleware and represented as a DateTime value).

SensorData sample = rawSensorData.LastSample;
SensorData LastSample
Definition: WeArtRawSensorsDataTrackingObject.cs:43
Definition: WeArtCommon.cs:199
Note
The Palm (control unit) doesn't contain a Time-Of-Flight sensor, so its value is always set to 0.

In addition to getting the latest sample by polling the tracking object, it's possible to add a callback called whenever a new sensor data sample is received from the TouchDIVER.

rawSensorData.DataReceived += (SensorData data) => {
// process the sensor data sample
};

Middleware and Devices status tracking

The SDK allows to track and receives updates about the middleware and the connected devices status.

In particular, the information is available through a callback in the WeArtClient object

weArtClient.OnMiddlewareStatusUpdate += (MiddlewareStatusUpdate message) => {
... use received middleware status ...
};
Data structure containing the updated status received from the middleware.
Definition: WeArtCommon.cs:212

The middleware status callback will receive the MiddlewareStatusUpdate object, which includes:

  • Middleware version
  • Middleware status
  • Status code and description
  • Whether actuations are enabled or not
  • List of the connected devices and their status
    • Mac Address
    • Assigned HandSide
    • Overall battery level
    • Status of each thimble (actuation point, connected or not, status code etc..)

Status Codes

The MiddlewareListener object allows to get the middleware status, which includes the latest status code sent by the middleware while performing its operations.

The current status codes (along with their description) are:

Status Code Description
0 OK Ok
100 START_GENERIC_ERROR Can't start generic error: Stopping
101 CONNECT_THIMBLE Unable to start, connect at least one thimble and retry
102 WRONG_THIMBLES Unable to start, connect the right thimbles matched to the bracelet and retry
103 BATTERY_TOO_LOW Battery is too low, cannot start
104 FIRMWARE_COMPATIBILITY Can't start while the devices are connected to the power supply
105 SET_IMU_SAMPLE_RATE_ERROR Error while setting IMU Sample Rate! Device Disconnected!
106 RUNNING_SENSOR_ON_MASK Inconsistency on Analog Sensors raw data! Please try again or Restart your device/s!
107 RUNNING_DEVICE_CHARGING Can't start while the devices are connected to the power supply
200 CONSECUTIVE_TRACKING_ERRORS Too many consecutive running sensor errors, stopping session
201 DONGLE_DISCONNECT_RUNNING BLE Dongle disconnected while running, stopping session
202 TD_DISCONNECT_RUNNING TouchDIVER disconnected while running, stopping session
203 DONGLE_CONNECTION_ERROR Error on Dongle during connection phase!
300 STOP_GENERIC_ERROR Generic error occurred while stopping session
Note
The description of each status code might change between different Middleware versions, use the status code to check instead of the description.