Entries by Kevin Godden

Games For the Raspberry Pi

When setting up the Raspberry Pi for the kids I initially found it quite difficult to find any good games to install, the python games are great for learning to program etc, but as video games they are a bit dull.   Then I came across this list of games that was put together by […]

.NET WPF – Provide value on ‘System.Windows. Baml2006.TypeConverter MarkupExtension’ threw an exception.

Here’s a strange WPF error we encountered at a client’s site today:   [code]Provide value on ‘System.Windows.Baml2006.TypeConverterMarkupExtension’ threw an exception.[/code]   If you get this error, then chances are your running your WPF app on Windows XP, and your app will probably work fine on Windows 7. Here is a good post about the problem: […]

Setting up EdiMax WiFi on Raspberry Pi (EdiMax EW-781Un)

Here is a good article about how to setup a wifi dongle on your Raspberry Pi.   http://dembtech.blogspot.ie/2012/09/how-to-install-wifi-on-raspberry-pi.html   I used the terminal version of wicd – wicd-curses over SSH to set-up my EdiMax EW-781Un as I don’t have a screen connected to my smart-cam simulator. You don’t have to install any other software as […]

WPF Slider Not Working with Touch Screen

We hit a problem yesterday when we were testing one of our Microsoft WPF applications on a touch screen set-up, one of the app’s sliders wasn’t correctly responding to touch events and it couldn’t be dragged properly using the touch screen even though mouse control still worked perfectly.   It turns out that there is […]

Web2py and Apache running on Raspberry Pi

As part of my smart-cam simulation project I have installed web2py and Apache on a Raspberry Pi, the idea here is to simulate the ARM platform on which the smart-cam web UI software will eventually run by using the Pi until the real hardware is sorted out and available. This will allow me to do […]

Kids Drawing and Painting app for Raspberry Pi

If you are setting your Raspberry Pi up for the kids you may have noticed the lack of a bundled paint and drawing app, well not to worry TuxPaint is available for a quick install, just launch a terminal and run the following command to install it: [code] sudo apt-get install tuxpaint [/code] Then you […]

Python & Web2py for Smart Camera user interface?

I am currently in the planning phase of the software build for a new machine vision smart camera. The camera will have an ARM soft core and will run linux. Part of the planning involves thinking about a user interface to control and configure the camera – at the moment I am leaning towards an […]