MQTT - Silent Stepper Bricklet 2.0

This is the description of the MQTT API bindings for the Silent Stepper Bricklet 2.0. General information and technical specifications for the Silent Stepper Bricklet 2.0 are summarized in its hardware description.

An installation guide for the MQTT API bindings is part of their general description.

Examples

The example code below is Public Domain (CC0 1.0).

Configuration

Download (example-configuration.txt)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Change XYZ to the UID of your Silent Stepper Bricklet 2.0

setup:
    publish '{"current": 800}' to tinkerforge/request/silent_stepper_v2_bricklet/XYZ/set_motor_current # 800 mA

    publish '{"step_resolution": "8", "interpolation": true}' to tinkerforge/request/silent_stepper_v2_bricklet/XYZ/set_step_configuration # 1/8 steps (interpolated)

    publish '{"velocity": 2000}' to tinkerforge/request/silent_stepper_v2_bricklet/XYZ/set_max_velocity # Velocity 2000 steps/s

    # Slow acceleration (500 steps/s^2),
    # Fast deacceleration (5000 steps/s^2)
    publish '{"acceleration": 500, "deacceleration": 5000}' to tinkerforge/request/silent_stepper_v2_bricklet/XYZ/set_speed_ramping

    publish '{"enabled": true}' to tinkerforge/request/silent_stepper_v2_bricklet/XYZ/set_enabled # Enable motor power

    publish '{"steps": 60000}' to tinkerforge/request/silent_stepper_v2_bricklet/XYZ/set_steps # Drive 60000 steps forward

cleanup:
    # If you are done, run this to clean up
    # Stop motor before disabling motor power
    publish '' to tinkerforge/request/silent_stepper_v2_bricklet/XYZ/stop # Request motor stop

    publish '{"acceleration": 500, "deacceleration": 5000}' to tinkerforge/request/silent_stepper_v2_bricklet/XYZ/set_speed_ramping # Fast deacceleration (5000 steps/s^2) for stopping

    wait for 0.4s # Wait for motor to actually stop: max velocity (2000 steps/s) / decceleration (5000 steps/s^2) = 0.4 s

    publish '{"enabled": false}' to tinkerforge/request/silent_stepper_v2_bricklet/XYZ/set_enabled # Disable motor power

Callback

Download (example-callback.txt)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Change XYZ to the UID of your Silent Stepper Bricklet 2.0

setup:
    # Use position reached callback to program random movement
    subscribe to tinkerforge/callback/silent_stepper_brick/XXYYZZ/position_reached
        if a message arives
            # message contains the current position as int
            generate random numbers r,
                    steps [1000;5000],
                    vel [200; 2000],
                    acc [100; 1000]
                and dec [100; 1000]

            if r is even
                # Driving forward
            else
                # Driving backward
                set steps to -steps
            endif

            publish '{"acceleration": acc, "deceleration": dec}' to tinkerforge/request/silent_stepper_brick/XXYYZZ/set_speed_ramping
            publish '{"velocity": vel}' to tinkerforge/request/silent_stepper_brick/XXYYZZ/set_max_velocity
            publish '{"steps": steps}' to tinkerforge/request/silent_stepper_brick/XXYYZZ/set_steps
        endif
    endsubscribe

    publish '{"register": true}' to tinkerforge/register/silent_stepper_v2_bricklet/XYZ/position_reached # Register position_reached callback

    publish '{"step_resolution": "8", "interpolation": true}' to tinkerforge/request/silent_stepper_v2_bricklet/XYZ/set_step_configuration # 1/8 steps (interpolated)

    publish '{"enabled": true}' to tinkerforge/request/silent_stepper_v2_bricklet/XYZ/set_enabled # Enable motor power

    publish '{"steps": 1}' to tinkerforge/request/silent_stepper_v2_bricklet/XYZ/set_steps # Drive one step forward to get things going

cleanup:
    # If you are done, run this to clean up
    # Stop motor before disabling motor power
    publish '' to tinkerforge/request/silent_stepper_v2_bricklet/XYZ/stop # Request motor stop

    publish '{"acceleration": 500, "deacceleration": 5000}' to tinkerforge/request/silent_stepper_v2_bricklet/XYZ/set_speed_ramping # Fast deacceleration (5000 steps/s^2) for stopping

    wait for 0.4s # Wait for motor to actually stop: max velocity (2000 steps/s) / decceleration (5000 steps/s^2) = 0.4 s

    publish '{"enabled": false}' to tinkerforge/request/silent_stepper_v2_bricklet/XYZ/set_enabled # Disable motor power

API

All published payloads to and from the MQTT bindings are in JSON format.

If an error occures, the bindings publish a JSON object containing the error message as member _ERROR. It is published on the corresponding response topic: .../response/... for .../request/... and .../callback/... for .../register/....

Basic Functions

request/silent_stepper_v2_bricklet/<UID>/set_max_velocity
Request:
  • velocity – Type: int, Unit: 1 1/s, Range: [0 to 216 - 1]
Response:
  • no response

Sets the maximum velocity of the stepper motor. This function does not start the motor, it merely sets the maximum velocity the stepper motor is accelerated to. To get the motor running use either request/silent_stepper_v2_bricklet/<UID>/set_target_position, request/silent_stepper_v2_bricklet/<UID>/set_steps, request/silent_stepper_v2_bricklet/<UID>/drive_forward or request/silent_stepper_v2_bricklet/<UID>/drive_backward.

request/silent_stepper_v2_bricklet/<UID>/get_max_velocity
Request:
  • empty payload
Response:
  • velocity – Type: int, Unit: 1 1/s, Range: [0 to 216 - 1]

Returns the velocity as set by request/silent_stepper_v2_bricklet/<UID>/set_max_velocity.

request/silent_stepper_v2_bricklet/<UID>/get_current_velocity
Request:
  • empty payload
Response:
  • velocity – Type: int, Unit: 1 1/s, Range: [0 to 216 - 1]

Returns the current velocity of the stepper motor.

request/silent_stepper_v2_bricklet/<UID>/set_speed_ramping
Request:
  • acceleration – Type: int, Unit: 1 1/s², Range: [0 to 216 - 1], Default: 1000
  • deacceleration – Type: int, Unit: 1 1/s², Range: [0 to 216 - 1], Default: 1000
Response:
  • no response

Sets the acceleration and deacceleration of the stepper motor. An acceleration of 1000 means, that every second the velocity is increased by 1000 steps/s.

For example: If the current velocity is 0 and you want to accelerate to a velocity of 8000 steps/s in 10 seconds, you should set an acceleration of 800 steps/s².

An acceleration/deacceleration of 0 means instantaneous acceleration/deacceleration (not recommended)

