2022-10-21 06:17:48 -04:00
|
|
|
|
|
|
|
[![Arduino CI](https://github.com/RobTillaart/moduloMap/workflows/Arduino%20CI/badge.svg)](https://github.com/marketplace/actions/arduino_ci)
|
|
|
|
[![Arduino-lint](https://github.com/RobTillaart/moduloMap/actions/workflows/arduino-lint.yml/badge.svg)](https://github.com/RobTillaart/moduloMap/actions/workflows/arduino-lint.yml)
|
|
|
|
[![JSON check](https://github.com/RobTillaart/moduloMap/actions/workflows/jsoncheck.yml/badge.svg)](https://github.com/RobTillaart/moduloMap/actions/workflows/jsoncheck.yml)
|
2023-11-14 05:59:49 -05:00
|
|
|
[![GitHub issues](https://img.shields.io/github/issues/RobTillaart/moduloMap.svg)](https://github.com/RobTillaart/moduloMap/issues)
|
|
|
|
|
2022-10-21 06:17:48 -04:00
|
|
|
[![License: MIT](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/RobTillaart/moduloMap/blob/master/LICENSE)
|
|
|
|
[![GitHub release](https://img.shields.io/github/release/RobTillaart/moduloMap.svg?maxAge=3600)](https://github.com/RobTillaart/moduloMap/releases)
|
2023-11-14 05:59:49 -05:00
|
|
|
[![PlatformIO Registry](https://badges.registry.platformio.org/packages/robtillaart/library/moduloMap.svg)](https://registry.platformio.org/libraries/robtillaart/moduloMap)
|
2022-10-21 06:17:48 -04:00
|
|
|
|
|
|
|
|
|
|
|
# moduloMap
|
|
|
|
|
|
|
|
Arduino library for the moduloMap class.
|
|
|
|
|
|
|
|
|
|
|
|
## Description
|
|
|
|
|
|
|
|
The moduloMap is an experimental library that optimizes modular mapping.
|
|
|
|
|
2022-10-23 04:36:41 -04:00
|
|
|
How do I define modular mapping?
|
2022-10-21 06:17:48 -04:00
|
|
|
|
|
|
|
Imagine the mapping of all real numbers on a subset in a modular way.
|
2022-10-23 04:36:41 -04:00
|
|
|
Imagine the real number line rolled around a defined circle with a minimum and maximum value.
|
|
|
|
After one rotation the numbers mapped to start over again.
|
2022-10-21 06:17:48 -04:00
|
|
|
|
2022-10-23 04:36:41 -04:00
|
|
|
E.g. moduloMap(7, 13) maps all the real numbers to the interval \[7; 13> modulo 6.
|
2022-10-21 06:17:48 -04:00
|
|
|
|
2022-10-23 04:36:41 -04:00
|
|
|
So the numbers 7..13 do not change as they are already within the range 7-13.
|
|
|
|
The number 6 is mapped on 12, 5 on 11, 4 on 10, .. 1 on 7, 0 on 12 -1 on 11 etc.
|
|
|
|
Similar the numbers in between e.g 5.5 is mapped on 11.5
|
|
|
|
|
|
|
|
Note: there is no scaling.
|
2022-10-21 06:17:48 -04:00
|
|
|
|
2022-10-23 04:36:41 -04:00
|
|
|
Other name might be circular mapping, although it might be any shape.
|
|
|
|
(for now circles is complex enough)
|
2022-10-21 06:17:48 -04:00
|
|
|
|
|
|
|
|
2022-10-23 04:36:41 -04:00
|
|
|
### Applications
|
2022-10-21 06:17:48 -04:00
|
|
|
|
2022-10-23 04:36:41 -04:00
|
|
|
- modular mapping of rotations to angles.
|
|
|
|
This can be on 0-360 degrees or 0-2PI radians or -180-180 degrees
|
|
|
|
or even -90..270 degrees.
|
|
|
|
- hoist math
|
|
|
|
Imagine a hoist, that needs to roll up / roll off a long rope around a cylinder.
|
|
|
|
- wire cutter
|
|
|
|
Determine the length of a wire for a wire cutter by moving it between two
|
|
|
|
wheels with known circumference.
|
|
|
|
- math fun
|
2022-10-21 06:17:48 -04:00
|
|
|
|
|
|
|
|
2023-11-14 05:59:49 -05:00
|
|
|
#### Related
|
|
|
|
|
|
|
|
Other mapping libraries
|
|
|
|
|
|
|
|
- https://github.com/RobTillaart/FastMap
|
|
|
|
- https://github.com/RobTillaart/Gamma
|
|
|
|
- https://github.com/RobTillaart/map2colour
|
|
|
|
- https://github.com/RobTillaart/moduloMap
|
|
|
|
- https://github.com/RobTillaart/MultiMap
|
|
|
|
|
|
|
|
|
2022-10-21 06:17:48 -04:00
|
|
|
## Interface
|
|
|
|
|
2023-11-14 05:59:49 -05:00
|
|
|
```cpp
|
|
|
|
#include "moduloMap.h"
|
|
|
|
```
|
|
|
|
|
2022-10-21 06:17:48 -04:00
|
|
|
- **moduloMap()** constructor.
|
2022-10-23 04:36:41 -04:00
|
|
|
- **bool begin(float minimum, float maximum)** define the range the numbers should be mapped to.
|
|
|
|
Returns true if minimum < maximum, false otherwise.
|
|
|
|
- **float map(float value)** actual mapping of a value to a number within the range.
|
|
|
|
- **float rotations(float value)** how many ranges (maximum - minimum) fit in a given length.
|
|
|
|
Think of it as how many rotations must a hoist must make to "free" a rope of given length.
|
|
|
|
Or how many rotations a hoist has to make to roll up a rope of given length.
|
|
|
|
This includes the minimum that already has rolled off / should stay rolled off.
|
|
|
|
|
|
|
|
Get internal parameters (for debug)
|
|
|
|
- **float getMinimum()** idem.
|
|
|
|
- **float getMaximum()** idem.
|
|
|
|
- **float getRange()** idem.
|
|
|
|
|
|
|
|
|
|
|
|
## Performance
|
|
|
|
|
|
|
|
Tested with moduloMap_performance.ino on AVR.
|
|
|
|
|
|
|
|
| version | 1000 x map |
|
|
|
|
|:---------:|:------------:|
|
|
|
|
| 0.1.0 | 44120 us |
|
|
|
|
| 0.1.1 | 36340 us |
|
2022-10-21 06:17:48 -04:00
|
|
|
|
|
|
|
|
|
|
|
## Operation
|
|
|
|
|
|
|
|
The examples show the basic working of the functions.
|
|
|
|
|
|
|
|
|
|
|
|
## Future
|
2022-10-23 04:36:41 -04:00
|
|
|
|
2023-11-14 05:59:49 -05:00
|
|
|
#### Must
|
2022-10-23 04:36:41 -04:00
|
|
|
|
2022-10-21 06:17:48 -04:00
|
|
|
- elaborate documentation
|
|
|
|
- add examples
|
2022-10-23 04:36:41 -04:00
|
|
|
|
2023-11-14 05:59:49 -05:00
|
|
|
#### Should
|
2022-10-23 04:36:41 -04:00
|
|
|
|
2022-10-21 06:17:48 -04:00
|
|
|
- move code to .cpp file
|
2022-10-23 04:36:41 -04:00
|
|
|
|
2023-11-14 05:59:49 -05:00
|
|
|
#### Could
|
2022-10-23 04:36:41 -04:00
|
|
|
|
2023-11-14 05:59:49 -05:00
|
|
|
- are there other than circular modulo?
|
2022-10-23 04:36:41 -04:00
|
|
|
- triangular, square, pentagram, fractal?
|
|
|
|
- increasing length per rotation (complex)
|
|
|
|
- add **begin(float radius)**
|
|
|
|
- assumes circle from 0..max
|
|
|
|
|
2023-11-14 05:59:49 -05:00
|
|
|
#### Wont
|
|
|
|
|
|
|
|
|
|
|
|
## Support
|
|
|
|
|
|
|
|
If you appreciate my libraries, you can support the development and maintenance.
|
|
|
|
Improve the quality of the libraries by providing issues and Pull Requests, or
|
|
|
|
donate through PayPal or GitHub sponsors.
|
|
|
|
|
|
|
|
Thank you,
|
2022-10-21 06:17:48 -04:00
|
|
|
|