English 中文(简体)
两个点之间的时间测量
原标题:Time measurement between two points

i 需要测量两点之间的时间。 我无法使用简单的手表, 因为我没有免费的手。 (“ 坚固的” mountainbike - downhill )

我的第一个想法是设置两个GPS点,并测量这两个点之间的时间,但我认为这样做是不准确的。

我的第二个想法是将一个蓝牙装置设置到每个点, 测量从我到蓝牙装置的距离, 检查最短的距离并节省时间。

但比起我意识到 我需要三个蓝牙装置 来计算距离,这有点烦人

Any idea how i can measure the time between two points with an accuarcy <1sec ? I want to control this via smartphone.

编辑 :

Okay i have another idea. Maybe i could set one bluetooth device to each point. I set the signal strenth to <=1m. Than i could easily start and stop the time until i receive the bluetooth signal on my android. Do you think this would be the best approach ?

最佳回答

It seems you re trying to take total and split times for a course. Definitively, forget of using bluetooth for other things that are not constant transmissions, with slow connection time... (I speak from experience). Of course you want to do it in the cheap, because there already professional solutions for that (e.g.). From my point of view, if you want something accurate and been able to integrate it with you phone, you ll need the following:

  1. DIY photocell sensors. Maybe involving simple chip (e.g. msp430), phototransistor-diode pair, cheap 433mhz transmitter and batteries.
  2. DIY 433mhz receiver for your phone. There already many boards that supports android open accessory library, (e.g. 49$ from sparkfun), so you only have to connect it to a 433mhz receiver and to your phone.
  3. Custom code programming in your android phone. To be able to receive the signals from the split signal senders and keep track of all times.

这个计划在250-200美元以下(如果你自己做了:P),

问题回答

不需要任何特殊硬件的一个可能的解决办法就是在终点线使用智能手机。 您只需要有网络连接的专用智能手机和一些软件。

  1. SP sends the start signal to your phone. You start when you hear the signal.
  2. SP uses its camera to detect when you reach the finish line.
  3. SP calculates the time between start and stop and displays it, and possibly sends the info to your phone, too.

也许你甚至可以录一段带时间邮票的录像

(当然,低成本的解决方案是让其中一人在终点线使用手表。 )





相关问题
Query about getting GPS Location

Is there any way to set Criteria for LocationProvider depending upon the network provider, means determining whether the network provider supports CellSite mode or autonomous mode or any other mode. ...

Android google map myLocationOverlay disappears?

I try to add myLocationOverlay to the map. It was not there at first, then when I send the gps position from the ddms, then the blue shining dot appear. However, after awhile, the blue dot disappear ...

Accessing GPS Data From a .Net Winform Application

Does anyone out there have any experience programatically retreiving the lat/long from a GPS attached to a mobile PC? A team I m on is currently looking at hardware options--as the programmer who ...

Can Google Maps plot points based on Hours Minutes Seconds

I m trying to plot out GPS data that is given to me in Hour Minute Second degree format. Will GLatLng take it in this form or do I need to convert it first. Having a hard time finding anything on the ...

热门标签