request/silent_stepper_v2_bricklet/<UID>/get_speed_ramping
Request:
  • empty payload
Response:
  • acceleration – Type: int, Unit: 1 1/s², Range: [0 to 216 - 1], Default: 1000
  • deacceleration – Type: int, Unit: 1 1/s², Range: [0 to 216 - 1], Default: 1000

Returns the acceleration and deacceleration as set by request/silent_stepper_v2_bricklet/<UID>/set_speed_ramping.

request/silent_stepper_v2_bricklet/<UID>/full_brake
Request:
  • empty payload
Response:
  • no response

Executes an active full brake.

Warning

This function is for emergency purposes, where an immediate brake is necessary. Depending on the current velocity and the strength of the motor, a full brake can be quite violent.

Call request/silent_stepper_v2_bricklet/<UID>/stop if you just want to stop the motor.

request/silent_stepper_v2_bricklet/<UID>/set_steps
Request:
  • steps – Type: int, Range: [-231 to 231 - 1]
Response:
  • no response

Sets the number of steps the stepper motor should run. Positive values will drive the motor forward and negative values backward. The velocity, acceleration and deacceleration as set by request/silent_stepper_v2_bricklet/<UID>/set_max_velocity and request/silent_stepper_v2_bricklet/<UID>/set_speed_ramping will be used.

request/silent_stepper_v2_bricklet/<UID>/get_steps
Request:
  • empty payload
Response:
  • steps – Type: int, Range: [-231 to 231 - 1]

Returns the last steps as set by request/silent_stepper_v2_bricklet/<UID>/set_steps.

request/silent_stepper_v2_bricklet/<UID>/get_remaining_steps
Request:
  • empty payload
Response:
  • steps – Type: int, Range: [-231 to 231 - 1]

Returns the remaining steps of the last call of request/silent_stepper_v2_bricklet/<UID>/set_steps. For example, if request/silent_stepper_v2_bricklet/<UID>/set_steps is called with 2000 and request/silent_stepper_v2_bricklet/<UID>/get_remaining_steps is called after the motor has run for 500 steps, it will return 1500.

request/silent_stepper_v2_bricklet/<UID>/drive_forward
Request:
  • empty payload
Response:
  • no response

Drives the stepper motor forward until request/silent_stepper_v2_bricklet/<UID>/drive_backward or request/silent_stepper_v2_bricklet/<UID>/stop is called. The velocity, acceleration and deacceleration as set by request/silent_stepper_v2_bricklet/<UID>/set_max_velocity and request/silent_stepper_v2_bricklet/<UID>/set_speed_ramping will be used.

request/silent_stepper_v2_bricklet/<UID>/drive_backward
Request:
  • empty payload
Response:
  • no response

Drives the stepper motor backward until request/silent_stepper_v2_bricklet/<UID>/drive_forward or request/silent_stepper_v2_bricklet/<UID>/stop is triggered. The velocity, acceleration and deacceleration as set by request/silent_stepper_v2_bricklet/<UID>/set_max_velocity and request/silent_stepper_v2_bricklet/<UID>/set_speed_ramping will be used.

request/silent_stepper_v2_bricklet/<UID>/stop
Request:
  • empty payload
Response:
  • no response

Stops the stepper motor with the deacceleration as set by request/silent_stepper_v2_bricklet/<UID>/set_speed_ramping.

request/silent_stepper_v2_bricklet/<UID>/set_motor_current
Request:
  • current – Type: int, Unit: 1 mA, Range: [360 to 1640], Default: 800
Response:
  • no response

Sets the current with which the motor will be driven.

Warning

Do not set this value above the specifications of your stepper motor. Otherwise it may damage your motor.

request/silent_stepper_v2_bricklet/<UID>/get_motor_current
Request:
  • empty payload
Response:
  • current – Type: int, Unit: 1 mA, Range: [360 to 1640], Default: 800

Returns the current as set by request/silent_stepper_v2_bricklet/<UID>/set_motor_current.

request/silent_stepper_v2_bricklet/<UID>/set_enabled
Request:
  • enabled – Type: bool, Default: false
Response:
  • no response

Enables/Disables the driver chip. The driver parameters can be configured (maximum velocity, acceleration, etc) before it is enabled.

Warning

Disabling the driver chip while the motor is still turning can damage the driver chip. The motor should be stopped calling request/silent_stepper_v2_bricklet/<UID>/stop function before disabling the motor power. The request/silent_stepper_v2_bricklet/<UID>/stop function will not wait until the motor is actually stopped. You have to explicitly wait for the appropriate time after calling the request/silent_stepper_v2_bricklet/<UID>/stop function before calling the request/silent_stepper_v2_bricklet/<UID>/set_enabled with false function.

request/silent_stepper_v2_bricklet/<UID>/get_enabled
Request:
  • empty payload
Response:
  • enabled – Type: bool, Default: false

Returns true if the stepper driver is enabled, false otherwise.

request/silent_stepper_v2_bricklet/<UID>/set_basic_configuration
Request:
  • standstill_current – Type: int, Unit: 1 mA, Range: [0 to 216 - 1], Default: 200
  • motor_run_current – Type: int, Unit: 1 mA, Range: [0 to 216 - 1], Default: 800
  • standstill_delay_time – Type: int, Unit: 1 ms, Range: [0 to 307], Default: 0
  • power_down_time – Type: int, Unit: 1 ms, Range: [0 to 5222], Default: 1000
  • stealth_threshold – Type: int, Unit: 1 1/s, Range: [0 to 216 - 1], Default: 500
  • coolstep_threshold – Type: int, Unit: 1 1/s, Range: [0 to 216 - 1], Default: 500
  • classic_threshold – Type: int, Unit: 1 1/s, Range: [0 to 216 - 1], Default: 1000
  • high_velocity_chopper_mode – Type: bool, Default: false
Response:
  • no response

