Minimal BB-DSL robot used for introspection in the bb_mcp test suite.
Its commands block declares a category alongside its commands, because the
DSL's commands section holds both and BB.Dsl.Info.commands/1 returns them
together.
Summary
Functions
Execute the arm command.
Returns a child specification for starting this robot under a supervisor.
Execute the disarm command.
Execute the go_home command.
Returns the optimised robot representation.
Starts the robot's supervision tree.
Execute the wave command.
Functions
Execute the arm command.
Returns
{:ok, pid()}- Command started, useBB.Command.await/2for the result{:error, term()}- Command could not be started
Example
{:ok, cmd} = arm(goal_args)
{:ok, result} = BB.Command.await(cmd)
@spec child_spec(Keyword.t()) :: Supervisor.child_spec()
Returns a child specification for starting this robot under a supervisor.
Execute the disarm command.
Returns
{:ok, pid()}- Command started, useBB.Command.await/2for the result{:error, term()}- Command could not be started
Example
{:ok, cmd} = disarm(goal_args)
{:ok, result} = BB.Command.await(cmd)
Execute the go_home command.
Arguments
duration::integer, default:1000- Duration in milliseconds
Returns
{:ok, pid()}- Command started, useBB.Command.await/2for the result{:error, term()}- Command could not be started
Example
{:ok, cmd} = go_home(goal_args)
{:ok, result} = BB.Command.await(cmd)
@spec robot() :: BB.Robot.t()
Returns the optimised robot representation.
This struct is built at compile-time from the DSL definition and contains:
- All physical values converted to SI base units (floats)
- Flat maps for O(1) lookup of links, joints, sensors, and actuators
- Pre-computed topology metadata for efficient traversal
Examples
robot = Elixir.BB.MCP.FixtureRobot.robot()
{:ok, link} = BB.Robot.get_link(robot, :base_link)
{:ok, joint} = BB.Robot.get_joint(robot, :shoulder)
@spec start_link(Keyword.t()) :: Supervisor.on_start()
Starts the robot's supervision tree.
Options
All options are passed through to sensor and actuator child processes.
Execute the wave command.
Arguments
cycles::integer(required) - Number of cyclesspeed::float, default:1.0style:{:in, [:gentle, :enthusiastic]}, default::gentle- How to waveabout::atom- Joint to wave about
Returns
{:ok, pid()}- Command started, useBB.Command.await/2for the result{:error, term()}- Command could not be started
Example
{:ok, cmd} = wave(goal_args)
{:ok, result} = BB.Command.await(cmd)