GY-63_MS5611/libraries/Radar/readme.md

44 lines
1.0 KiB
Markdown
Raw Normal View History

2013-09-30 12:46:09 -04:00
2020-11-27 05:33:55 -05:00
# Radar
Arduino library for a pan tilt radar based upon 2 servo's.
## Warning
**WARNING: not extensively tested**
There are stil a lot of things to be tested.
The example code is now working to show the concept.
## Description
2013-09-30 12:46:09 -04:00
radar is a concept library not elaborated yet that implements a Ping))) based Radar
2020-11-27 05:33:55 -05:00
with the use of two pan/tilt servo's. It was written after a question on the forum but
never finished or tested it. Still, it has some interesting concepts wrt determine
the position of pan/tilt while in progress.
The idea is that one knows how fast the pan and tilt servos are working in degrees per second.
From that number and the start moment one can determine approximately its position.
Given its position while moving is interesting for radar purposes as one can determine e.g.
in which direction a ping is given and which distance belongs to which pair of angles.
## Interface
TODO - see radar.h file
- **RADAR(pan, tilt)** define pan / tilt pins of the radar. These should be PWM pins.
RADAR_POSITIONS
## Operation
See examples
2013-09-30 12:46:09 -04:00