Sets the basic configuration parameters for the different modes (Stealth, Coolstep, Classic).

  • Standstill Current: This value can be used to lower the current during stand still. This might be reasonable to reduce the heating of the motor and the Bricklet 2.0. When the motor is in standstill the configured motor phase current will be driven until the configured Power Down Time is elapsed. After that the phase current will be reduced to the standstill current. The elapsed time for this reduction can be configured with the Standstill Delay Time. The maximum allowed value is the configured maximum motor current (see request/silent_stepper_v2_bricklet/<UID>/set_motor_current).
  • Motor Run Current: The value sets the motor current when the motor is running. Use a value of at least one half of the global maximum motor current for a good microstep performance. The maximum allowed value is the current motor current. The API maps the entered value to 1/32 ... 32/32 of the maximum motor current. This value should be used to change the motor current during motor movement, whereas the global maximum motor current should not be changed while the motor is moving (see request/silent_stepper_v2_bricklet/<UID>/set_motor_current).
  • Standstill Delay Time: Controls the duration for motor power down after a motion as soon as standstill is detected and the Power Down Time is expired. A high Standstill Delay Time results in a smooth transition that avoids motor jerk during power down.
  • Power Down Time: Sets the delay time after a stand still.
  • Stealth Threshold: Sets the upper threshold for Stealth mode. If the velocity of the motor goes above this value, Stealth mode is turned off. Otherwise it is turned on. In Stealth mode the torque declines with high speed.
  • Coolstep Threshold: Sets the lower threshold for Coolstep mode. The Coolstep Threshold needs to be above the Stealth Threshold.
  • Classic Threshold: Sets the lower threshold for classic mode. In classic mode the stepper becomes more noisy, but the torque is maximized.
  • High Velocity Chopper Mode: If High Velocity Chopper Mode is enabled, the stepper control is optimized to run the stepper motors at high velocities.

If you want to use all three thresholds make sure that Stealth Threshold < Coolstep Threshold < Classic Threshold.

request/silent_stepper_v2_bricklet/<UID>/get_basic_configuration
Request:
  • empty payload
Response:
  • standstill_current – Type: int, Unit: 1 mA, Range: [0 to 216 - 1], Default: 200
  • motor_run_current – Type: int, Unit: 1 mA, Range: [0 to 216 - 1], Default: 800
  • standstill_delay_time – Type: int, Unit: 1 ms, Range: [0 to 307], Default: 0
  • power_down_time – Type: int, Unit: 1 ms, Range: [0 to 5222], Default: 1000
  • stealth_threshold – Type: int, Unit: 1 1/s, Range: [0 to 216 - 1], Default: 500
  • coolstep_threshold – Type: int, Unit: 1 1/s, Range: [0 to 216 - 1], Default: 500
  • classic_threshold – Type: int, Unit: 1 1/s, Range: [0 to 216 - 1], Default: 1000
  • high_velocity_chopper_mode – Type: bool, Default: false

Returns the configuration as set by request/silent_stepper_v2_bricklet/<UID>/set_basic_configuration.

request/silent_stepper_v2_bricklet/<UID>/set_gpio_configuration
Request:
  • channel – Type: int, Range: [0 to 1]
  • debounce – Type: int, Unit: 1 ms, Range: [0 to 216 - 1], Default: 200
  • stop_deceleration – Type: int, Unit: 1 1/s², Range: [0 to 216 - 1], Default: 216 - 1
Response:
  • no response

Sets the GPIO configuration for the given channel. You can configure a debounce and the deceleration that is used if the action is configured as normal stop. See request/silent_stepper_v2_bricklet/<UID>/set_gpio_action.

request/silent_stepper_v2_bricklet/<UID>/get_gpio_configuration
Request:
  • channel – Type: int, Range: [0 to 1]
Response:
  • debounce – Type: int, Unit: 1 ms, Range: [0 to 216 - 1], Default: 200
  • stop_deceleration – Type: int, Unit: 1 1/s², Range: [0 to 216 - 1], Default: 216 - 1

Returns the GPIO configuration for a channel as set by request/silent_stepper_v2_bricklet/<UID>/set_gpio_configuration.

request/silent_stepper_v2_bricklet/<UID>/set_gpio_action
Request:
  • channel – Type: int, Range: [0 to 1]
  • action – Type: int, Range: See symbols, Default: 0
Response:
  • no response

Sets the GPIO action for the given channel.

The action can be a normal stop, a full brake or a callback. Each for a rising edge or falling edge. The actions are a bitmask they can be used at the same time. You can for example trigger a full brake and a callback at the same time or for rising and falling edge.

The deceleration speed for the normal stop can be configured with request/silent_stepper_v2_bricklet/<UID>/set_gpio_configuration.

The following symbols are available for this function:

For action:

  • "none" = 0
  • "normal_stop_rising_edge" = 1
  • "normal_stop_falling_edge" = 2
  • "full_brake_rising_edge" = 4
  • "full_brake_falling_edge" = 8
  • "callback_rising_edge" = 16
  • "callback_falling_edge" = 32
request/silent_stepper_v2_bricklet/<UID>/get_gpio_action
Request:
  • channel – Type: int, Range: [0 to 1]
Response:
  • action – Type: int, Range: See symbols, Default: 0

Returns the GPIO action for a channel as set by request/silent_stepper_v2_bricklet/<UID>/set_gpio_action.

The following symbols are available for this function:

For action:

  • "none" = 0
  • "normal_stop_rising_edge" = 1
  • "normal_stop_falling_edge" = 2
  • "full_brake_rising_edge" = 4
  • "full_brake_falling_edge" = 8
  • "callback_rising_edge" = 16
  • "callback_falling_edge" = 32
request/silent_stepper_v2_bricklet/<UID>/get_gpio_state
Request:
  • empty payload
Response:
  • gpio_state – Type: [bool, ...], Length: 2

Returns the GPIO state for both channels. True if the state is high and false if the state is low.

Advanced Functions

request/silent_stepper_v2_bricklet/<UID>/set_current_position
Request:
  • position – Type: int, Range: [-231 to 231 - 1]
Response:
  • no response

Sets the current steps of the internal step counter. This can be used to set the current position to 0 when some kind of starting position is reached (e.g. when a CNC machine reaches a corner).

request/silent_stepper_v2_bricklet/<UID>/get_current_position
Request:
  • empty payload
Response:
  • position – Type: int, Range: [-231 to 231 - 1]

Returns the current position of the stepper motor in steps. On startup the position is 0. The steps are counted with all possible driving functions (request/silent_stepper_v2_bricklet/<UID>/set_target_position, request/silent_stepper_v2_bricklet/<UID>/set_steps, request/silent_stepper_v2_bricklet/<UID>/drive_forward or request/silent_stepper_v2_bricklet/<UID>/drive_backward). It also is possible to reset the steps to 0 or set them to any other desired value with request/silent_stepper_v2_bricklet/<UID>/set_current_position.

request/silent_stepper_v2_bricklet/<UID>/set_target_position
Request:
  • position – Type: int, Range: [-231 to 231 - 1]
Response:
  • no response

Sets the target position of the stepper motor in steps. For example, if the current position of the motor is 500 and request/silent_stepper_v2_bricklet/<UID>/set_target_position is called with 1000, the stepper motor will drive 500 steps forward. It will use the velocity, acceleration and deacceleration as set by request/silent_stepper_v2_bricklet/<UID>/set_max_velocity and request/silent_stepper_v2_bricklet/<UID>/set_speed_ramping.

