Skip to main content

Scopes and electronics

An oscilloscope is very important for any electronic enthusiast. Recently I have been trying to send IR remote codes from an arduino board to my TV. I was having some trouble with timings and my TV would not respond properly. Without the oscilloscope this would not have been easy to debug.

I have been looking for some not very expensive, simple to use oscilloscope that can be connected to my computer, so I can save data. I came upon PicoScope. They have a wide variety of products, but the one that caught my eye is the PicoScope 2205 which came in my budget and good enough for my projects. However it is not available in India. Lucky for me my sister and brother-in-law are in UK! I asked them for the PicoScope 2205 and 2 probes (x1 and x10). Thanks to them I now have an oscilloscope.

Contents of PicoScope 2205 and Probes

So when I had to find the IR signal coming from my TV remote, I connected the probe to the IR receiver data out pin on the arduino board and started recording the signal using the PicoLog software. It is really simple to use PicoLog. I did not even read any manual or help files. Launched the app, started a new recording and setup the recording method to "Fast block", and "Stop" action at the end of one run.


Then the recording parameters have to be set a bit. Basically I went for 5 us time base (the lowest I could go to get a full command from my remote) and maximum samples possible. That makes for a 81 ms recording time on the PicoScope 2205 buffer. Good enough, because I know that the signal cannot last for more than 45 ms. I set the range on Channel A to 5V DC.


Finally I had to set the trigger on Channel A to "Falling" direction. That is because I found that for some reason the data out pin on the IR receiver is high when there is no signal and goes low when it detects a IR signal. Set the threshold to 2000 mV, but higher would also work. Just wanted to be on the safe side.


That's it for the configuration part. Next I connected the probe on the data pin of IR receiver and pressed the volume up button on my remote. The trigger happened, data got recorded by PicoLog and this is what I got.


I see a lot of other uses for my oscilloscope in future. I suggest you get one too if you are serious about electronic projects.

Comments

Pico Jeff said…
We're pleased that you found your PicoScope 2205 easy to use. If you haven't used the PicoScope software yet, we recommend that you try it, as it's more powerful than PicoLog. Its main features are illustrated in that poster in the middle of your photo. Best wishes from Pico Technology.

Popular posts from this blog

Attesting General Power of Attorney in SF

Recently I had to go through the motions of getting a General Power of Attorney (GPA) document attested in San Francisco. I am an Indian by birth. My parents were trying to buy a house back in India for me. Since I did not want to travel to India they needed a GPA so that they can act on my behalf to sign all the documents required to buy the house. The problem however is that they needed it urgently because the seller lives in UK and wants to get all the things done quickly so he can go back. My parents send me a GPA document that they obtained from a lawyer. This is a document that will give the power to my parents to buy the said property in the document on my behalf. The lawyer said that I will have to get the document attested at an Indian Consulate in USA. The closest one for me is in SF and I can drive there in about an hour from where I live. So I though it will be like a day's work to get all the things done. I looked up at their  website  for the procedure t...

XBMC / Boxee remote control android app

I have been writing a few android apps over weekends at home and during 20% time at Google. However I never actually released any of them in the android market mainly because they were quick and dirty apps that fit my needs but perhaps would not be appealing to the general public. One such app that I quickly wrote over a couple of weekends is a XBMC remote. The media center that I use at home is XBMC and I have always wanted to have more control and faster access to my media. Using my remote to navigate through the menus is not as fast. Especially when I wanted to queue a lot of music it is very slow. So I wrote this nice little app called "XBMC remote" for my android phone to control XBMC from anywhere :). Give it a try. Search for "xbmc" in android market and install it if you use XBMC as your media center. When you first launch the app you will start with this screen. You will have to setup your web server address, username and password (if required) by ...

Installing Boxee on Gentoo: my experience

You have probably heard of Boxee and Gentoo (come on). I wanted to give Boxee a try, because of all the movies and tv shows that I can watch for free. I have already switched from Freevo to xbmc (which is a story in itself) as my primary media center. Since boxee is a fork of xbmc I thought I might give it a try. Why not? Because xbmc was so easy to compile and install. I did not have any problem compiling the latest code from subversion. I registered and downloaded the latest code from Boxee's website. There is no link to svn and so I downloaded version 0.9.11.5591. The compile was pretty simple 1. Untar the downloaded file 2. autoconf 3. ./configure 4. make -j3 However the compile was not successful. The first problem I ran into was this compile error: XAPP_MC.cpp:12:20: error: bxcurl.h: No such file or directory To solve it, I googled around and found the solution in the boxee forums. I had to make minor modifications to the following Makefiles xbmc/Makefile SRCS += BoxeeAuthen...