Scorpi modules

From Rsewiki

Back to Scorpi

Overview of hardware interface

This overview is focused on the hardware and hardware interface modules used as the basis for controlling the Scorpi system.

The described software module relates to the source code file where the module is implemented.

Processor boards

The Scorpi system has two Raspberry Pi processors (version 4 and 5) and three hardware interface boards (Teensy motor drive boards).

The main functionality for autonomous operation is handled in the ROS2 nodes.

Camera and Lidar interface directly to ROS2 using ROS drivers.

All other sensors and actuators are interfaced through a MQTT-ROS2 node. There is one MQTT broker only.

The hardware abstraction layer (HAL) in a Teensy_interface application generates MQTT messages from the hardware. The Raspberry Pi processors run a teensy_interface, exchanging data to the same MQTT message broker.

The messages published to the MQTT broker are all text strings. The last word in the MQTT topic is the message keyword. The message payload is coded as mostly numerical text and is always separated by a space character.

The teensy_interface uses USB to talk to one or two processor boards with a Teensy 4.1 processor. The Teensy software is called motor_drive.

Each board includes four motor drivers, an interface to three angle encoders, two MPUs, and other items.

The board also delivers power to the Raspberry Pi and handles the power on and off.

A subscription service in the motor_driver controls the data rate and selection. The teensy_interface manages the subscriptions as specified in a configuration file called "robot.ini."

Drive control

The forward drive uses four motors, two on each wheel. Two motors give more power and reduce backlash by driving each motor with a different offset voltage.

All motors have rotation encoders and are velocity-controlled from the teensy_interface. When Scorpi is turning (controlled by the front wheels), the velocity of the driving wheels is adjusted to match the curvature.

The following status is available through MQTT:

  • Motor velocity: Topic "scorpi/drive/T1/mvel" has a payload "m1 m2 m3 m4", a text string with the estimated velocity in rad/sec of the motor before the gear.
  • Motor voltage: Topic "scorpi/drive/T1/motv" has a payload "v1 v2 v3 v4", a text string with the voltage applied to the motors (in Volts).
  • Motor voltage: Topic "scorpi/drive/T1/motc" has a payload "a1 a2 a3 a4", a text string with the current measured for motors (in Amps) and is always positive. The motor voltage is handled in the teensy_interface by a "scurrent" module (not shown).

The MQTT topic levels are:

  • The system level, here "scorpi".
  • The function division, here "drive", could also be "crane". The "drive" functions control the forward drive motors, the steering and the crane yaw. The "crane" function controls the gripper and the x-y movement (arm and stick).
  • The board level, here "T1", could also be "T2". Each board control up to four motors. The board level is omitted if not board-related.
  • Keyword is the last string and is typically the keyword used in the Teensy board.

Steering

Each steering wheel has a motor-driven steering angle. The motor has a rotation encoder used in a motor velocity control loop (cmotor).

The motor has an internal gear (18:1) and a crown gear (70:20) to the steering angle. An absolute angle measurement, a 14-bit magnetic encoder AS5147, measures the actual angle. The wheel angle is used in a steering control loop.

Each steering wheel can turn +/—45 degrees relative to the steering motor, which is angled by 15 degrees relative to the robot body. This gives the steering wheel an angle from 60 to -30 degrees (for the left wheel). These angles are to mechanical stops and are limited to a few degrees less in software. This gives a turning radius of about 0.6m, assuming an axle distance of 0.4m and a wheel separation of 0.35m (curvature 1.6 rad/m).

The MQTT messages related to steering are:

  • Steering: The topic "scorpi/drive/steer" has payload "a1 a2 c", where a1 and a2 are the steering wheel angle, in radians, for the left and right wheel, and c is the resulting turn curvature (c = 1/(turn radius)).

Crane control

The crane control is split into two Raspberry Pi and two Teensy motor controller boards.

The rotating part (x-y and gripper control) is handled by the motor controller and Raspberry Pi on the arm itself. The yaw motion is handled by the same motor controller as the steering and by the Raspberry Pi embedded in the vehicle.

A rubber joint connects the stick (the horizontal part of the crane) and the gripper arm. The load on the gripper changes the angle between the stick and the gripper, which the two MPUs can measure.

A servo operates the gripper.

A magnetic encoder (AS5147) measures the angle between the stick and the arm (the mostly vertical part of the crane).

Both actuators (for arm and stick) have encoders for motor velocity estimates.

