Skip to main content

Starting my biggest side project

I've had this idea kicking around for a long time now, to use a camera on some kind of moving thing that takes pictures and puts it on the web. (http://www.uncommonprojects.com/uplog/2008/10/14/coding-a-networked-bike/) But instead of using a bike, since I don't bike often, I want to do this with a kite. "Drones can do that for you so you don't have to fly the kite", you might say. And yes, I do have a drone! But before I sink a lot of money in a nice drone setup and GoPro, I think I better practice with my current (cheap) drone. In the meantime, I want to achieve a few things by jumping into kite aerial photography:

1. Make my own kite. Yes, that's right. With my sewing machine that sits unloved in the corner of my room. That makes for another small sub-side-project: learning how to use my sewing machine.
2. Build somewhat of a camera stabilizing harness. I don't know how that'll turn out, but if it works... I'll be so happy.
3. Trigger a camera running CHDK from my Arduino clone/LinkIt One. The reason I want to use the LinkIt One is that it comes with a gpsr and can also write to a microSD card. When I trigger the camera, I also want to read gps data so I can georeference and georectify my pictures later on a map.
4. Put the places I fly my kite rig on a map (on a personal website). It'd be so cool to map the coastline...

What have I done so far?

1. Got a camera that hopefully will work with CHDK. I haven't loaded CHDK on it yet, but according to the website, it should work.
2. Got the LinkIt One to get gps data and parse the nmea data. Also, checked to make sure that the battery for the LinkIt One will work.
3. Got mini-usb cables.

Next step is to cut up a mini usb cable so I can connect it to the LinkIt One and camera. The goal here is to make the LinkIt One send a 5V signal to the camera to trigger the shutter. Hope I don't blow out any of the electronics. :)

Comments

Popular posts from this blog

Compiling pgmodeler on Yosemite (with Homebrew)

Refer to  pgmodeler installation . Steps: Clone the pgmodeler git repo. Use Homebrew to install qt5 (5.4.2, see here ), libxml2, and postgresql. Edit the pgmodeler.pri (not .pro) file and change these variables: PGSQL_LIB = /usr/local/opt/postgresql/lib/libpq.dylib PGSQL_INC = /usr/local/opt/postgresql/include XML_INC = /usr/local/opt/libxml2/include/libxml2 XML_LIB = /usr/local/opt/libxml2/lib/libxml2.dylib Follow instructions to compile pgmodeler (you might need to put Qt's binaries in your PATH. I was lazy and didn't). $ /usr/local/opt/qt5/bin/qmake pgmodeler.pro $ make $ make install $ cd /Applications $ /usr/local/opt/qt5/bin/macdeployqt pgmodeler.app -executable=pgmodeler.app/Contents/MacOS/pgmodeler-ch -executable=pgmodeler.app/Contents/MacOS/pgmodeler-cli Then I was able to do $ open pgmodeler.app

The end of summer

It's been a wild year. Gains and losses. COVID-19 and the shelter in place. Lately, fires. Today was a very dark day, literally. For about half the daylight hours, there was so much ash in the air that it looked like it was close to sunset, but it was definitely not anywhere near as beautiful. Red sun following us everywhere. Bubonic plague found on fleas in Lake Tahoe. The list goes on and on. Everyone is tired. Exhausted. Burnt out. There is no respite, just a new normal that seems like an even steeper climb than before. Sleep gives way to another day with no refreshment. Yes, that's how things seem. But there have also been bright moments. Time spent with family, especially with the little one. Growing and nurturing plants, building things, trying new recipes, going to the store to shop for dinner, reading books, coloring with crayons... We grow closer together, weaving together a blanket of love and memories that we wrap ourselves in.

pgmodeler build in Debian Jessie

This is my qmake version: $ qmake -v QMake version 3.0 Using Qt version 5.3.2 in /usr/lib/x86_64-linux-gnu I had to edit linuxdeploy.sh: 1. Add "-makefile" to the QMAKE_ARGS variable: $ qmake -h Usage: /usr/lib/x86_64-linux-gnu/qt5/bin/qmake [mode] [options] [files] where mode is either "-makefile" (default) or "-project" QMAKE_ARGS="-makefile -r -spec linux-clang" 2. Right before "Running qmake...", I added another line to include pgmodeler.pro in the qmake invocation: QMAKE_ARGS="$QMAKE_ARGS pgmodeler.pro" Then I ran ./linuxdeploy.sh -no-qt-libs (https://github.com/pgmodeler/pgmodeler/issues/674)