-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathMobaToolsRelNotes.txt
More file actions
117 lines (113 loc) · 5.75 KB
/
Copy pathMobaToolsRelNotes.txt
File metadata and controls
117 lines (113 loc) · 5.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
History of MobaTools releases:
V3.1.1 08-2026
- The time specified when instantiating a MoToTimer object did not start.
V3.1 04-2026
- support of STM32duino core (STMicroelectronics)
V3.0 03-2026
- Old method names (compatibility to V1 ) are no longer available
- Synced stepper movement with acceleration
- support of Samd21 MCU
- support of Arduino Nano ESP32 and ESP S2/S3/C6/C3 series
- support of LGT8F328 with 32MHz
- support of ATtiny2 ( limited, only tested with ATtiny3224)
- stepper pins can be inverted
- some minor enhancements and new functions
V2.7.1 x-2025( not released)
- RP204 processers: priority of timer IRQ can be set in MobaTools.h
V2.7.0 3-2025
- New class for synced move of steppers ( without acceleration )
- Example for synced move
- New example: servos for turnouts
- MoToTimer: new ( optional) parameter for setting the initial time
- Support for rp2040/rp2350 processor ( raspberry pi pico )
- The enable function for steppers can be dynamically switched on/offseveral bugfixes
V2.6.2 9-2024
- ESP32 core version 3.x is supported ( V2.x is still supported too )
- fixed endless rotating when setting moveTo very quickly. (issue#34 on github)
V2.6.1 12-2023
- bugfix with UNO R4Wifi and steppers (with Wifi active)
- 2 more examples ( button matrix and UNO R4 Wifi and stepper )
V2.6.0 12-2023
- Support UNO R4 (Minima and WiFi)
- MoToStepper.read allows reading the angle in fractions
- internal optimizations
V2.5.1 10-2023
- Fix bug when setting stepper speed to 0 multiple times. The stepper stopped immediately when setting
speed to 0 again while the stepper was ramping down from the first setting to 0.
- Fix some bugs when setting low delay times on stepper enable.
V2.5.0 09-2023
- ESP32 board manager V2.x is supported, but the new HW variants (S2,S3,C3) are not yet supported
- ATmega4809 is supported ( Nano Every, UNO WiFi Rev2 )
- .setSpeedSteps(0) is allowed now and stops the stepper without loosing the target position
- .getSpeedSteps() indicates direction of movement ( negative values means moving backwards )
- .attachEnable( int delayTime ) allows disabling of 4-pin steppers (FULLSTEP/HALFSTEP) without
an extra enable pin ( all outputs are set to 0 ). This also works when connected via SPI.
- some more examples
V2.4.3 04-2022
- bugfix for setZero(position) for steppers in FULLSTEP mode
- bugfix with AccelStepper like method names ( compiler error if both libs have been included )
- 2 additional timer examples commented in english
- 1 additional stepper example
V2.4.2 12-2021
- fix bug in MoToStepper.setSpeedSteps ( was possible divide by zero ), ESP crashed
V2.4.1 11-2021
- fix typo ( arduino.h -> Arduino.h ). This created an error on linux.
- some fixes in MoToButtons and documentation
V2.4.0 05-2021
- ESP32 prozessors are supported
- some ATtiny are supported ( needs a 16bit-timer1 amd a SPI or USI hardware )
- Step-tuning for 32Bit prozessors ( except ESP8266 ) for higher steprates
- more examples
V2.3.1 11-2020
- Fix error with doSteps(0) and no ramp. Motor did not stop
V2.3 07-2020
- New class MoToTimebase to create events in regular intervals
- MoToButton: The longpress event is already triggered when the time for longpress expires,
not when the button is released
- MoToStepper: steps per rotation can be changed together with setting a new reference point.
V2.2 03-2020
V2.1 02-2020
- new class 'MoToButtons' to manage up to 32 buttons/switches
( debounce, events 'pressed', 'released', 'short press' and 'long press'
- MoToTimer: new method 'expired', which is only 'true' at the first call
after timer expiry.
V2.0 01-2020
- classnames changed ( the old names can still be used for compatibility,
but should not be used in new sketches)
- ESP8266 is supported
- it is possible to define an enable pin for steppers. This is active
only when the stepper is moving.
- new method 'getSpeedSteps' returns actual speed
V1.1.5 12-2019
- Servo: fix error when 1st and 2nd write ( after attach ) are too close together
V1.1.4 09-2019
- speed = 0 is not allowsed( it is set to 1 internally )
- fix error when repeatedly setting target position very fast
- allow higher steprates up to 2500 steps/sec.
( relative jitter increases with higher rates, abs. jitter is 200µs )
- typo corrected in MoToBase.h
V1.1.3 08-2019
- no more warnings when compiling
- fix error (overflow) when converting angle to steps
- fix error when converting angle to microseconds in servo class
- reworked softleds. Risetimes unitl 10 sec are possible.
V1.1.2 08-2019
- fix error when only servo objects are defined ( sketch crashed )
- two more stepper examples ( thanks to 'agmue' from german arduino.cc forum )
- detach() configures used pins back to INPUT
V1.1 07-2019
- stepper now supports ramps (accelerating, decelerating )
- stepper speed has better resolution with high steprates
- split source into several fuction-specific .cpp files. This
saves flash space if only part of the functionality is used.
V1.0 11-2017 Use of Timer 3 if available ( on AtMega32u4 and AtMega2560 )
V0.9 03-2017
Better resolution for the 'speed' servo-paramter (programm starts in compatibility mode)
outputs for softleds can be inverted
MobaTools run on STM32F1 platform
V0.8 02-2017
Enable Softleds an all digital outputs
V0.7 01-2017
Allow nested Interrupts with the servos. This allows more precise other
interrupts e.g. for NmraDCC Library.
A4988 stepper driver IC is supported (needs only 2 ports: step and direction)