Skip to content

Commit b14756f

Browse files
authored
Merge pull request #16 from arduino-libraries/devel
1.0.0 - first release
2 parents 956eea1 + 7b7cdaa commit b14756f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=Arduino_AlvikCarrier
2-
version=0.4.1
2+
version=1.0.0
33
author=Arduino, Giovanni di Dio Bruno, Lucio Rossi
44
maintainer=Arduino <[email protected]>
55
sentence=Library and firmware for Arduino Alvik Carrier board

src/definitions/robot_definitions.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,14 @@ const float MOTOR_RATIO = MOTOR_CPR*MOTOR_GEAR_RATIO;
4545
#define ROTATE_KI_DEFAULT 0.01
4646
#define ROTATE_KD_DEFAULT 0.001
4747
#define ROTATE_CONTROL_PERIOD 0.02
48-
#define ROTATE_MAX_SPEED 45.0
48+
#define ROTATE_MAX_SPEED 170.0 //45
4949
#define ROTATE_THRESHOLD 1
5050

5151
#define MOVE_KP_DEFAULT 4.0
5252
#define MOVE_KI_DEFAULT 0.01
5353
#define MOVE_KD_DEFAULT 0.001
5454
#define MOVE_CONTROL_PERIOD 0.02
55-
#define MOVE_MAX_SPEED 45.0
55+
#define MOVE_MAX_SPEED 130.0 //45
5656
#define MOVE_THRESHOLD 3
5757

5858
#define MOVEMENT_DISABLED 0
@@ -86,9 +86,9 @@ const float MOTION_FX_PERIOD = (1000U / MOTION_FX_FREQ);
8686

8787

8888
// Library version
89-
#define VERSION_BYTE_HIGH 0
90-
#define VERSION_BYTE_MID 4
91-
#define VERSION_BYTE_LOW 1
89+
#define VERSION_BYTE_HIGH 1
90+
#define VERSION_BYTE_MID 0
91+
#define VERSION_BYTE_LOW 0
9292

9393

9494

0 commit comments

Comments
 (0)