This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// pcb dims | |
width = 18; | |
hwidth = 7.65; | |
swidth = 4; | |
module box() { | |
difference() { | |
boxshell(); | |
translate([(20-swidth*1.1)/2,3,1.5+1.6]) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <Servo.h> | |
struct ServoMove { | |
char cmd[3]; | |
int angle; | |
int wait; | |
}; | |
Servo joints[8]; | |
// Front then back; right then left; hip then leg |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <Servo.h> | |
Servo gripper; | |
Servo arm; | |
int pos = 120; | |
int target = pos; | |
void setup() | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from urllib2 import urlopen | |
from time import sleep | |
from scene import gravity, Scene, run | |
class MyScene (Scene): | |
def setup(self): | |
self.frames = 0 | |
def draw(self): | |
self.frames += 1 | |
if (self.frames % 30) == 0: |
NewerOlder