A call of request/silent_stepper_v2_bricklet/<UID>/set_target_position with the parameter x is equivalent to a call of request/silent_stepper_v2_bricklet/<UID>/set_steps with the parameter (x - request/silent_stepper_v2_bricklet/<UID>/get_current_position).

request/silent_stepper_v2_bricklet/<UID>/get_target_position
Request:
  • empty payload
Response:
  • position – Type: int, Range: [-231 to 231 - 1]

Returns the last target position as set by request/silent_stepper_v2_bricklet/<UID>/set_target_position.

request/silent_stepper_v2_bricklet/<UID>/set_step_configuration
Request:
  • step_resolution – Type: int, Range: See symbols, Default: 0
  • interpolation – Type: bool, Default: true
Response:
  • no response

Sets the step resolution from full-step up to 1/256-step.

If interpolation is turned on, the Silent Stepper Bricklet 2.0 will always interpolate your step inputs as 1/256-step. If you use full-step mode with interpolation, each step will generate 256 1/256 steps.

For maximum torque use full-step without interpolation. For maximum resolution use 1/256-step. Turn interpolation on to make the Stepper driving less noisy.

If you often change the speed with high acceleration you should turn the interpolation off.

The following symbols are available for this function:

For step_resolution:

  • "1" = 8
  • "2" = 7
  • "4" = 6
  • "8" = 5
  • "16" = 4
  • "32" = 3
  • "64" = 2
  • "128" = 1
  • "256" = 0
request/silent_stepper_v2_bricklet/<UID>/get_step_configuration
Request:
  • empty payload
Response:
  • step_resolution – Type: int, Range: See symbols
  • interpolation – Type: bool, Default: true

Returns the step mode as set by request/silent_stepper_v2_bricklet/<UID>/set_step_configuration.

The following symbols are available for this function:

For step_resolution:

  • "1" = 8
  • "2" = 7
  • "4" = 6
  • "8" = 5
  • "16" = 4
  • "32" = 3
  • "64" = 2
  • "128" = 1
  • "256" = 0
request/silent_stepper_v2_bricklet/<UID>/get_input_voltage
Request:
  • empty payload
Response:
  • voltage – Type: int, Unit: 1 mV, Range: [0 to 216 - 1]

Returns the external input voltage. The external input voltage is given via the black power input connector on the Silent Stepper Bricklet 2.0.

If there is an external input voltage and a stack input voltage, the motor will be driven by the external input voltage. If there is only a stack voltage present, the motor will be driven by this voltage.

Warning

This means, if you have a high stack voltage and a low external voltage, the motor will be driven with the low external voltage. If you then remove the external connection, it will immediately be driven by the high stack voltage

request/silent_stepper_v2_bricklet/<UID>/set_spreadcycle_configuration
Request:
  • slow_decay_duration – Type: int, Range: [0 to 15], Default: 4
  • enable_random_slow_decay – Type: bool, Default: false
  • fast_decay_duration – Type: int, Range: [0 to 15], Default: 0
  • hysteresis_start_value – Type: int, Range: [0 to 7], Default: 0
  • hysteresis_end_value – Type: int, Range: [-3 to 12], Default: 0
  • sine_wave_offset – Type: int, Range: [-3 to 12], Default: 0
  • chopper_mode – Type: int, Range: See symbols, Default: 0
  • comparator_blank_time – Type: int, Range: [0 to 3], Default: 1
  • fast_decay_without_comparator – Type: bool, Default: false
Response:
  • no response

Note: If you don't know what any of this means you can very likely keep all of the values as default!

Sets the Spreadcycle configuration parameters. Spreadcycle is a chopper algorithm which actively controls the motor current flow. More information can be found in the TMC2130 datasheet on page 47 (7 spreadCycle and Classic Chopper).

  • Slow Decay Duration: Controls duration of off time setting of slow decay phase. 0 = driver disabled, all bridges off. Use 1 only with Comparator Blank time >= 2.

  • Enable Random Slow Decay: Set to false to fix chopper off time as set by Slow Decay Duration. If you set it to true, Decay Duration is randomly modulated.

  • Fast Decay Duration: Sets the fast decay duration. This parameters is only used if the Chopper Mode is set to Fast Decay.

  • Hysteresis Start Value: Sets the hysteresis start value. This parameter is only used if the Chopper Mode is set to Spread Cycle.

  • Hysteresis End Value: Sets the hysteresis end value. This parameter is only used if the Chopper Mode is set to Spread Cycle.

  • Sine Wave Offset: Sets the sine wave offset. This parameters is only used if the Chopper Mode is set to Fast Decay. 1/512 of the value becomes added to the absolute value of the sine wave.

  • Chopper Mode: 0 = Spread Cycle, 1 = Fast Decay.

  • Comparator Blank Time: Sets the blank time of the comparator. Available values are

    • 0 = 16 clocks,
    • 1 = 24 clocks,
    • 2 = 36 clocks and
    • 3 = 54 clocks.

    A value of 1 or 2 is recommended for most applications.

  • Fast Decay Without Comparator: If set to true the current comparator usage for termination of the fast decay cycle is disabled.

The following symbols are available for this function:

For chopper_mode:

  • "spread_cycle" = 0
  • "fast_decay" = 1
request/silent_stepper_v2_bricklet/<UID>/get_spreadcycle_configuration
Request:
  • empty payload
Response:
  • slow_decay_duration – Type: int, Range: [0 to 15], Default: 4
  • enable_random_slow_decay – Type: bool, Default: false
  • fast_decay_duration – Type: int, Range: [0 to 15], Default: 0
  • hysteresis_start_value – Type: int, Range: [0 to 7], Default: 0
  • hysteresis_end_value – Type: int, Range: [-3 to 12], Default: 0
  • sine_wave_offset – Type: int, Range: [-3 to 12], Default: 0
  • chopper_mode – Type: int, Range: See symbols, Default: 0
  • comparator_blank_time – Type: int, Range: [0 to 3], Default: 1
  • fast_decay_without_comparator – Type: bool, Default: false

Returns the configuration as set by request/silent_stepper_v2_bricklet/<UID>/set_basic_configuration.

The following symbols are available for this function:

For chopper_mode:

  • "spread_cycle" = 0
  • "fast_decay" = 1
request/silent_stepper_v2_bricklet/<UID>/set_stealth_configuration
Request:
  • enable_stealth – Type: bool, Default: true
  • amplitude – Type: int, Range: [0 to 255], Default: 128
  • gradient – Type: int, Range: [0 to 255], Default: 4
  • enable_autoscale – Type: bool, Default: true
  • force_symmetric – Type: bool, Default: false
  • freewheel_mode – Type: int, Range: See symbols, Default: 0
