Tracks!

Having seen various tracked robots on Thingiverse and especially this amazing one, I thought we should try and implement Wall-E’s tracks ourselves.

We could have gone with a simple rubber band or timing belt (and in retrospect that would have been MUCH easier), but I really fancied seeing how far I could push 3D printed parts.

So I had a long browse through thingiverse looking at lots of track designs and started to draw up my own.  The FPV rover design had an interesting idea for fine adjustment – they used 2 different sizes of 3D printed pins to join the tracks together to make the whole thing slightly tighter or looser as needed.

In the end I settled on a design which had sprocket wheels mounted on either side of a supporting frame (to avoid nasty torques on the frame).  Obviously the layout of the sprocket wheels on the frame had to match the ‘real’ Wall-E, but I decided to make the sprocket teeth larger (and therefore stronger).

Then the track elements needed designing.  I went with a design which used the links between the tracks as the raised sections and the sprocket teeth sat in a deep well, but did not protrude from the other side.  Like this:

A matching pin is shown too.  After a few trail and error prints to fine tune the pin diameter, well depth, we got something that worked.  And then we needed to print about 36 of them per set of tracks (3 x 4 hour sessions of printing).

The final problem was how to connect these to the motor.  We wanted a fair bit of speed, so I’d ended up buying pololu motors with a 4:1 gearbox.  Having seen these run, I was a bit worried about the high speed, so wanted to gear them down a touch.  I found a bevel gear generator plugin in Onshape and ended up with this:

And that worked!

In fact running these is slightly terrifying – fairly sure if you got your finger in there it’d get a nasty nip…

Mad not-quite-HATting

With space at a premium in this year’s bot (it amounts to a squared-off Pi):

Pi overlaid with a square, showing the size of the enclosure

and because I fancied having a go at it, and, Lance had his hands full with the CAD work, we decided to design a custom PCB. It’s now on its way to us from Shenzen 🙂

Picture of our boards in bubble wrap
The board house sent us a photo when they finished production, which was a nice touch

The custom PCB needed to combine several functions that were separate boards and breakouts last year:

  • I2C mulitiplexer
  • propeller microcontroller for interfacing with the motor drivers/encoders
  • connectors for all the peripherals (IMU, motors and distance sensors)

along with some new functions that we wanted to squeeze in (screen and voltage sensors to monitor the batteries, for example).  I also thought it’d be a good idea to add some isolation and level shifting chips to the design so that we could better isolate the motors and support having noisy and clean power supplies.  Previously, we’d had gremlins that we thought might be down to noise and brownouts caused by the motors.

Since it’s pretty much the only game in town for open source PCB design (and Lance and I had used it before), we used Kicad to draw the schematic and then design the board itself.

We’ll cover a  bit more detail on the design in the next few posts but, if you are interested in making your own board, my number one tip is to punch “Kicad” into Youtube’s search box.  There are great how-to videos on there that guide you through the whole process.  My second tip is to search for “Kicad push and shove”; which will show you how to use the automatic layout tools.

Note about the title: while it fits on the Pi, our board isn’t a HAT because there are rules about what makes a HAT 😛  also, we’re mad to try soldering some of the chips we plan to put on there; they’re tiny :-O

 

 

 

 

PiWars 2019!

It was awesome to hear the launch of PiWars 2019 and we loved the space theme.  That led to a week of lunchtime brainstorming – what famous space exploration robots are there?  We ended up discounting most those as being a bit too spindly to 3D print.  So what else could we do with the theme?  What robots are there in space films?  And Wall-E was the obvious winner:

  • tracked – so uneven ground would not be a problem
  • boxy – so shape should be printable

But: The PiWars rules limit the width of robots and Wall-E has a fairly square footprint.  And a big chunk of the width is taken up by the tracks.  So were we going to be able to fit all the electronics into the body?

That has turned into an interesting challenge.  We were fairly sure we were going to use similar electronics to last year, but we were also sure that we would have to reduce the size of them.  Which means designing a custom PCB…

So the challenges we’re going to face:

  • making it look like Wall-E – arguably the most important thing!
  • mechanical design – 3D printing tracks to look like Wall-E’s is going to be hard
  • making the electronics fit into the tiny body – ideally with extra servos to animate Wall-E  🙂
  • Finding places to mount sensors at the right height for the challenges
  • Figuring out how to mount the attachment hardware
  • Plus all the unexpected stuff we haven’t spotted yet!

 

More Peripherals

Following the posts on servos and distance sensors, I thought I’d talk about the other peripherals we’re adding to Tigerbot.

A screen is an under-rated part of a PiWars robot.  Its really handy not to have to cart a laptop around with you between events and have a way to check that the robot is in the mode you think it is (ask me how we know!).  We found this little 128×64 pixel screen on ebay based on the SSD1306. And Adafruit has a lovely tutorial on how to use it.

