From 88b71cf553a12b5831a045d113b24530b99545fa Mon Sep 17 00:00:00 2001 From: Fred Grott Date: Mon, 19 Jan 2009 06:59:54 -0600 Subject: [PATCH] created some new functions to enale GPS/Accel value polling. GPS wise demo2 was changed so that we can do both change GPS in non gps suported cases and in GPS supported cases red Gps via polling --- assets/gap.js | 4 +++ assets/index.html | 82 ++++++++++++++++++++++++++++++++++++++++------- 2 files changed, 74 insertions(+), 12 deletions(-) diff --git a/assets/gap.js b/assets/gap.js index 32ab5d67..b81f3dc5 100644 --- a/assets/gap.js +++ b/assets/gap.js @@ -96,7 +96,11 @@ var Device = { FNUUID: "", FNGapVersion: "", + myLat: "", + myLon: "", + myGPSInterval: "30000", + myAccelInterval: "30000", diff --git a/assets/index.html b/assets/index.html index da4b55da..de87a53e 100644 --- a/assets/index.html +++ b/assets/index.html @@ -47,15 +47,35 @@ updateSettings = function() { updateLocation = function(lat, lon) { // updateLocatin based on user input - - - $('lat').value = lat; - $('lon').value = lon; - - - + // $('lat') is already the dom object + // thus we need to + // associate with a Device.Location.lat var + $('lat').value = document.getElementById('lat').value; + $('lon').value = document.getElementById('lon').value; + Device.myLat = document.getElementById('lat').value; + Device.myLon = document.getElementById('lon').value; } +readLocation = function() { + //assume that Device.Location.set ran once and thus + // Device.Location.lat and Device>location.lon are set + Device.Location.init(); + $('userlat').value = Device.Location.lat; + $('userlon').value = Device.Location.lon; + //we need to poll but have poll of functions run more than once during specified interval + setInterval('readLocation()', Device.myGPSInterval); + +} + +userSetIntervals = function() { + //allow user to set intervals for gps and accel polling + //otherwise mad user to do to excessive polling of GPS values and etc + //which reduces battery power + $('usersgpsInterval').value = document.getElementById('usergpsInterval').value; + Device.myGPSInterval = document.getElementById('usergpsInterval').value; + $('useraccelInterval').value = document.getElementById('useraccelInterval').value; + Device.myAccelInterval = document.getElementById('useraccelInterval').value; +} updateAccel = function(){ $('accelx').value = accelX; @@ -77,7 +97,9 @@ addLoadEvent(initGap);