Response:
  • no response

Note: If you don't know what any of this means you can very likely keep all of the values as default!

Sets the configuration relevant for Stealth mode.

  • Enable Stealth: If set to true the stealth mode is enabled, if set to false the stealth mode is disabled, even if the speed is below the threshold set in request/silent_stepper_v2_bricklet/<UID>/set_basic_configuration.
  • Amplitude: If autoscale is disabled, the PWM amplitude is scaled by this value. If autoscale is enabled, this value defines the maximum PWM amplitude change per half wave.
  • Gradient: If autoscale is disabled, the PWM gradient is scaled by this value. If autoscale is enabled, this value defines the maximum PWM gradient. With autoscale a value above 64 is recommended, otherwise the regulation might not be able to measure the current.
  • Enable Autoscale: If set to true, automatic current control is used. Otherwise the user defined amplitude and gradient are used.
  • Force Symmetric: If true, A symmetric PWM cycle is enforced. Otherwise the PWM value may change within each PWM cycle.
  • Freewheel Mode: The freewheel mode defines the behavior in stand still if the Standstill Current (see request/silent_stepper_v2_bricklet/<UID>/set_basic_configuration) is set to 0.

The following symbols are available for this function:

For freewheel_mode:

  • "normal" = 0
  • "freewheeling" = 1
  • "coil_short_ls" = 2
  • "coil_short_hs" = 3
request/silent_stepper_v2_bricklet/<UID>/get_stealth_configuration
Request:
  • empty payload
Response:
  • enable_stealth – Type: bool, Default: true
  • amplitude – Type: int, Range: [0 to 255], Default: 128
  • gradient – Type: int, Range: [0 to 255], Default: 4
  • enable_autoscale – Type: bool, Default: true
  • force_symmetric – Type: bool, Default: false
  • freewheel_mode – Type: int, Range: See symbols, Default: 0

Returns the configuration as set by request/silent_stepper_v2_bricklet/<UID>/set_stealth_configuration.

The following symbols are available for this function:

For freewheel_mode:

  • "normal" = 0
  • "freewheeling" = 1
  • "coil_short_ls" = 2
  • "coil_short_hs" = 3
request/silent_stepper_v2_bricklet/<UID>/set_coolstep_configuration
Request:
  • minimum_stallguard_value – Type: int, Range: [0 to 15], Default: 2
  • maximum_stallguard_value – Type: int, Range: [0 to 15], Default: 10
  • current_up_step_width – Type: int, Range: See symbols, Default: 0
  • current_down_step_width – Type: int, Range: See symbols, Default: 0
  • minimum_current – Type: int, Range: See symbols, Default: 0
  • stallguard_threshold_value – Type: int, Range: [-64 to 63], Default: 0
  • stallguard_mode – Type: int, Range: See symbols, Default: 0
Response:
  • no response

Note: If you don't know what any of this means you can very likely keep all of the values as default!

Sets the configuration relevant for Coolstep.

  • Minimum Stallguard Value: If the Stallguard result falls below this value*32, the motor current is increased to reduce motor load angle. A value of 0 turns Coolstep off.
  • Maximum Stallguard Value: If the Stallguard result goes above (Min Stallguard Value + Max Stallguard Value + 1) * 32, the motor current is decreased to save energy.
  • Current Up Step Width: Sets the up step increment per Stallguard value. The value range is 0-3, corresponding to the increments 1, 2, 4 and 8.
  • Current Down Step Width: Sets the down step decrement per Stallguard value. The value range is 0-3, corresponding to the decrements 1, 2, 8 and 16.
  • Minimum Current: Sets the minimum current for Coolstep current control. You can choose between half and quarter of the run current.
  • Stallguard Threshold Value: Sets the level for stall output (see request/silent_stepper_v2_bricklet/<UID>/get_driver_status). A lower value gives a higher sensitivity. You have to find a suitable value for your motor by trial and error, 0 works for most motors.
  • Stallguard Mode: Set to 0 for standard resolution or 1 for filtered mode. In filtered mode the Stallguard signal will be updated every four full-steps.

The following symbols are available for this function:

For current_up_step_width:

  • "1" = 0
  • "2" = 1
  • "4" = 2
  • "8" = 3

For current_down_step_width:

  • "1" = 0
  • "2" = 1
  • "8" = 2
  • "32" = 3

For minimum_current:

  • "half" = 0
  • "quarter" = 1

For stallguard_mode:

  • "standard" = 0
  • "filtered" = 1
request/silent_stepper_v2_bricklet/<UID>/get_coolstep_configuration
Request:
  • empty payload
Response:
  • minimum_stallguard_value – Type: int, Range: [0 to 15], Default: 2
  • maximum_stallguard_value – Type: int, Range: [0 to 15], Default: 10
  • current_up_step_width – Type: int, Range: See symbols, Default: 0
  • current_down_step_width – Type: int, Range: See symbols, Default: 0
  • minimum_current – Type: int, Range: See symbols, Default: 0
  • stallguard_threshold_value – Type: int, Range: [-64 to 63], Default: 0
  • stallguard_mode – Type: int, Range: See symbols, Default: 0

Returns the configuration as set by request/silent_stepper_v2_bricklet/<UID>/set_coolstep_configuration.

The following symbols are available for this function:

For current_up_step_width:

  • "1" = 0
  • "2" = 1
  • "4" = 2
  • "8" = 3

For current_down_step_width:

  • "1" = 0
  • "2" = 1
  • "8" = 2
  • "32" = 3

For minimum_current:

  • "half" = 0
  • "quarter" = 1

For stallguard_mode:

  • "standard" = 0
  • "filtered" = 1
request/silent_stepper_v2_bricklet/<UID>/set_misc_configuration
Request:
  • disable_short_to_ground_protection – Type: bool, Default: false
  • synchronize_phase_frequency – Type: int, Range: [0 to 15], Default: 0
Response:
  • no response

Note: If you don't know what any of this means you can very likely keep all of the values as default!

Sets miscellaneous configuration parameters.

  • Disable Short To Ground Protection: Set to false to enable short to ground protection, otherwise it is disabled.
  • Synchronize Phase Frequency: With this parameter you can synchronize the chopper for both phases of a two phase motor to avoid the occurrence of a beat. The value range is 0-15. If set to 0, the synchronization is turned off. Otherwise the synchronization is done through the formula f_sync = f_clk/(value*64). In Classic Mode the synchronization is automatically switched off. f_clk is 12.8MHz.
request/silent_stepper_v2_bricklet/<UID>/get_misc_configuration
Request:
  • empty payload
Response:
  • disable_short_to_ground_protection – Type: bool, Default: false
  • synchronize_phase_frequency – Type: int, Range: [0 to 15], Default: 0

