Skip to main content

Blog 4

Blog 4

It has been very long since my previous blog post but I decided it was better to send a blog post when I had made a lot more progress. 

I have constructed the majority of my chassis which is made out of plywood. Since I do not have a laser cutter I am having to drill everything manually which is taking some time. I have made a camera module as well and I have a robot gripper which will be useful to pick up barrels.


My camera module uses two servos.


My robot gripper

I am making a two-tier robot chassis that has an A4 piece of plywood as a base, with an A5 piece of plywood placed on top as a second tier. I have also found out that velcro tape is very useful when making a modular robot as it makes attachments very easy to use. I have purchased an ultraborg (from piborg) which is really useful for servo and ultrasonic control. I have been doing a bit more of programming, yet that should now be a major focus. I plan to finish my robot in the next few days and I will write a few more blog posts fairly soon.


Comments

Popular posts from this blog

Code Update!

Code Update! After a while of working on writing code, I have finally done it! This script below is adapted from the MonsterJoy code by PiBorg, yet it has a number of important changes. I will probably also tweak the code slightly (ie turn magnitude). #!/usr/bin/env python # coding: Latin-1 # Load library functions we want import time import os import sys import pygame import ThunderBorg import UltraBorg # Re-direct our output to standard error, we need to ignore standard out to hide some nasty print statements from pygame sys . stdout = sys . stderr # Setup the ThunderBorg TB = ThunderBorg . ThunderBorg () TB . i2cAddress = 0xA # Uncomment and change the value if you have changed the board address TB . Init () if not TB . foundChip : boards = ThunderBorg . ScanForThunderBorg () if len ( boards ) == 0 : print 'No ThunderBorg found, check you are attached :)' else : print 'No...

Robot Chassis

Robot Chassis Below is an image of my finished robot chassis (a proper blog-post will follow shortly): (This is also the image that will be in the actual program)

Gripper Test!

Gripper Test Below is a quick video of a test for my Pi Wars 2020 gripper. In this video, I use a 6 channel digital servo tester as well as an inexpensive robot gripper I found on Robot Shop. I also tested out a vacuum-based gripper system (which I created using a syringe) however this was not as practical. Anyway, this is a video of a test of my gripper, enjoy!