Disclaimer

This blog is for entertainment purposes only, and is not meant to teach you how to build anything. The author is not responsible for any accident, injury, or loss that occurs as a result of reading this blog. Read this blog at your own risk.

Wednesday, September 28, 2016

Rough River 2016

Best RR ever!

This is my sixth consecutive year attending CSA’s Rough River fly-in, I am a proud repeat offender. As a canard builder it is more of a pilgrimage than just a fly-in. 

In RR you feel like these people “get you”, and for a couple of days you are no longer the weirdo building a backward looking airplane in a space that should have housed a car, but a forward looking superhero able to create awesomeness from nothingness.

This year, Wade and I joined the ranks of those who flew there, and while we did not do it with our own build yet, touching down in Rough River was like a home coming.




Attendance was the highest I’ve ever seen, I think the count was around 80 planes, 69 of which canards.

Worthy of notice is the fact that Terry Lamp, the builder who’s plane I am now flying, was in attendance, and it was awesome being able to reunite the two of them after a 9 year separation. 

Terry and I got to talk shop, compare notes, and go flying together. It was truly a fantastic time, highlighted by some of the best weather in weeks.





Terry's flight




I said in the past I wanted to give builders rides whenever I’d fly to Rough River, and I was able to keep my promise by taking Mike Beasley, Terry Lamp, and Wade Parton flying. Ary Glantz was unfortunately not in attendance, or it would have likely been my next “victim”.






The trip back (185 kts GS) was as incredible as the trip over (175 kts GS),  we flew at 11'500 ft and 2500 rpm, and got 6.5 gph. 

Terry has built an awesome airplane, and I can only hope that my airplane will prove to be as good as his.


Sunday, September 04, 2016

Voltage regulator (aka Pitot power) - part 6

OLED display
I decided to use an OLED (Organic Light-Emitting Diode) screen for displaying Pitot probe and nose foam temperatures. OLEDs have a few advantages over regular LED displays among which is not needing to be backlit, which improves the depth of the black color, reduces power consumption, and eliminates additional sources of light in the cockpit.

The 1.5” unit I purchased (3.8 cm) came from Adafruit Industries, and was probably originally intended to be used on some older cell phone. The good news for me is that I should be able to wire it to the Arduino's digital outputs, and program its behavior via software (C++).


SSD1351 color OLED display

To answer your next likely question… “No, I have never done this before”, but then again, I also have never built a plane before, so we shouldn’t let a little challenge slow us down.

Back to the screen… 

I only intended the screen to be used during the initial testing phase to verify my expectations of the Pitot tube effectiveness, and make appropriate changes to the power supply unit, but it could be left in the cockpit if one wished.

The main purpose of course would be to display the actual Pitot temperature, and also the temperature of the foam surrounding the Pitot installation. The foam being the weakest thermal link of this installation.

The display arrived with the pins not connected, so some soldering was required.


Back side of the SSD1351 as it came in the mail

With those in place, it was time to make the connection with the Arduino, and make sure I could get the screen to work.


The serial connection only takes 7 wires, and it's just fast enough for this project.

There are two different ways to hook this screen up, I had to go for the slower connection because most of my Arduino digital output pins were already spoken for. It’s still plenty fast for what I will use it for, but I also lost the ability to use the micro SD port on the back side of the screen. 

With a little more work I was able to make the Arduino write some text on the display. The fist time you do this is very exciting.





Getting the screen to show something




When I went to integrate the OLED into the Pitot heating circuitry, I had barely enough digital output ports to connect it, so I ended up connecting the air/ground logic switch input to an analog port. Turns out you can use analog ports as digital, but not the other way around.

Here’s the “spaghetti diagram” of the working Pitot heating system with the OLED…


In case you were wondering how it all fit together

Because I needed a custom enclosure for the display, I decided to design one myself, then 3D print it in ABS on the Zortrax M200.

Of course I had to recreate the OLED in CAD first. 

Virtual OLED drawn in Fusion360
Actual OLED

Yes, the bent pins and the soldered tips were a pain to draw.

With that done, I designed a small enclosure for the cockpit.


The base of the enclosure...

... with the OLED installed...

3D printed enclosure
... and the top cover on.

One thing that bothered me about having such a big screen, was using it to display just two numbers, so I started thinking about adding a graphing window for the probe temperature in the bottom section of the screen.

This is the part that took the most to get right, because I had to develop the code to control every pixel of the graph individually and continuously.  For example, in order to represent the passage of time, I needed to shift the graph to the left, and to do that every pixel needed to be deleted individually (read "overwritten in black"), and redrawn one pixel to the left at every measuring cycle, while the new temperature reading would be added on the far right of the screen.

It all took some time to get right, but this gave me the ability to monitor the temperature trends in real time, all the while  being able to look back at a couple of minutes of historical data as well.

I bet you’ll like the results.





Testing the newly developed graphing software




This almost creates a TMI (Too Much Information) situation, but it’s perfect for testing purposes, where you want to know everything that is going on with your installation.

Talking about TMI, I wanted to show Wade how the air/ground logic switch would affect the Pitot, so I shot a quick video for him that ended up being too long to sent, so I threw it on YouTube.





Testing the code for the air/ground logic




In the video I am doing the switching by hand, but on the final airplane installation an air pressure activated switch will automate this task.

The only thing left to do was to rig up my car and go collect some actual data on the road.


Official "EZ shop research/test vehicle"

Needless to say, this did attract a lot of attention on the highway

A view from the inside

After quite a few runs with marginal to disappointing results, I diagnosed a weak battery, and replaced it with a known good one. Things improved immediately, but it was too late in the day to run all the previous experiments again, tough I was able to run a static ice melting test.





"Severe icing" condition encounter




At this point, I am comfortable saying that I might be on the right path to cracking this "nut" once and for all. More testing will be necessary to confirm my expectations, but I feel like I am getting really close to a final solution.


Stay tuned…