Charlie Diaz
Published © GPL3+

How to build your own replica of TARS from Interstellar

TARS, the giant sarcastic robot from Interstellar, is here! This guide will discuss how I created my replica of TARS and how you can too.

IntermediateWork in progressOver 1 day10,341
How to build your own replica of TARS from Interstellar

Things used in this project

Hardware components

Raspberry Pi 3 Model B
Raspberry Pi 3 Model B
×1
myCharge Hub Mini 3350mAh/2.4A bank
×1
LiPo Battery (3 cell, 11.1V, 1300mAh)
×1
12V to 6V DC Buck Converter
×1
Adafruit 16-Channel PWM Servo Driver
×1
Elecrow 5" HDMI Display
×1
8Bitdo Zero 2 Bluetooth Remote
×1
SG90 Micro-servo motor
SG90 Micro-servo motor
×4
Metal Gear "Standard" Servo
×5
Machine Screw, M3
Machine Screw, M3
×1
Lightweight Actobotics Servo Horn (H25T Spline)
×1

Software apps and online services

Raspbian
Raspberry Pi Raspbian

Hand tools and fabrication machines

3D Printer (generic)
3D Printer (generic)
Soldering iron (generic)
Soldering iron (generic)
Solder Wire, Lead Free
Solder Wire, Lead Free

Story

Read more

Custom parts and enclosures

TARS 3 Main CAD

This is the entire CAD of TARS. In your CAD editor/software, select individual components to print (basically anything in the CAD that you can't buy). Print the entire model in a hard plastic like PETG, PLA, ABS, or resin, EXCEPT for the "Flexors" (there's a long and short variety) which attach the arms to the legs, and the fingers of the gripper to its forearm. This project's in it's early phases, so individual files will be provided with better documentation in future updates soon.

Code

Servo Abstractor

Python
Sort of redundant to give these functions their own file, but this program takes the basic servo movements from the servo controller file and combines them to automate walking functions.
import time
import TARS_Servo_Controller3

def stepForward():
	TARS_Servo_Controller3.height_neutral_to_up()
	TARS_Servo_Controller3.torso_neutral_to_forwards()
	TARS_Servo_Controller3.torso_bump()
	TARS_Servo_Controller3.torso_return()

def turnRight():
	TARS_Servo_Controller3.neutral_to_down()
	TARS_Servo_Controller3.turn_right()
	TARS_Servo_Controller3.down_to_neutral()
	TARS_Servo_Controller3.neutral_from_right()

def turnLeft():
	TARS_Servo_Controller3.neutral_to_down()
	TARS_Servo_Controller3.turn_left()
	TARS_Servo_Controller3.down_to_neutral()
	TARS_Servo_Controller3.neutral_from_left()

def pose():
    TARS_Servo_Controller3.neutral_to_down()
    TARS_Servo_Controller3.torso_neutral_to_backwards()
    TARS_Servo_Controller3.down_to_up()

def unpose():
    TARS_Servo_Controller3.torso_return2()

    

TARS Runner

Python
Run this file in terminal on your onboard computer to initialize TARS. This file handles communication with the bluetooth remote.
import evdev
import time
import TARS_Servo_Abstractor3
import TARS_Servo_Controller3
from evdev import InputDevice, categorize, ecodes
import Adafruit_PCA9685

pwm = Adafruit_PCA9685.PCA9685()

#port
pwm.set_pwm(3, 3, 610)
pwm.set_pwm(4, 4, 570)
pwm.set_pwm(5, 5, 570)
#starboard
pwm.set_pwm(6, 6, 200)
pwm.set_pwm(7, 7, 200)
pwm.set_pwm(8, 8, 240)

# Set frequency to 60hz, good for servos.
pwm.set_pwm_freq(60)

gamepad = InputDevice('/dev/input/event3')

lTrg = 37
rTrg = 50
upBtn = 46
downBtn = 32
lBtn = 18
rBtn = 33
xBtn = 23
yBtn = 35
aBtn = 36
bBtn = 34
minusBtn = 49
plusBtn = 24

toggle = True
pose = False

print(gamepad)

