Close

Pi Zero Project Update

A project log for Mr. Gibbs

A powerful, inexpensive, and extensible tactical sailing computer

brook-pattenBrook Patten 03/14/2016 at 03:280 Comments

Read this post on my Blog

#Hardware#

The big change for the 2016 prototype is the change from the Raspberry Pi 2, to the Pi Zero. This change does a number of beneficial things such as lowering overall cost, increasing battery life, and shrinking the footprint.

Getting Mr. Gibbs to run on the Pi Zero took a little effort. The latest changes to the bluetooth stack require a bleeding edge version of Mono, and Mono does not (that I've found anyway) provide armel CI builds that will run on the Zero. The good news is that [building Mono from source on the Pi Zero](https://github.com/brookpatten/MrGibbs/blob/master/README.md) is pretty straightforward, if time consuming.

In the interest of saving time between iterations, I went ahead and bought all parts in triplicate to make 3 eventual prototypes.

The [new protoboard](http://amzn.to/1Llj86z) is 3cm x 7cm to roughly match the size of the Pi Zero. The circuit is very simple, UART tx/rx to the GPS, i2c sda/scl to the HMC5883L compass and MPU-6050 accelerometer, and +5V/grd to everything. I added a 90 degree header to act as a plug for the [power regulator](http://amzn.to/1Llj86z), and a [40 pin male header](http://amzn.to/1LljRF3) to connect to the Pi.

The [40 pin female](http://amzn.to/1pFLpLk) connector is soldered to the back of the Pi Zero, and the 2 boards snap together via the 40 pin connector, and then the Pi is attached to the [18650 battery holder](http://amzn.to/24Z6iRU) via double sided tape. The [GPS antenna](http://amzn.to/1YPeXCd) is secured to the end with tape as well.

For an enclosure, I decided to build my own out of 2" PVC pipe which is readily available, cheap, and water tight.

I did some basic tests to ensure it was waterproof in a 5 gallon bucket.

I still have a bit more to do in terms of testing and configuration, I'm having some issues with i2c on the Zero, and the new GPS (I changed vendors to save $6, always a good idea) but I'm hopeful these issues will be resolved soon.

---

#Software

The biggest change in terms of software has been to get the Bluetooth Low Energy Wind speed/direction sensor working. This allows a slew of new interesting metrics.

* Apparent Wind Direction

* Apparent Wind Speed

* True Wind Direction

* True Wind Speed

* Mast Heel

* Mast Pitch

* Mast Bend Beam (Difference in angle left/right from hull sensor to mast sensor)

* Mast Bend Centerline (Difference in angle front/back from hull sensor to mast sensor)

* Peak Speed in Knots (peak speed from Polar Chart for current true wind speed/direction)

* Peak Speed Percent (current speed as a percent of peak)

The last one is the one I am most interested in. The end goal has always been to have Mr. Gibbs process as much objective data as possible and distill it down to simple numbers for the Skipper. In theory I want 3 numbers.

* Am I going the right direction (AKA, VMC %)

* Am I going fast (Peak Speed Percent)

* What should I be doing next (TBD, but one idea is distance until next tack)

With VMC % working last season, and now Peak Speed % too, we're making real progress toward this goal.

---

The other big development has been the addition of persistence plugins. Currently there are 2, both of which use Sqlite and Dapper to record data. The first is the StateLogger plugin, which simply logs all the values to a set of tables. A new database is started at each boot so that individual days of data can easily be removed.

The second is the PolarRecorder, which takes the current true wind speed/direction and looks up a normalized polar value on the current chart. If the current boatspeed is better than the existing value it updates the polar, if not, it returns the existing value as the peak for metrics. The idea is that over the course of the season we will build out polars for our boat based on empirical data.

---

That's all for now, progress is happening quite quickly now since most of the work is in the managed space. My first regatta is mid-April so I'm hoping to have all of the [2.0](https://github.com/brookpatten/MrGibbs/issues) issues complete by then.

Discussions