Skip to main content

Power Source (finally solved!)

Power Source

Previously I had been using AA alkaline batteries, yet after asking around on a few forums, I realised that this was a terrible idea. The problem was that I had lots of 8 * AA battery holders, yet if I were to use the normal rechargeable batteries (which are 1.2V), it would not be enough to power both my pi and my motor controller. Instead, I found out about these new type of batteries produced by a brand named KENTLI. Below is a picture of the product:
 

Unlike other rechargeables, these actually are 1.5V. Hence I bought 8 of these and now the problem is solved!


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...

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!