for event in gamepad.read_loop():
    if event.type == ecodes.EV_KEY:
        if event.value == 1:
            if event.code == lTrg:
                print("Left Trigger")
                if toggle == True:
                    TARS_Servo_Controller3.portMainPlus()
                elif toggle == False:
                    TARS_Servo_Controller3.portMainMinus()
            elif event.code == rTrg:
                print("Right Trigger")
                if toggle == True:
                    TARS_Servo_Controller3.starMainPlus()
                elif toggle == False:
                    TARS_Servo_Controller3.starMainMinus()
            elif event.code == upBtn:
                print("Up - Step Forward")
                TARS_Servo_Abstractor3.stepForward()
            elif event.code == downBtn:
                print("Down")
                if pose == False:
                    TARS_Servo_Abstractor3.pose()
                    pose = True
                elif pose == True:
                    TARS_Servo_Abstractor3.unpose()
                    pose = False
            elif event.code == lBtn:
                print("Left - Turn Left")
                TARS_Servo_Abstractor3.turnLeft()
            elif event.code == rBtn:
                print("Right - Turn Right")
                TARS_Servo_Abstractor3.turnRight()
            elif event.code == xBtn:
                print("X")
                if toggle == True:
                    TARS_Servo_Controller3.starForarmPlus()
                elif toggle == False:
                    TARS_Servo_Controller3.starForarmMinus()
            elif event.code == yBtn:
                print("Y")
                if toggle == True:
                    TARS_Servo_Controller3.portForarmPlus()
                elif toggle == False:
                    TARS_Servo_Controller3.portForarmMinus()
            elif event.code == aBtn:
                print("A")
                if toggle == True:
                    TARS_Servo_Controller3.starHandPlus()
                elif toggle == False:
                    TARS_Servo_Controller3.starHandMinus()
            elif event.code == bBtn:
                print("B")
                if toggle == True:
                    TARS_Servo_Controller3.portHandPlus()
                elif toggle == False:
                    TARS_Servo_Controller3.portHandMinus()
            elif event.code == plusBtn:
                print("+")
                toggle = True
            elif event.code == minusBtn:
                print("-")
                toggle = False
        elif event.value == 0:
            print("Stop")

Servo Controller

Python
Handles basic movements of servos in TARS. Communicates with an Adafruit PCA9685 servo driver to control the servos.
from __future__ import division
import time
import Adafruit_PCA9685
from threading import Thread

pwm = Adafruit_PCA9685.PCA9685()

# Set frequency to 60hz, good for servos.
pwm.set_pwm_freq(60)

portMain = 610
starMain = 200
portForarm = 570
starForarm = 200
portHand = 570
starHand = 240

# Center Lift Servo (0) Values
upHeight = 205
neutralHeight = 275
downHeight = 450

# Port Drive Servo (1) Values
forwardPort = 440
neutralPort = 375
backPort = 330

# Starboard Drive Servo (2) Values
forwardStarboard = 292
neutralStarboard = 357
backStarboard = 402

# moves the torso from a neutral position upwards, allowing the torso to pivot forwards or backwards
def height_neutral_to_up():
	height = neutralHeight
	print('setting center servo (0) Neutral --> Up position')
	while (height > upHeight):
		height = height - 1
		pwm.set_pwm(0, 0, height)
		time.sleep(0.001)
	print('center servo (0) set to: Up position\n ')

# rotates the torso outwards, enough so that when TARS pivots and lands, the bottom of the torso is 
# flush with the ground. Making the torso flush with the ground is an intentional improvement from
# previous programs, where TARS would land and then slide a little on smooth surfaces, which while
# allowing for a simple walking program, inhibited TARS' ability to walk on surfaces with different 
# coefficients of friction
def torso_neutral_to_forwards():
	port = neutralPort
	starboard = neutralStarboard
	print('setting port and starboard servos (1)(2) Neutral --> Forward')
	while (port < forwardPort):
		port = port + 1
		starboard = starboard - 1
		pwm.set_pwm(1, 1, port)
		pwm.set_pwm(2, 2, starboard)
		time.sleep(0.0001)
	print('port and starboard servos (1)(2) set to: Forward position\n ')

def torso_neutral_to_backwards():
	port = neutralPort
	starboard = neutralStarboard
	print('setting port and starboard servos (1)(2) Neutral --> Forward')
	while (port > backPort):
		port = port - 1
		starboard = starboard + 1
		pwm.set_pwm(1, 1, port)
		pwm.set_pwm(2, 2, starboard)
		time.sleep(0.0001)
	print('port and starboard servos (1)(2) set to: Forward position\n ')