The yaw (swing motion) has two motors (to reduce slag) with encoders for velocity control. A magnetic encoder (AS5147) measures the yaw angle. This encoder is geared 26:74 so that the crane can rotate more than 360 degrees without repeating the same angle from the magnetic encoder (actually almost three rotations, but the wires will curl in the crane base, so don't rotate too much).

A third MPU measures the vehicle's tilt and roll. The yaw control and the IMU data are transferred to the crane Raspberry Pi using MQTT.

The tilt and roll, together with the yaw angle and the angle from the two IMUs on the crane, are used to determine the absolute pose of the crane (crane).

The crane control module (ccrane) can (if implemented) be ordered using joint angles or end effector position.

Trailer control

A magnetic encoder (AS5147) can measure the vehicle-trailer joint. This is intended for control when the robot reverses with the trailer.

Remote control

The gamepad can take over control (manual control) by pressing "back" and go to autonomous drive by pressing "run".

The gamepad delivers a desired velocity (forward) and a desired curvature. The "RB" button enables faster drive - but be careful.

The mixer uses data from the gamepad when in manual drive. The mixer sends the desired curvature (in radians per driven meter) to the steering controller. The mixer uses actual steering curvature and desired velocity to generate left and right drive wheel velocity.

The steer controller sets the desired steer motor velocity. The steer implements the maximum curvature (set in the robot.ini file) to 1.6 radians per driven meter (turn radius 0.6m).

The MQTT is assumed to acquire the desired velocity and curvature, and these are used when in autonomous mode.

Sensor interface

This section gives more details about sensor modules.

Inertia measurements

The MPU has 3-axis accelerometer and gyro.

The motor_controller can handle two sensors when one of them uses the alternate address on the I2C bus.

An Arduino driver for the MPU is slightly modified and, therefore, included in the source (MPU9250_asukiaaa).

The data is captured at 1k samples per second and filtered depending on the subscribed data rate.

Angular encoder

The magnetic encoder is an AS5147, providing a 14-bit absolute angle of the magnet above the sensor. The board is a standard evaluation board from AS (as shown).

The sensor also provides rotation velocity.

The motor driver can interface three AS5147 boards using an SPI interface and three individual chip-select pins.

IR distance sensor

Two Sharp 2Y0A21Y IR distance sensors can be interfaced with the motor controller board.

The output data is analogue but updated at 28.3ms intervals only. The analogue data is sampled at 1k samples per second and filtered with a time constant of 10ms.

Such sensors can be used for collision avoidance but are not implemented pt.

Display

Status display

A small OLED display (128x32 pixels) is interfaced with the motor_controller.

It is intended for fast board status, and one line can be controlled from the Raspberry PI using a "disp text" command.

The display update takes a long time and is thus divided into partial updates, each taking less than 1 ms. This data transfer will, at times, delay other sensor updates.

LED band

An LED band can be interfaced with the motor_controller board using the serial port (The TX-wire only).

Each LED can be set with a "led N R G B" command, where N is the LED number and "R G B" is the intensity for each color (0..255).

The LED interface uses DMA and thus does not interfere with the timing.

The LED is supplied from the same 5V as the servo and Raspberry Pi.

Actuator interface

Motor driver

The motor controller has four motor controllers of the type DRV8874. It is capable of driving brushed motors up to 6 amps but is limited to about 4 Amps.

The motor driver is controlled using a single PWM signal, typically 64kHz. At 50% PWM, the motor is stationary; more is forward, and less is reverse for each motor.

The motor controller has a current output. The current is sampled at 1k samples per second; this is insufficient for the 64kHz signal, as there is no filter in this board version.

All the used motors have built-in quadrature encoders. The A and B signals are timed using an interrupt, and the timing can be used to estimate velocity.

Servo

The servo interface provides a positive pulse between 1 and 2ms at a rate of 333Hz. A separate DC-DC converter provides the 5V for the servo.

Power control

The motor_controller board holds the power switch. A MOSFET is controlling the power from the battery.

An external button can turn the power on (for 2 seconds).

An external signal (3-5V) from another board can also turn the board on.

Once turned on, the Teensy keeps the power on until ordered to turn it off.

A separate button interfaces with the Teensy. For Scorpi, this is intended as a power-off request, which could, in turn, tell the Raspberry Pi to shut down. If the button is pressed for 5 seconds, the power is turned off (for this board).

The Raspberry Pi can send an "off N" command telling all Teensy boards to power off after "N" seconds, allowing the Raspberry to shut down entirely first.