Garmin Plugin Test Page


Initalizing and finding devices

Is Plugin is installed in your browser:
JSDoc for the above command:
garminGpsPlugin.getVersionXml()

Unlock the Plugin and start finding devices:
(You can get a key here: Garmin Plugin Site Key Generator )

JSDoc for the above command:
garminGpsPlugin.unlockl(url, code) garminGpsPlugin.startFindGpsDevices()

Display xml information about the devices found:
JSDoc for the above command:
garminGpsPlugin.finishFindGpsDevices() garminGpsPlugin.getDevicesXmlString()


Reading from a device

Initiate Read GpsXml from device number 0:
JSDoc for the above command:
garminGpsPlugin.startReadFromGps(deviceNumber)

Check if read is complete:
JSDoc for the above command:
garminGpsPlugin.finishReadFromGps() garminGpsPlugin.getGpsProgressXml() garminGpsPlugin.getGpsXml()

Writing to a device

Filename to be put on the device:
Data to be written:
Write Gps data to device number 0:
JSDoc for the above command:
garminGpsPlugin.startWriteToGps(gpsXml, filename, deviceNumber)

Check if write is complete:
JSDoc for the above command:
garminGpsPlugin.finishWriteToGps() garminGpsPlugin.getGpsProgressXml()


Reading Fitness Data from a device

Initiate HISTORY (TCX) read from device number 0: Check if read is complete: Cancel read:

Reading Fitness Directory from a device

Initiate HISTORY (TCX) Directory read from device number 0: Check if read is complete: Cancel read:
Initiate COURSE (TCX) read from device number 0: Check if read is complete: Cancel read:

Writing Fitness Course to a device

Filename to be put on the device:
Data to be written:
Write Gps data to device number 0:
JSDoc for the above command:
garminGpsPlugin.startWriteFitnessData(tcdXml, deviceNumber, filenameFitness, deviceDescription)

Check if write is complete:
JSDoc for the above command:
garminGpsPlugin.finishWriteFitnessData() garminGpsPlugin.getProgressXml()