# rapidly shifts the torso height from UP --> DOWN and then returns --> UP, which should cause TARS 
# to pivot and land on it's torso
def torso_bump():
	height = upHeight
	print('performing a torso bump\nsetting center servo (0) Up --> Down position FAST')
	while (height < downHeight):
		height = height + 2
		pwm.set_pwm(0, 0, height)
		time.sleep(0.000001)
	print('setting center servo (0) Down --> Up position FAST')
	while (height > upHeight):
		height = height - 1
		pwm.set_pwm(0, 0, height)
		time.sleep(0.0001)
	print('center servo (0) returned to Up position\n')
	
# returns the torso's vertical height and rotation to centered values from up height and forward 
# rotation. Activates two external functions so movement in both axes can occur in parallel.
def torso_return():
	t1 = Thread(target = torso_return_rotation)
	t2 = Thread(target = torso_return_vertical)
	
	t1.start()
	t2.start()

# returns torso's rotation to neutral from forward
def torso_return_rotation():
	port = forwardPort
	starboard = forwardStarboard
	print('setting port and starboard servos (1)(2) Forward --> Neutral position')
	while (port > neutralPort):
		port = port - 1
		starboard = starboard + 1
		pwm.set_pwm(1, 1, port)
		pwm.set_pwm(2, 2, starboard)
		time.sleep(0.005)
	print('port and starboard servos (1)(2) set to: Neutral position\n ')

# returns torso's vertical to neutral from up	
def torso_return_vertical():
	height = upHeight
	print('setting center servo (0) Up --> Down position')
	# moving the torso down to create clearance for the rotation of the legs
	while (height < downHeight):
		height = height + 1
		pwm.set_pwm(0, 0, height)
		time.sleep(0.00005)
	# moving the torso up from down to neutral
	#time.sleep(.2)
	while (height > neutralHeight):
		height = height - 1
		pwm.set_pwm(0, 0, height)
		time.sleep(0.00001)
	print('center servo (0) set to: Neutral position\n ')

def torso_return2():
	t1 = Thread(target = torso_return_rotation2)
	t2 = Thread(target = torso_return_vertical2)
	
	t1.start()
	t2.start()

# returns torso's rotation to neutral from forward
def torso_return_rotation2():
	port = backPort
	starboard = backStarboard
	print('setting port and starboard servos (1)(2) Forward --> Neutral position')
	while (port < neutralPort):
		port = port + 1
		starboard = starboard - 1
		pwm.set_pwm(1, 1, port)
		pwm.set_pwm(2, 2, starboard)
		time.sleep(0.01)
	print('port and starboard servos (1)(2) set to: Neutral position\n ')

# returns torso's vertical to neutral from up	
def torso_return_vertical2():
	height = upHeight
	print('setting center servo (0) Up --> Down position')
	# moving the torso down to create clearance for the rotation of the legs
	while (height < downHeight):
		height = height + 1
		pwm.set_pwm(0, 0, height)
		time.sleep(0.001)
	# moving the torso up from down to neutral
	time.sleep(.25)
	while (height > neutralHeight):
		height = height - 1
		pwm.set_pwm(0, 0, height)
		time.sleep(0.001)
	print('center servo (0) set to: Neutral position\n ')


# moves the torso from neutral position to down
def neutral_to_down():
    height = neutralHeight
    print('setting center servo (0) Neutral --> Down position')
    while (height < downHeight):
        height = height + 1
        pwm.set_pwm(0, 0, height)
        time.sleep(0.001)
        
def down_to_up():
    height = downHeight
    print('setting center servo (0) Down --> Neutral position')
    while (height > upHeight):
        height = height - 1
        pwm.set_pwm(0, 0, height)
        time.sleep(0.001)

def down_to_neutral():
    height = downHeight
    print('setting center servo (0) Down --> Neutral position')
    while (height > neutralHeight):
        height = height - 1
        pwm.set_pwm(0, 0, height)
        time.sleep(0.001)

def neutral_to_down():
    height = neutralHeight
    print('setting center servo (0) Down --> Neutral position')
    while (height < downHeight):
        height = height + 1
        pwm.set_pwm(0, 0, height)
        time.sleep(0.001)


