Monthly Archives: February 2012

Serial Transfer of Text File from PC to Arduino

I need to make a GPS Simulator to assist in the development of my Predictive Lap Timer Project. I have some data files (Race Technology DL-1 Data Logger) from racing at various tracks, and I realized I could use this … Continue reading

Posted in Uncategorized | Tagged , , , , , , , , , | 2 Comments

Arduino Bootloader Untangled

Ever try to study the Arduino Bootloader, but give up because the code seemed too confusing? Fools ignore complexity. Pragmatists suffer it. Some can avoid it. Geniuses remove it. -Alan Perlis Not that I’m a genius, I was just getting … Continue reading

Posted in Uncategorized | Leave a comment

Determine Which Arduino µC Your Code is On?

Need to determine which Arduino µC processor (ATmega168, 328, 1280 or 2560) your code is running on? Simply access the signature bytes. Example: Which produces the following output on an Arduino Mega (ATMega1280): 1E 97 3 Signature Bytes: ATmega168 0x1e … Continue reading

Posted in Uncategorized | Leave a comment

Book Recommendation

Caveat: It’s always risky to prescribe the best of anything. “bestness” can’t be proved objectively unless everybody has agreed in advance to the terms-and that would take much of the fun out of it. -Paul A. Merriman While I hesitate … Continue reading

Posted in Uncategorized | Tagged , , , , , , | Leave a comment

Arduino Assembly Language Listing of Compiled Sketch (Windows)

[updated on 1.10.22 for the 1.8.15 IDE version] We will use the very basic blink sketch as an example: Use the following steps: 1. Compile the sketch inside the arduino IDE. 2. Go to your command prompt and navigate to … Continue reading

Posted in Uncategorized | Tagged , , , , , | 5 Comments

AIM IR Beacon Transmitter Substitute

adafruit TV-B-Gone as Transmitter If an AIM transmitter beacon is not available, or if one wants to operate the lap timer system on a “private coded” IR signal which prevents interference with others, you could easily make your own transmitter. … Continue reading

Posted in Uncategorized | Leave a comment

Video Demonstration of arduino IR Lap Timer Project

A short demo video: Project information, including schematic and source code is located here.

Posted in Uncategorized | Leave a comment

Arduino IR Lap Timer

Here is my original arduino-based IR Lap Timer. It responds to an AIM beacon code. The display is in hundredths of seconds, with 4-digits allowing a maximum lap time of 99.99 seconds (no decimal point is displayed). However, the device … Continue reading

Posted in Uncategorized | Tagged , , , , | 22 Comments

GPS Based Predicitve Lap Timer Project

Teaser Alert: Here is a picture of a project I’m currently working on: GPS based predictive lap timing. As you can see in the picture, I’m using an ATmega32U4 based Teensy USB Dev Board and a LOCOSYS LS20031 5Hz GPS. … Continue reading

Posted in Uncategorized | Tagged , , , , , , | 2 Comments

µLogTimer: Lap Timer Project Source Code

Posted here for convenience. Source code consists of the following 6 files: uart.h uart.s dataflash.h dataflash.c uLogTimer.h uLogTimer.c

Posted in Uncategorized | Tagged , , , , , , | Leave a comment