It can be controlled over either I2C or SPI (just set the pattern of resistors on the back).  With this, you can write your code to have a menu of “modes” (one for each event) switch between them using buttons on your controller and display the mode the robot thinks you’re in on the screen.  No more laptop on the day!

  • Another handy peripheral is an IMU.  This is a combination Gyro, Accelerometer, Barometer and Thermometer all in one.  Of most interest to us is the Gyro.  This is a rate gyro – it tells you how fast the rate of rotation is changing (and NOT the absolute rate of rotation).  This is a 3-axis device – it tells you about rotation around the X, Y, Z axes.  To use it you generally have to calibrate it first – with the robot still and stationary, you take readings from each of the gyros for a while and record the output.  These are your zero readings.  All future readings from the gyro need to subtract the zero readings.  The zero reading can vary with battery voltage and temperature, so be sure to re-calibrate it just before you use it!  Now you can turn the rate into absolute rotation by taking lots of readings and integrating them.What use is a gyro?  There are a couple of obvious events that could use a gyro:
  • Straight line speed test
    • here you’re trying to keep the robot pointed in the same direction all the way to the end
  • Minimal maze
    • for checking that your turns are exactly 90 degrees (if you’re using wheel rotations for this, how do you know if the wheel has slipped on the surface?)

A Gopher in a Tiger?

Golang mascot, Renee French

In the past, we’ve used Python and C++ for our robots but this year we switched to Go.  Why the change?  It seemed like a good idea at the time

To be honest, the main reason was that I signed up to lead the coding effort this year.  I haven’t had much C++/Qt experience (so it wasn’t easy for me to pick up last year’s code) but I’ve been working in Go in my day job for a couple of years;  I enjoy working with Go and the language has some features that are appealing for building robots:

  • “Naturally” written Go is just plain faster than “naturally” written Python (by some margin).
  • Go can take advantage of more than one core by running multiple goroutines at once (and the computer scientist in me can’t resist a bit of CSP). The normal Python interpreter is limited to one core.
  • It felt like a good choice because it sits at the right level, giving access to low-level primitives (like pointers and structs) for interfacing with C and hardware while also offering garbage collection and other modern features for rapid development.

I have found Go to be a good language to program a bot.  The biggest downside was that the library ecosystem is a bit less mature than Python or C(++).  That meant that getting the hardware driver layer of the bot together required quite some work:

  • We found that the Go wrapper for OpenCV (gocv) required a patch to work on the Pi.  (I found the patch in a forum post but I can’t dig it out to link to.)
  • We didn’t find a working Go driver for the VL53L0X time-of-flight sensors, so (after some false starts) we took the existing C-wrapper that GitHub user cassou had already ported for the Pi and wrapped it in a Go library using CGo (Go’s C function call interface).
  • We ported a Python sample joystick driver for the DS4 to Go.  The Linux joystick interface turned out to be easy to access.
  • There were a few i2c libraries without a clear winner.  We ended up using golang.org/x/exp/io/i2c.

While it made some work, I find the low-level bit banging quite fun so it wasn’t much of a downside 🙂

Chassis V2

After some testing (read repeatedly trying to make it do the minimal maze!) we’ve realised that the chassis is very stiff. This means that usually only 3 wheels are touching the ground, which means our turns (and, ahem, straight lines – Shaun) are more variable than they should be.

Solution is to saw the chassis in half 🙂 We’ve separated front and back into separate sections and joined them with a hinge so that the front and back can twist slightly compared to the other end. We’ve added limiters to ensure that it only twists up to 10 degrees of movement so that the obstacle course doesn’t break the robot!

Here’s the print in progress:

And with the rest of the robot installed into it:

Initial testing indicates that the new twisty chassis works better, so that makes me feel much better about totally rebuilding the robot just 2 weeks before the event!

 

3d printing

This year I’m lucky enough to have access to a 3D printer.  These things are amazing.  It is incredible to be able to design something in CAD and then have it in your hand the next day.

Our process has been design the whole robot in a web-based CAD package (like Fusion 360).  As an aside: OMG – web based CAD!  I can’t believe it exists and is free!  Hat tip to Tom Oinn (@approxeng) for introducing me to the idea of it.

CAD allows you to see how the whole thing is going to fit together before you’ve spent a single penny on anything ‘real’.  Once you’re happy with the design, you can download an STL file (the 3D model of the part) and load it into your slicer software.  The slicer’s job is to turn the 3D model of the part into a list of movements of the print head (aka g-code).  It is here that you decide what the infill of the part will be and if you need any support material, etc, etc.

You then send the g-code file to the printer – in our case by copying it onto an SD card, though I’ve recently set up Octoprint on a spare Pi, which gives me a web server to control the printer (i.e. upload g-code files, start prints, etc) and a webcam so I can watch it work while I’m at work.  Prints take HOURS.  Our V2 chassis took 12 hours to print – which is why being able to monitor prints from work is awesome.

Nothing beats being able to discuss and modify the design of a robot part at lunchtime with your team-mates, then kick off a print and be able to bring in the finished part the next morning to hand over and have them try it out on the robot that evening.

