Compare commits

..

2 commits

Author SHA1 Message Date
03aa785a38 ++tips for hot glue bumps 2024-05-03 13:02:21 -04:00
97fa0f18ad 0-90 90-180 2024-05-03 13:01:58 -04:00
2 changed files with 4 additions and 5 deletions

View file

@ -40,8 +40,7 @@ sudo chmod 666 /dev/ttyUSB0
### WIP hot glue bump tutorial
1. reset the device *press enter key and disconnect power
2. align where the bump will be with gravity and generally aim the glue gun opposite gravity
3. get coverage starting from the top *wrapping the glue around the screw head
4. end with the glue you need for the bump before lifting up and off to round it out
2. align where the bump will be with gravity and generally aim the glue gun opposite (pre-heating the screw head will help the glue flow)
3. get coverage starting from the top *wrapping the glue around the screw head (until it's just touching the threads)
4. end with the glue you need for the bump before lifting up and away to round it out
5. use the side of the nozzle to reshape as needed

View file

@ -250,7 +250,7 @@ void loop() {
for (int i = 0; i < 6; i++) {
int state = bc.servo_states[i];
int spin = servos[i].spin < 0 ? (1 - state) : state;
servos[i].servo.write(spin * 90);
servos[i].servo.write(90 + (spin * 90));
}
old_char = in_char;