The Cyboard Truck

by Soham Anavekar in Craft > Cardboard

777 Views, 6 Favorites, 0 Comments

The Cyboard Truck

20200419_211207.jpg

This cardboard project is called "Cyboard Truck" inspired by design of Tesla Cyber Truck. This is my first instructable. I am 13 years old.

Supplies

  • Cardboard
  • Hot Glue Gun
  • Ruler
  • 2 Motors & Arduino
  • 9V Battery Pack

Dimensions

20200419_185200.jpg

Refer to these dimensions for cut outs.

Make Frame of the Cyboard Truck

20200419_185258.jpg

Use dimensions and cut cardboard as shown in the figure

Tire Rim and Hood

20200419_181252.jpg

Wheels

20200419_174629.jpg

Cut 12 pieces of 3 inch diameter wheels

Construct Chasis

20200419_175251.jpg
20200419_192227.jpg

Setup Wheels

20200419_181643.jpg
20200419_181727.jpg
20200419_182328.jpg
20200419_184609.jpg
20200419_195925.jpg
20200419_184906.jpg

Build the Body

20200419_200538.jpg
20200419_212829.jpg

Connect 2 motors to the wheels and control using Arduino

Step 7 : Arduino Code

//L293D

//Motor A

const int motorPin1 = 5; // Pin 14 of L293

const int motorPin2 = 6; // Pin 10 of L293

//Motor B

const int motorPin3 = 10; // Pin 7 of L293

const int motorPin4 = 9; // Pin 2 of L293

//This will run only one time.

void setup(){

//Set pins as outputs pinMode(motorPin1, OUTPUT);

pinMode(motorPin2, OUTPUT);

pinMode(motorPin3, OUTPUT);

pinMode(motorPin4, OUTPUT);

//Motor Control - Motor A: motorPin1,motorpin2 & Motor B: motorpin3,motorpin4 }

void loop(){

analogWrite(9, 200);

analogWrite(10, 0);

analogWrite(5, 200);

analogWrite(6, 0);

delay(3000);

analogWrite(9, 0);

analogWrite(10, 0);

analogWrite(5, 0);

analogWrite(6, 0);

delay(5000);}

Its Done!

CyberBoard Truck