Hi I am in need of some help on this one.
Background:
Radio Direction Finding is something that a bunch of us do on a regular basis. Basically it is hide and seek over a large area and you hunt the person transmitting down in a vehicle (or on foot). At present time I use a sniffer and a directional antenna to determine the direction of the transmitter. It works VERY well, the problem is I need to get out of my truck to get a good indication on the direction the antenna is pointing.
This is where the Arduino comes in...
I need some way of determining a heading of the transmitter that can be sent to Google Eatth
This has four major sections:
1. - Get the heading of my truck via GPS ( I know I need to be moving for that to work) I would like to feed NEMA data into the Arduino from an external GPS.
2. - Get the direction the antenna is pointed RELATIVE TO THE TRUCK, need something attached to the antenna mast that can indicate rotary position and can be turned repeatedly.
3. - Calculate the direction of the transmitter.
// calculate heading of transmitter relative to vehicle heading
if (antenna_heading + vehicle_heading > '360'){
// heading total is less than 360, good to go
transmitter_heading = antenna_heading + vehicle_heading;
}else{
// heading total is over 360, fix it
transmitter_heading = (antenna_heading + vehicle_heading) - 360;
}
4. - Send info to Google Earth via the serial port. Can that be done? I know Google Earth will accept it but will the Arduino send it?
Will it work?
Suggestions for parts?