19 posts
Posted 28 March 2016 - 09:04 PM
like the title says, is there anyway to make the gps faster to respond? because it has a delay.
1426 posts
Location
Does anyone put something serious here?
Posted 28 March 2016 - 09:35 PM
The gps.locate method takes a timeout parameter:
local x, y, z = gps.locate(1) -- 1 second instead
Be warned: If you make it too small not all modems may respond in time
756 posts
Posted 28 March 2016 - 10:08 PM
gps.locate should even return earlier than your set timeout if it receives at least 3 replies.
If you experience any noticeable delay, it may mean you set up your gps array incorrectly.
Edited on 28 March 2016 - 08:09 PM
19 posts
Posted 29 March 2016 - 08:59 PM
thanks <3