Returns the configuration as set by request/silent_stepper_v2_bricklet/<UID>/set_misc_configuration.

request/silent_stepper_v2_bricklet/<UID>/set_error_led_config
Request:
  • config – Type: int, Range: See symbols, Default: 3
Response:
  • no response

Configures the error LED to be either turned off, turned on, blink in heartbeat mode or show an error.

If the LED is configured to show errors it has three different states:

  • Off: No error present.
  • 250ms interval blink: Overtemperature warning.
  • 1s interval blink: Input voltage too small.
  • full red: motor disabled because of short to ground in phase a or b or because of overtemperature.

The following symbols are available for this function:

For config:

  • "off" = 0
  • "on" = 1
  • "show_heartbeat" = 2
  • "show_error" = 3
request/silent_stepper_v2_bricklet/<UID>/get_error_led_config
Request:
  • empty payload
Response:
  • config – Type: int, Range: See symbols, Default: 3

Returns the LED configuration as set by request/silent_stepper_v2_bricklet/<UID>/set_error_led_config

The following symbols are available for this function:

For config:

  • "off" = 0
  • "on" = 1
  • "show_heartbeat" = 2
  • "show_error" = 3
request/silent_stepper_v2_bricklet/<UID>/get_driver_status
Request:
  • empty payload
Response:
  • open_load – Type: int, Range: See symbols
  • short_to_ground – Type: int, Range: See symbols
  • over_temperature – Type: int, Range: See symbols
  • motor_stalled – Type: bool
  • actual_motor_current – Type: int, Range: [0 to 31]
  • full_step_active – Type: bool
  • stallguard_result – Type: int, Range: [0 to 255]
  • stealth_voltage_amplitude – Type: int, Range: [0 to 255]

Returns the current driver status.

  • Open Load: Indicates if an open load is present on phase A, B or both. This could mean that there is a problem with the wiring of the motor. False detection can occur in fast motion as well as during stand still.
  • Short To Ground: Indicates if a short to ground is present on phase A, B or both. If this is detected the driver automatically becomes disabled and stays disabled until it is enabled again manually.
  • Over Temperature: The over temperature indicator switches to "Warning" if the driver IC warms up. The warning flag is expected during long duration stepper uses. If the temperature limit is reached the indicator switches to "Limit". In this case the driver becomes disabled until it cools down again.
  • Motor Stalled: Is true if a motor stall was detected.
  • Actual Motor Current: Indicates the actual current control scaling as used in Coolstep mode. It represents a multiplier of 1/32 to 32/32 of the Motor Run Current as set by request/silent_stepper_v2_bricklet/<UID>/set_basic_configuration. Example: If a Motor Run Current of 1000mA was set and the returned value is 15, the Actual Motor Current is 16/32*1000mA = 500mA.
  • Stallguard Result: Indicates the load of the motor. A lower value signals a higher load. Per trial and error you can find out which value corresponds to a suitable torque for the velocity used in your application. After that you can use this threshold value to find out if a motor stall becomes probable and react on it (e.g. decrease velocity). During stand still this value can not be used for stall detection, it shows the chopper on-time for motor coil A.
  • Stealth Voltage Amplitude: Shows the actual PWM scaling. In Stealth mode it can be used to detect motor load and stall if autoscale is enabled (see request/silent_stepper_v2_bricklet/<UID>/set_stealth_configuration).

The following symbols are available for this function:

For open_load:

  • "none" = 0
  • "phase_a" = 1
  • "phase_b" = 2
  • "phase_ab" = 3

For short_to_ground:

  • "none" = 0
  • "phase_a" = 1
  • "phase_b" = 2
  • "phase_ab" = 3

For over_temperature:

  • "none" = 0
  • "warning" = 1
  • "limit" = 2
request/silent_stepper_v2_bricklet/<UID>/set_time_base
Request:
  • time_base – Type: int, Unit: 1 s, Range: [0 to 232 - 1], Default: 1
Response:
  • no response

Sets the time base of the velocity and the acceleration of the Silent Stepper Bricklet 2.0.

For example, if you want to make one step every 1.5 seconds, you can set the time base to 15 and the velocity to 10. Now the velocity is 10steps/15s = 1steps/1.5s.

request/silent_stepper_v2_bricklet/<UID>/get_time_base
Request:
  • empty payload
Response:
  • time_base – Type: int, Unit: 1 s, Range: [0 to 232 - 1], Default: 1

Returns the time base as set by request/silent_stepper_v2_bricklet/<UID>/set_time_base.

request/silent_stepper_v2_bricklet/<UID>/get_all_data
Request:
  • empty payload
Response:
  • current_velocity – Type: int, Unit: 1 1/s, Range: [0 to 216 - 1]
  • current_position – Type: int, Range: [-231 to 231 - 1]
  • remaining_steps – Type: int, Range: [-231 to 231 - 1]
  • input_voltage – Type: int, Unit: 1 mV, Range: [0 to 216 - 1]
  • current_consumption – Type: int, Unit: 1 mA, Range: [0 to 216 - 1]

Returns the following parameters: The current velocity, the current position, the remaining steps, the stack voltage, the external voltage and the current consumption of the stepper motor.

The current consumption is calculated by multiplying the Actual Motor Current value (see request/silent_stepper_v2_bricklet/<UID>/set_basic_configuration) with the Motor Run Current (see request/silent_stepper_v2_bricklet/<UID>/get_driver_status). This is an internal calculation of the driver, not an independent external measurement.

The current consumption calculation was broken up to firmware 2.0.1, it is fixed since firmware 2.0.2.

There is also a callback for this function, see register/silent_stepper_v2_bricklet/<UID>/all_data callback.

request/silent_stepper_v2_bricklet/<UID>/get_spitfp_error_count
Request:
  • empty payload
Response:
  • error_count_ack_checksum – Type: int, Range: [0 to 232 - 1]
  • error_count_message_checksum – Type: int, Range: [0 to 232 - 1]
  • error_count_frame – Type: int, Range: [0 to 232 - 1]
  • error_count_overflow – Type: int, Range: [0 to 232 - 1]

Returns the error count for the communication between Brick and Bricklet.

The errors are divided into

  • ACK checksum errors,
  • message checksum errors,
  • framing errors and
  • overflow errors.

The errors counts are for errors that occur on the Bricklet side. All Bricks have a similar function that returns the errors on the Brick side.

request/silent_stepper_v2_bricklet/<UID>/set_status_led_config
Request:
  • config – Type: int, Range: See symbols, Default: 3
Response:
  • no response

Sets the status LED configuration. By default the LED shows communication traffic between Brick and Bricklet, it flickers once for every 10 received data packets.

