Skip to content

Commit

Permalink
Merge pull request #16 from arduino-libraries/devel
Browse files Browse the repository at this point in the history
1.0.0 - first release
  • Loading branch information
gbr1 authored Mar 19, 2024
2 parents 956eea1 + 7b7cdaa commit b14756f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=Arduino_AlvikCarrier
version=0.4.1
version=1.0.0
author=Arduino, Giovanni di Dio Bruno, Lucio Rossi
maintainer=Arduino <[email protected]>
sentence=Library and firmware for Arduino Alvik Carrier board
Expand Down
10 changes: 5 additions & 5 deletions src/definitions/robot_definitions.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,14 @@ const float MOTOR_RATIO = MOTOR_CPR*MOTOR_GEAR_RATIO;
#define ROTATE_KI_DEFAULT 0.01
#define ROTATE_KD_DEFAULT 0.001
#define ROTATE_CONTROL_PERIOD 0.02
#define ROTATE_MAX_SPEED 45.0
#define ROTATE_MAX_SPEED 170.0 //45
#define ROTATE_THRESHOLD 1

#define MOVE_KP_DEFAULT 4.0
#define MOVE_KI_DEFAULT 0.01
#define MOVE_KD_DEFAULT 0.001
#define MOVE_CONTROL_PERIOD 0.02
#define MOVE_MAX_SPEED 45.0
#define MOVE_MAX_SPEED 130.0 //45
#define MOVE_THRESHOLD 3

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


// Library version
#define VERSION_BYTE_HIGH 0
#define VERSION_BYTE_MID 4
#define VERSION_BYTE_LOW 1
#define VERSION_BYTE_HIGH 1
#define VERSION_BYTE_MID 0
#define VERSION_BYTE_LOW 0



Expand Down

0 comments on commit b14756f

Please sign in to comment.