3D printer prices have dropped massively recently – my machine is a slightly more expensive one (a genuine Prusa i3 Mk2S kit for those who care) but clones of this machine can be bought for £100 now!  Note that the cheaper kits often take more time to get “dialled in” than the more expesive kits – you need to decide if you are time-poor or cash-poor…

As for running costs, printer filament (usually PLA) costs about 25GBP per kilogram reel.  My slicer (slic3r) tells me how much filament will be used to print a part, and our biggest part (the chassis) used about 7GBP worth of filament.  I think we’ll end up using most of a reel for Tigerbot and 25GBP is cheap compared with all the electronic parts, and is MUCH cheaper than if you buy ready made parts (wheels, etc).  Speciality filaments like the rubbery TPU can be more expensive (we’re using TPU for the tyres).

Chasing motor gremlins

Not our motors

We spend a big chunk of last weekend trying to track down an issue with our motor driving logic.  The problem was that  sometimes a fast change of direction would cause the i2c bus to die; writes from the Pi would fail and the bot would go crazy as result.

We knew it was likely to be one of a couple of factors:

  • High current draw from the quick change in direction causing a brownout.
  • Motor switching causing interference/voltage spikes.

Unfortunately, not owning an oscilloscope, it was hard to pinpoint the exact cause so we resorted to magic capacitive pixie dust and software changes:

  • We added large reservoir capacitors to the power inputs of the various boards to provide a store of charge in case the power rail momentarily dropped.
  • We added small decoupling capacitors too to help filter any noise.

Those changes did seem to help but they didn’t eliminate the problem completely.  An extra layer of software changes seems to have done the trick:

  • We changed the i2c driver code to close and reopen the device file after a failure. The hope is that that resets the bus more thoroughly than simply retrying the write.
  • After John mentioned that he’d seen issues with it in the past, we took control of the GPIO pin that is attached to the propeller’s reset pin and started actively driving it rather than letting it be weakly pulled up with a resistor.
  • We beefed up our retry loop, with escalation.  If it fails enough times, it resets the propeller and reflashes it.  That takes about a second but it might just save us on the day!
  • We implemented a maximum ramp rate for the motors so that we change their speed a little slower.
  • We put the motor PWMs out-of-phase so that they don’t all start and stop on the same clock cycle.

With all those changes in place, we’ve seen a few retries but it’s hasn’t escalated to a reset yet so, fingers crossed, the problem is fixed enough.

Peripherals – Servos

So two of the PiWars 2018 events suggest using servos to operate something: duck-shoot and golf.

Servos have been around for a long time and have a very simple interface.  About every 20ms, you need to send them a pulse.  That pulse needs to be between 1ms and 2ms long.  A pulse length of 1.5ms will cause the servo to move to the centre position, 1ms and 2ms correspond to the two ends of travel.  Note that some servos can move beyond these limits, and some can be damaged if you drive them beyond these limits!  If you fail to send a pulse every 20ms, the servo will power down (stop actively driving the motor to a particular position).

See https://www.raspberrypi.org/forums/viewtopic.php?t=46771 for more details and Pi driven solutions.

In Tigerbot, our servos are driven by the Propeller Hat.  This is a microcontroller with 8 cores.  It takes some of the load off the Pi and because it isn’t running an operating system, it is possible to *guarantee* pulse timings.  Our controlling Pi then sends desired servo positions over to the Propeller using I2C, then the Propeller sends servo pulses.  Here’s a demo:

Distance sensing

Last year we ran with ultrasonic ping sensors, but a lot of the teams were using the VL53L0X time of flight sensors with good results.  So this year we thought we’d have a go with some of those too.  We got the ones on a pololu carrier board for about 10 quid each.

And they’re *lovely*.  I think that under the covers they’re doing something very complicated/interesting and hiding all that from us, but the readings we get from them are very accurate and very consistent.  No need for any averaging or filtering code on the Pi side.

Its not all roses though.  The minor downside of that complexity is that you need to initialise them with a C-library.  If you’re using the python library, that’s all taken care of for you, but we are writing our code in Golang, so we had to mess about linking in that C-library.

Another quirk to be aware of – they are an I2C device, so they all need an I2C address.  They come with a fixed one from the factory. If you only have one this is fine, but if you have more than one, they will all have the same address…  Other I2C sensors usually allow you to tune the address with jumpers, but this doesn’t seem to be an option with these boards – at startup you need to hold all but one in reset (using GPIO pins) and then send it I2C commands to change the address, and repeat with a different one in reset.  We decided we didn’t have enough GPIO pins for this.

Alternatively, you can use an I2C multiplexer like the TCA9548A (adafruit do a nice carrier board for it too).  With this, you attach the ToF sensors to the different buses coming out of the multiplexer, then you send commands to the multiplexer to change which bus you want to talk to.

Here’s Tigerbot wearing a few sensors on its front.