You can also turn the LED permanently on/off or show a heartbeat.

If the Bricklet is in bootloader mode, the LED is will show heartbeat by default.

The following symbols are available for this function:

For config:

  • "off" = 0
  • "on" = 1
  • "show_heartbeat" = 2
  • "show_status" = 3
request/silent_stepper_v2_bricklet/<UID>/get_status_led_config
Request:
  • empty payload
Response:
  • config – Type: int, Range: See symbols, Default: 3

Returns the configuration as set by request/silent_stepper_v2_bricklet/<UID>/set_status_led_config

The following symbols are available for this function:

For config:

  • "off" = 0
  • "on" = 1
  • "show_heartbeat" = 2
  • "show_status" = 3
request/silent_stepper_v2_bricklet/<UID>/get_chip_temperature
Request:
  • empty payload
Response:
  • temperature – Type: int, Unit: 1 °C, Range: [-215 to 215 - 1]

Returns the temperature as measured inside the microcontroller. The value returned is not the ambient temperature!

The temperature is only proportional to the real temperature and it has bad accuracy. Practically it is only useful as an indicator for temperature changes.

request/silent_stepper_v2_bricklet/<UID>/reset
Request:
  • empty payload
Response:
  • no response

Calling this function will reset the Bricklet. All configurations will be lost.

After a reset you have to create new device objects, calling functions on the existing ones will result in undefined behavior!

request/silent_stepper_v2_bricklet/<UID>/get_identity
Request:
  • empty payload
Response:
  • uid – Type: string, Length: up to 8
  • connected_uid – Type: string, Length: up to 8
  • position – Type: char, Range: ["a" to "h", "z"]
  • hardware_version – Type: [int, ...], Length: 3
    • 0: major – Type: int, Range: [0 to 255]
    • 1: minor – Type: int, Range: [0 to 255]
    • 2: revision – Type: int, Range: [0 to 255]
  • firmware_version – Type: [int, ...], Length: 3
    • 0: major – Type: int, Range: [0 to 255]
    • 1: minor – Type: int, Range: [0 to 255]
    • 2: revision – Type: int, Range: [0 to 255]
  • device_identifier – Type: int, Range: [0 to 216 - 1]
  • _display_name – Type: string

Returns the UID, the UID where the Bricklet is connected to, the position, the hardware and firmware version as well as the device identifier.

The position can be 'a', 'b', 'c', 'd', 'e', 'f', 'g' or 'h' (Bricklet Port). A Bricklet connected to an Isolator Bricklet is always at position 'z'.

The device identifier numbers can be found here. If symbolic output is not disabled, the device identifier is mapped to the corresponding name in the format used in topics.

The display name contains the Silent Stepper 2.0's name in a human readable form.

Callback Configuration Functions

request/silent_stepper_v2_bricklet/<UID>/set_minimum_voltage
Request:
  • voltage – Type: int, Unit: 1 mV, Range: [0 to 216 - 1], Default: 8000
Response:
  • no response

Sets the minimum voltage, below which the register/silent_stepper_v2_bricklet/<UID>/under_voltage callback is triggered. The minimum possible value that works with the Silent Stepper Bricklet 2.0 is 8V. You can use this function to detect the discharge of a battery that is used to drive the stepper motor. If you have a fixed power supply, you likely do not need this functionality.

request/silent_stepper_v2_bricklet/<UID>/get_minimum_voltage
Request:
  • empty payload
Response:
  • voltage – Type: int, Unit: 1 mV, Range: [0 to 216 - 1], Default: 8000

Returns the minimum voltage as set by request/silent_stepper_v2_bricklet/<UID>/set_minimum_voltage.

request/silent_stepper_v2_bricklet/<UID>/set_all_callback_configuration
Request:
  • period – Type: int, Unit: 1 ms, Range: [0 to 232 - 1], Default: 0
Response:
  • no response

Sets the period with which the register/silent_stepper_v2_bricklet/<UID>/all_data callback is triggered periodically. A value of 0 turns the callback off.

request/silent_stepper_v2_bricklet/<UID>/get_all_data_callback_configuraton
Request:
  • empty payload
Response:
  • period – Type: int, Unit: 1 ms, Range: [0 to 232 - 1], Default: 0

Returns the period as set by request/silent_stepper_v2_bricklet/<UID>/set_all_callback_configuration.

Callbacks

Callbacks can be registered to receive time critical or recurring data from the device. The registration is done with the corresponding .../register/... topic and an optional suffix. This suffix can be used to deregister the callback later.

Note

Using callbacks for recurring events is always preferred compared to using getters. It will use less USB bandwidth and the latency will be a lot better, since there is no round trip time.

register/silent_stepper_v2_bricklet/<UID>/under_voltage
Register Request:
  • register – Type: bool
Callback Response:
  • voltage – Type: int, Unit: 1 mV, Range: [0 to 216 - 1]

A callback can be registered for this event by publishing to the .../register/silent_stepper_v2_bricklet/<UID>/under_voltage[/<SUFFIX>] topic with the payload "true". An added callback can be removed by publishing to the same topic with the payload "false". To support multiple (de)registrations, e.g. for message filtering, an optional suffix can be used.

If the callback is triggered, a message with it's payload is published under the corresponding .../callback/silent_stepper_v2_bricklet/<UID>/under_voltage[/<SUFFIX>] topic for each registered suffix.

This callback is triggered when the input voltage drops below the value set by request/silent_stepper_v2_bricklet/<UID>/set_minimum_voltage. The callback payload is the current voltage.

register/silent_stepper_v2_bricklet/<UID>/position_reached
Register Request:
  • register – Type: bool
Callback Response:
  • position – Type: int, Range: [-231 to 231 - 1]

A callback can be registered for this event by publishing to the .../register/silent_stepper_v2_bricklet/<UID>/position_reached[/<SUFFIX>] topic with the payload "true". An added callback can be removed by publishing to the same topic with the payload "false". To support multiple (de)registrations, e.g. for message filtering, an optional suffix can be used.

If the callback is triggered, a message with it's payload is published under the corresponding .../callback/silent_stepper_v2_bricklet/<UID>/position_reached[/<SUFFIX>] topic for each registered suffix.

This callback is triggered when a position set by request/silent_stepper_v2_bricklet/<UID>/set_steps or request/silent_stepper_v2_bricklet/<UID>/set_target_position is reached.

Note

Since we can't get any feedback from the stepper motor, this only works if the acceleration (see request/silent_stepper_v2_bricklet/<UID>/set_speed_ramping) is set smaller or equal to the maximum acceleration of the motor. Otherwise the motor will lag behind the control value and the callback will be triggered too early.

