My new “oldskool” project

Today i’ve started on a new project.
Without using to much words, here is the first test results:

Tags: , , ,

Friday, February 10th, 2012 Arduino, Development, Electronics No Comments

My new home…

Hi guys,

welcome to my new home! My previous website shjansen.nl is no more! :(

Perhaps that I will try to import some old posts, but no guaranties on that one ;)
Got the old posts imported… :)

Wednesday, August 10th, 2011 Uncategorized No Comments

New electronics project…

Recently I’ve started a new electronics project.

Today I’ll show the first part of the project; Dismantling! :D



Yes! It’s a Nintendo DS Lite, that I’ve bought from a colleague.
It has a broken hinge and because of that, the ribbon cable that provides data for the top screen is broken.

So I had to buy some replacement parts. After considering to buy them on DealExtreme, I decided to buy them at a shop that could provide more quality. So thanks Consolepro.nl for shipping them very fast! :)

The part list looks like this:

  • Full case
  • Hinge
  • Top LCD Screen

I’ll add some pictures of the new parts soon.

A little downside of the DS Lite was that it had the speakers soldered onto the ribbon cable of the top screen. Not having a solder iron, I had to buy one. Luckily for me, I have a smart friend with some experience in that field! :) (Thanks Maarten!) So after some looking around I finally bought this beauty at Eleshop.nl:

Aoyue 936

As soon as the delivery guy delivers this thing, I can start the next step; Reassembly! ;)

This is also where the post stops, and the next one will continue.

Tags: , ,

Wednesday, April 20th, 2011 Electronics Comments Off

Subversion: creating and applying a patch

At work I do versioning of the code with SubVersion (SVN).
Sometimes I have to create a patch for a quickfix on a live/release version.

Because I don’t do it that much, I have to look up how to apply a patch every time I need to…
So this post is for archiving reasons (and to help you guys out) ;)

We only use commandline SVN, so thats the only way I’m going to show this to you.

create a patch:

svn diff filename > /tmp/filename.patch

applying a patch (make sure that you are in the right directory):

patch -p0 < /tmp/filename.patch

This way the diff is written to the .patch file and then you can apply it to a different environment by using the patch command and the patch file as input.

Tags: , , ,

Monday, April 4th, 2011 Development Comments Off

TIP: Disable trackpad when external mouse is connected

Today i’ve got a small but very useful tip for Mac users!

My very first Mac came with MacOSX 10.4 (Tiger) and this version had a nifty setting under the mouse settings in System Preferences.
If you checked the box, your trackpad would be disabled as soon as you would connect an external mouse or other pointing device.

Today I was looking for this option in MacOSX 10.6 (Snow Leopard), but wasn’t able to find it under mouse or trackpad settings in System Preferences. After searching with Google, I finally found the setting being under a very different tab in System Preferences.

You can find the setting under Universal Access, the tab “Mouse & Trackpad”…

Check the box saying “Ignore built-in trackpad when mouse or wireless trackpad is present” and your internal trackpad will be disabled when you connect your usb mouse / wireless mouse / wireless trackpad.

Monday, March 28th, 2011 Apple, Mac OS X Comments Off

Language switch

Ik heb besloten om mijn blog vanaf heden in het Engels te gaan doen. Ik zal proberen sommige posts om te zetten naar het Engels, maar kan niks beloven! :P

From now on i’ll be using English in my blog posts instead of Dutch. I’ll also try to translate the Dutch posts into English, but i can’t promise anything! :P

Thursday, March 3rd, 2011 Other Comments Off

Sparkfun’s 7-Segment Serial Display

Sinds kort heb ik een 7-Segment Serial Display van Freeduino.eu (gemaakt door Sparkfun)
Deze komt in verschillende kleurtjes (rood, groen, geel en blauw), maar het leek me leuk om eens af te wijken van de standaard 7-Segment display kleuren en voor blauw te gaan.

Het mooie van dit display is dat het op een breakout board zit met daarop een ATMega328 microprocessor. Ik had ook alleen het display zelf kunnen nemen, maar waarom moeilijk doen met shiftregisters of een hoop aansluitingen, dus nam ik een “kant-en-klare” oplossing. Hierdoor is het enorm makkelijk aan te sluiten op een van mijn Arduino’s.

Je kunt op twee manieren communiceren met het display, namelijk SPI en Serial. In dit geval heb ik voor de laatste optie gekozen omdat je hiermee maar 3 draden nodig hebt om hem aan te sluiten.
Omdat de ATMega328 die voor de aansturing zorgt al reeds is voorzien van code, kun je met een paar simpele libraries en wat regels code al wat laten verschijnen op het display.

In de volgende post zal ik wat dieper ingaan op de code en hoe je bepaalde settings kunt aanpassen…

Tuesday, February 22nd, 2011 Arduino, Development Comments Off

ColorChecker

Omdat ik op het moment bezig ben met aanpassen van een template voor een systeem, had ik er genoeg van om steeds via paint of photoshop op te zoeken wat de kleur was van een kleurcode.

Daarom heb ik snel maar even een klein programma geschreven om te kijken welke kleur er verschuilt achter de kleurcode.
Heb er zeer weinig tijd in gestoken (ongeveer 10min), dus verwacht geen fantastische afhandeling van errors e.d.

ColorChecker screenshot

De applicatie is HIER te downloaden als zipfile en na het uitpakken kun je setup.exe draaien!

Wednesday, September 22nd, 2010 C#, Development Comments Off

Nieuw speelgoed

Sinds enkele weken heb ik wat nieuw speelgoed om de avonden mee door te komen.

Hieronder even snel een foto van hoe het eruit ziet:

Arduino Duemilanove

“Wat kun je ermee?”, hoor ik je al vragen.

› Continue reading

Tuesday, June 1st, 2010 Arduino, Development Comments Off

Mijn nieuwe HD capture device

Vandaag heb ik mijn nieuwe HD capture device (Hauppauge HD PVR) binnen gekregen.

De bedoeling is om mijn game sessies ermee te capturen en ze vervolgens te editten.
Hieronder zie je alvast een voorbeeldje van de kwaliteit van mijn capture device.

Klik de link als je de 720p versie wilt zien: Hauppauge HD PVR Test

Tags: , , , , ,

Monday, May 10th, 2010 Other Comments Off