-
Notifications
You must be signed in to change notification settings - Fork 5
TactGlove examples #24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Hi @westside , The examples in this repository only support 5 positions, i.e., [VestFront, VestBack, Head, ForearmL I checked another repository and found this file with the position 'Hand'. Can this be used to create an example for tactGloves? Thanks, |
@westside could you please add a working example of detecting the haptic gloves? It's really tedious to understand how this library can be used without an example. Please do so. |
sorry for the delay. will be ready in 24 hours. |
@addy1997 Hi, just added svelte and react sample. |
Hey @westside, Thank you so much for this. Do you have an example that shows the connection between the Haptic Gloves? Actually, this example considers [VestFront, VestBack, Head, ForearmL |
@addy1997 Not sure what you mean "the connection between the Haptic Gloves" Can you explain more about this? |
Just updated README.md.
var key = 'dot';
var position = 'GloveL'
var points = [{
index : 10,
intensity : 100
}];
var durationMillis = 1000; // 1000ms
var errorCode = tactJs.submitDot(key, position, points, durationMillis); var key = 'path';
var position = 'GloveR'
var points = [{
x : 0.5,
y : 0.5,
intensity : 100
}];
var durationMillis = 1000; // 1000ms
var errorCode = tactJs.submitPath(key, position, points, durationMillis);
|
I'm not sure what javascript UI frameworks familiar with you, but this seems to be good starting point. |
No description provided.
The text was updated successfully, but these errors were encountered: