summaryrefslogtreecommitdiff
path: root/digital/mimot/src
diff options
context:
space:
mode:
Diffstat (limited to 'digital/mimot/src')
-rw-r--r--digital/mimot/src/dirty/models.host.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/digital/mimot/src/dirty/models.host.c b/digital/mimot/src/dirty/models.host.c
index 40586673..521b2b3c 100644
--- a/digital/mimot/src/dirty/models.host.c
+++ b/digital/mimot/src/dirty/models.host.c
@@ -93,6 +93,23 @@ static const struct robot_t guybrush_robot =
NULL,
};
+/* APBirthday, APBTeam 2013. */
+static const struct robot_t apbirthday_robot =
+{
+ /** Auxiliary motors, NULL if not present. */
+ { &motor_model_def_amax32ghp_x16, NULL },
+ /** Motors voltage (V). */
+ 24.0,
+ /** Number of steps for each auxiliary motor encoder. */
+ { 250, 0 },
+ /** Load for auxiliary motors (kg.m^2). */
+ { 1.000 * 0.05 * 0.05, 0 },
+ /** Sensor update function. */
+ NULL,
+ /** Initialisation function. */
+ NULL,
+};
+
/* Table of models. */
static const struct
{
@@ -102,6 +119,7 @@ static const struct
{ "marcel", &marcel_robot },
{ "robospierre", &robospierre_robot },
{ "guybrush", &guybrush_robot },
+ { "apbirthday", &apbirthday_robot },
{ 0, 0 }
};