Skip to content

Commit

Permalink
Bumped version to 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ArminJo committed Sep 13, 2023
1 parent 86b9d21 commit 48f839b
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,11 @@ VIN sensing
<br/>

# Revision History
### Version 2.0.1 - work in progress
### Version 2.1.0
- Improved examples, especially follower examples.
- Added convertMillimeterToMillis() etc.
- Added Variable computedMillisOfMotorForDistance.
- Added MillimeterPer256Degree and function setMillimeterPer256Degree() instead of using always constants.

### Version 2.0.0
- Renamed instance from RobotCarPWMMotorControl to RobotCar.
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"type": "git",
"url": "https://github.com/ArminJo/PWMMotorControl"
},
"version": "2.0.0",
"version": "2.1.0",
"exclude": "pictures",
"authors": {
"name": "Armin Joachimsmeyer",
Expand Down
4 changes: 2 additions & 2 deletions library.properties
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name=PWMMotorControl
version=2.0.0
version=2.1.0
author=Armin Joachimsmeyer
maintainer=Armin Joachimsmeyer <armin.arduino@gmail.com>
sentence=Control brushed DC motors by PWM and uses optional attached encoders to drive fixed distances. For L298 or TB6612, or Adafruit Motor Shield<br/>
paragraph=With special CarPWMMotorControl for easy control of 2 or 4 motors of the obstacle avoiding <b>arduino robot car kits</b>.<br/>If slot-type photo interrupters or IMU / MPU6050 are attached to the encoder discs of such a kit, deterministic distances and turns can be driven.<br/>Examples include a follower car and an Bluetooth controlled obstacle avoiding car.<br/><br/><b>New: </b>MecanumWheelCar support. Renamed instance from RobotCarPWMMotorControl to RobotCar.<br/>
paragraph=With special CarPWMMotorControl for easy control of 2 or 4 motors of the obstacle avoiding <b>arduino robot car kits</b>.<br/>If slot-type photo interrupters or IMU / MPU6050 are attached to the encoder discs of such a kit, deterministic distances and turns can be driven.<br/>Examples include a follower car and an Bluetooth controlled obstacle avoiding car.<br/><br/><b>New: </b>New functions and improved examples.<br/>
category=Device Control
url=https://github.com/ArminJo/PWMMotorControl
architectures=*
Expand Down
7 changes: 4 additions & 3 deletions src/PWMDcMotor.h
Original file line number Diff line number Diff line change
Expand Up @@ -441,9 +441,10 @@ class PWMDcMotor {
};

/*
* Version 2.0.1 - 09/2022
* - Added computedMillisOfMotorForDistance.
* - Added MillimeterPer256Degree and MillimeterPer256DegreeInPlace instead of using always constants.
* Version 2.1.0 - 09/2023
* - Added convertMillimeterToMillis() etc.
* - Added Variable computedMillisOfMotorForDistance.
* - Added MillimeterPer256Degree and function setMillimeterPer256Degree() instead of using always constants.
*
* Version 2.0.0 - 06/2022
* - Renamed instance from RobotCarPWMMotorControl to RobotCar.
Expand Down

0 comments on commit 48f839b

Please sign in to comment.