register/silent_stepper_v2_bricklet/<UID>/all_data
Register Request:
  • register – Type: bool
Callback Response:
  • current_velocity – Type: int, Unit: 1 1/s, Range: [0 to 216 - 1]
  • current_position – Type: int, Range: [-231 to 231 - 1]
  • remaining_steps – Type: int, Range: [-231 to 231 - 1]
  • input_voltage – Type: int, Unit: 1 mV, Range: [0 to 216 - 1]
  • current_consumption – Type: int, Unit: 1 mA, Range: [0 to 216 - 1]

A callback can be registered for this event by publishing to the .../register/silent_stepper_v2_bricklet/<UID>/all_data[/<SUFFIX>] topic with the payload "true". An added callback can be removed by publishing to the same topic with the payload "false". To support multiple (de)registrations, e.g. for message filtering, an optional suffix can be used.

If the callback is triggered, a message with it's payload is published under the corresponding .../callback/silent_stepper_v2_bricklet/<UID>/all_data[/<SUFFIX>] topic for each registered suffix.

This callback is triggered periodically with the period that is set by request/silent_stepper_v2_bricklet/<UID>/set_all_callback_configuration. The callback payload members are: the current velocity, the current position, the remaining steps, the stack voltage, the external voltage and the current consumption of the stepper motor.

register/silent_stepper_v2_bricklet/<UID>/new_state
Register Request:
  • register – Type: bool
Callback Response:
  • state_new – Type: int, Range: See symbols
  • state_previous – Type: int, Range: See symbols

A callback can be registered for this event by publishing to the .../register/silent_stepper_v2_bricklet/<UID>/new_state[/<SUFFIX>] topic with the payload "true". An added callback can be removed by publishing to the same topic with the payload "false". To support multiple (de)registrations, e.g. for message filtering, an optional suffix can be used.

If the callback is triggered, a message with it's payload is published under the corresponding .../callback/silent_stepper_v2_bricklet/<UID>/new_state[/<SUFFIX>] topic for each registered suffix.

This callback is triggered whenever the Silent Stepper Bricklet 2.0 enters a new state. It returns the new state as well as the previous state.

The following symbols are available for this function:

For state_new:

  • "stop" = 1
  • "acceleration" = 2
  • "run" = 3
  • "deacceleration" = 4
  • "direction_change_to_forward" = 5
  • "direction_change_to_backward" = 6

For state_previous:

  • "stop" = 1
  • "acceleration" = 2
  • "run" = 3
  • "deacceleration" = 4
  • "direction_change_to_forward" = 5
  • "direction_change_to_backward" = 6
register/silent_stepper_v2_bricklet/<UID>/gpio_state
Register Request:
  • register – Type: bool
Callback Response:
  • gpio_state – Type: [bool, ...], Length: 2

A callback can be registered for this event by publishing to the .../register/silent_stepper_v2_bricklet/<UID>/gpio_state[/<SUFFIX>] topic with the payload "true". An added callback can be removed by publishing to the same topic with the payload "false". To support multiple (de)registrations, e.g. for message filtering, an optional suffix can be used.

If the callback is triggered, a message with it's payload is published under the corresponding .../callback/silent_stepper_v2_bricklet/<UID>/gpio_state[/<SUFFIX>] topic for each registered suffix.

This callback is triggered by GPIO changes if it is activated through request/silent_stepper_v2_bricklet/<UID>/set_gpio_action.

Internal Functions

Internal functions are used for maintenance tasks such as flashing a new firmware of changing the UID of a Bricklet. These task should be performed using Brick Viewer instead of using the internal functions directly.

request/silent_stepper_v2_bricklet/<UID>/set_bootloader_mode
Request:
  • mode – Type: int, Range: See symbols
Response:
  • status – Type: int, Range: See symbols

Sets the bootloader mode and returns the status after the requested mode change was instigated.

You can change from bootloader mode to firmware mode and vice versa. A change from bootloader mode to firmware mode will only take place if the entry function, device identifier and CRC are present and correct.

This function is used by Brick Viewer during flashing. It should not be necessary to call it in a normal user program.

The following symbols are available for this function:

For mode:

  • "bootloader" = 0
  • "firmware" = 1
  • "bootloader_wait_for_reboot" = 2
  • "firmware_wait_for_reboot" = 3
  • "firmware_wait_for_erase_and_reboot" = 4

For status:

  • "ok" = 0
  • "invalid_mode" = 1
  • "no_change" = 2
  • "entry_function_not_present" = 3
  • "device_identifier_incorrect" = 4
  • "crc_mismatch" = 5
request/silent_stepper_v2_bricklet/<UID>/get_bootloader_mode
Request:
  • empty payload
Response:
  • mode – Type: int, Range: See symbols

Returns the current bootloader mode, see request/silent_stepper_v2_bricklet/<UID>/set_bootloader_mode.

The following symbols are available for this function:

For mode:

  • "bootloader" = 0
  • "firmware" = 1
  • "bootloader_wait_for_reboot" = 2
  • "firmware_wait_for_reboot" = 3
  • "firmware_wait_for_erase_and_reboot" = 4
request/silent_stepper_v2_bricklet/<UID>/set_write_firmware_pointer
Request:
  • pointer – Type: int, Unit: 1 B, Range: [0 to 232 - 1]
Response:
  • no response

Sets the firmware pointer for request/silent_stepper_v2_bricklet/<UID>/write_firmware. The pointer has to be increased by chunks of size 64. The data is written to flash every 4 chunks (which equals to one page of size 256).

This function is used by Brick Viewer during flashing. It should not be necessary to call it in a normal user program.

request/silent_stepper_v2_bricklet/<UID>/write_firmware
Request:
  • data – Type: [int, ...], Length: 64, Range: [0 to 255]
Response:
  • status – Type: int, Range: [0 to 255]

Writes 64 Bytes of firmware at the position as written by request/silent_stepper_v2_bricklet/<UID>/set_write_firmware_pointer before. The firmware is written to flash every 4 chunks.

You can only write firmware in bootloader mode.

This function is used by Brick Viewer during flashing. It should not be necessary to call it in a normal user program.

request/silent_stepper_v2_bricklet/<UID>/write_uid
Request:
  • uid – Type: int, Range: [0 to 232 - 1]
Response:
  • no response

Writes a new UID into flash. If you want to set a new UID you have to decode the Base58 encoded UID string into an integer first.

We recommend that you use Brick Viewer to change the UID.

request/silent_stepper_v2_bricklet/<UID>/read_uid
Request:
  • empty payload
Response:
  • uid – Type: int, Range: [0 to 232 - 1]

Returns the current UID as an integer. Encode as Base58 to get the usual string version.