_ / reset
This commit is contained in:
parent
92cd4fe73a
commit
faa2c04311
3 changed files with 22 additions and 13 deletions
|
@ -28,7 +28,11 @@ ServoPin servos[6] = {
|
||||||
struct BrailleChar {
|
struct BrailleChar {
|
||||||
int servoStates[6];
|
int servoStates[6];
|
||||||
};
|
};
|
||||||
BrailleChar brailleAlphabet[26] = {
|
BrailleChar brailleAlphabet[27] = {
|
||||||
|
{{0, 0,
|
||||||
|
0, 0,
|
||||||
|
0, 0
|
||||||
|
}}, // _
|
||||||
{{1, 0,
|
{{1, 0,
|
||||||
0, 0,
|
0, 0,
|
||||||
0, 0
|
0, 0
|
||||||
|
|
|
@ -23,7 +23,7 @@ public class Mono {
|
||||||
|
|
||||||
// alphabet a-z
|
// alphabet a-z
|
||||||
string[] characters = new string[] {
|
string[] characters = new string[] {
|
||||||
"a", "b", "c", "d", "e", "f", "g", "h", "i", "j",
|
"_", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j",
|
||||||
"k", "l", "m", "n", "o", "p", "q", "r", "s", "t",
|
"k", "l", "m", "n", "o", "p", "q", "r", "s", "t",
|
||||||
"u", "v", "w", "x", "y", "z"
|
"u", "v", "w", "x", "y", "z"
|
||||||
};
|
};
|
||||||
|
@ -54,6 +54,11 @@ public class Mono {
|
||||||
monoNet.send = true;
|
monoNet.send = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (Input.Key(Key.Down).IsJustActive()) {
|
||||||
|
monoNet.value = -1;
|
||||||
|
monoNet.send = true;
|
||||||
|
}
|
||||||
|
|
||||||
int xi = (int)(rig.hand_1.palm.position.x * 20f);
|
int xi = (int)(rig.hand_1.palm.position.x * 20f);
|
||||||
xi = Math.Clamp(xi + 10, 0, 26);
|
xi = Math.Clamp(xi + 10, 0, 26);
|
||||||
Log.Info($"xi: {xi}");
|
Log.Info($"xi: {xi}");
|
||||||
|
|
22
todo.md
22
todo.md
|
@ -1,15 +1,15 @@
|
||||||
ethan :
|
ethan :
|
||||||
bryan fix monado head bob/northstar
|
[ ] bryan fix monado head bob/northstar
|
||||||
get the stereokit project into the repo
|
[x] get the stereokit project into the repo
|
||||||
try cycling (left-- center(stay) right++)
|
[ ] try cycling (left-- center(stay) right++)
|
||||||
thumb lift for char input
|
[ ] thumb lift for char input
|
||||||
|
|
||||||
for the servo frame allow for slide *in out adjustablity
|
[x] for the servo frame allow for slide *in out adjustablity
|
||||||
|
|
||||||
niko :
|
niko :
|
||||||
finger pad bridge
|
[ ] finger pad bridge
|
||||||
flatten servo bottoms by adding material
|
[ ] flatten servo bottoms by adding material
|
||||||
|
|
||||||
|
|
||||||
*nice to have:
|
*nice to have:
|
||||||
show braille dots as an added reinforcing visual element
|
show braille dots as an added reinforcing visual element
|
||||||
|
|
Loading…
Add table
Reference in a new issue