GY-63_MS5611/libraries/Radar
2021-12-27 20:23:58 +01:00
..
.github/workflows 0.1.6 Radar 2021-12-27 20:23:58 +01:00
examples/radarDemo 0.1.6 Radar 2021-12-27 20:23:58 +01:00
test 0.1.6 Radar 2021-12-27 20:23:58 +01:00
.arduino-ci.yml 0.1.6 Radar 2021-12-27 20:23:58 +01:00
keywords.txt 0.1.6 Radar 2021-12-27 20:23:58 +01:00
library.json 0.1.6 Radar 2021-12-27 20:23:58 +01:00
library.properties 0.1.6 Radar 2021-12-27 20:23:58 +01:00
LICENSE 0.1.6 Radar 2021-12-27 20:23:58 +01:00
radar.cpp 0.1.6 Radar 2021-12-27 20:23:58 +01:00
radar.h 0.1.6 Radar 2021-12-27 20:23:58 +01:00
readme.md 0.1.6 Radar 2021-12-27 20:23:58 +01:00

Arduino CI Arduino-lint JSON check License: MIT GitHub release

Radar

Arduino library for a pan tilt radar based upon 2 servo's.

Warning

WARNING: not extensively tested There are still a lot of things to be tested. The example code is now working to show the concept.

Description

Radar is a concept library (not elaborated) that implements a Ping))) based Radar with the use of two pan and tilt servo's. It was written after a question on the Arduino forum but never finished or tested it. Still, it has some interesting concepts with respect to how to determine the position of pan/tilt while the movements are 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 therefore which distance belongs to which pair of angles.

Note: no active development

Interface

TODO elaborate

Constructor and config

  • RADAR(pan, tilt) define pan / tilt pins of the radar. These should be PWM pins.

Note: no valid range checking or negative value check.

  • void setPanPerSecond(float pps)
  • float getPanPerSecond()
  • void setTiltPerSecond(float tps)
  • float getTiltPerSecond()

basic moves

  • void gotoPan(const int16_t pan)
  • int16_t getPan()
  • void gotoTilt(const int16_t tilt)
  • int16_t getTilt()
  • void gotoPanTilt(const int16_t pan, const int16_t tilt)

memory positions - store / recall?

  • uint8_t getMaxPositions()
  • bool setPosition(const uint8_t index, const int16_t pan, const int16_t tilt)
  • bool getPosition(const uint8_t index, int16_t & pan, int16_t & tilt)
  • bool gotoPosition(const uint8_t index)
  • void setHomePosition(const int16_t pan, const int16_t tilt)
  • void gotoHomePosition()

feedback on positions.

  • bool isMoving()
  • bool isPanMoving()
  • bool isTiltMoving()

Operation

See examples

Future

  • improve documentation.
  • test more (e.g. continuous servo versus 180 servo).
  • add sketches.
  • remember lastPing (angle pan tilt).
  • check TODO's in code.
  • single servo radar (Pan only) as derived class.
  • dynamic allocation of position arrays.