def turn_right():
    port = neutralPort
    starboard = neutralStarboard
    while (port < forwardPort):
        port = port + 1
        starboard = starboard + 1
        pwm.set_pwm(1, 1, port)
        pwm.set_pwm(2, 2, starboard)
        time.sleep(0.001)
        
def turn_left():
    port = neutralPort
    starboard = neutralStarboard
    while (port > backPort):
        port = port - 1
        starboard = starboard - 1
        pwm.set_pwm(1, 1, port)
        pwm.set_pwm(2, 2, starboard)
        time.sleep(0.001)
        
def neutral_from_right():
    port = forwardPort
    starboard = backStarboard
    while (port > neutralPort):
        port = port - 1
        starboard = starboard - 1
        pwm.set_pwm(1, 1, port)
        pwm.set_pwm(2, 2, starboard)
        time.sleep(0.005)
    pwm.set_pwm(1, 1, neutralPort)
    pwm.set_pwm(2, 2, neutralStarboard)
        
def neutral_from_left():
    port = backPort
    starboard = forwardStarboard
    while (port < neutralPort):
        port = port + 1
        starboard = starboard + 1
        pwm.set_pwm(1, 1, port)
        pwm.set_pwm(2, 2, starboard)
        time.sleep(0.005)
    pwm.set_pwm(1, 1, neutralPort)
    pwm.set_pwm(2, 2, neutralStarboard)
# Arm shenanigans
# port Main Arm
def portMainPlus():
    global portMain
    portMain = portMain - 10
    pwm.set_pwm(3, 3, portMain)
    time.sleep(0.0001)
    print("increase starMain")
    print(portMain)

def portMainMinus():
    global portMain
    portMain = portMain + 10
    pwm.set_pwm(3, 3, portMain)
    time.sleep(0.0001)
    print("decrease starMain")
    print(portMain) 

# port Forarm
def portForarmPlus():
    global portForarm
    portForarm = portForarm - 10
    pwm.set_pwm(4, 4, portForarm)
    time.sleep(0.0001)
    print("increase starForarm")
    print(portForarm)

def portForarmMinus():
    global portForarm
    portForarm = portForarm + 10
    pwm.set_pwm(4, 4, portForarm)
    time.sleep(0.0001)
    print("decrease starForarm")
    print(portForarm) 

# port Hand
def portHandPlus():
    global portHand
    portHand = portHand - 10
    pwm.set_pwm(5, 5, portHand)
    time.sleep(0.0001)
    print("increase starHand")
    print(portHand)

def portHandMinus():
    global portHand
    portHand = portHand + 10
    pwm.set_pwm(5, 5, portHand)
    time.sleep(0.0001)
    print("decrease starHand")
    print(portHand)
    
# starboard Main Arm
def starMainPlus():
    global starMain
    starMain = starMain + 10
    pwm.set_pwm(6, 6, starMain)
    time.sleep(0.0001)
    print("increase starMain")
    print(starMain)

def starMainMinus():
    global starMain
    starMain = starMain - 10
    pwm.set_pwm(6, 6, starMain)
    time.sleep(0.0001)
    print("decrease starMain")
    print(starMain) 

# port Forarm
def starForarmPlus():
    global starForarm
    starForarm = starForarm + 10
    pwm.set_pwm(7, 7, starForarm)
    time.sleep(0.0001)
    print("increase starForarm")
    print(starForarm)

def starForarmMinus():
    global starForarm
    starForarm = starForarm - 10
    pwm.set_pwm(7, 7, starForarm)
    time.sleep(0.0001)
    print("decrease starForarm")
    print(starForarm) 

# port Hand
def starHandPlus():
    global starHand
    starHand = starHand + 10
    pwm.set_pwm(8, 8, starHand)
    time.sleep(0.0001)
    print("increase starHand")
    print(starHand)

def starHandMinus():
    global starHand
    starHand = starHand - 10
    pwm.set_pwm(8, 8, starHand)
    time.sleep(0.0001)
    print("decrease starHand")
    print(starHand) 

Credits

Charlie Diaz

Charlie Diaz

1 project • 7 followers
Thanks to Adafruit and Raspberry Pi Community.

Comments