A mock of the regular robot tunnel for the simulator robots

Hierarchy

Constructors

Properties

address: undefined | string
connected: boolean = true
dataBuffer: undefined | Buffer
emitter: RobotEventEmitter
headingRadians: number = 0
id: undefined | string
position: Position = ZERO_POSITION
robotId: string
messages: {
    message: SimulatorUpdateMessage;
    ts: Date;
}[] = []

Methods

  • handles the incoming data and check if it is valid

    emits result for further handling

    Returns

    • nothing if nothing happened and nothing if something happened

    Returns Promise<void>

  • Parameters

    • mac: string

    Returns {
        macAddress: string;
        type: CLIENT_HELLO;
    } | {
        config: {};
        protocol: number;
        type: SERVER_HELLO;
    } | {
        type: PING_SEND;
    } | {
        type: PING_RESPONSE;
    } | {
        type: QUERY_VAR;
        var_id: number;
        var_type: "float" | "int32" | "uint32";
    } | {
        type: QUERY_RESPONSE;
        var_id: number;
        var_val: number;
    } | Object | {
        deltaHeadingRadians: number;
        type: TURN_BY_ANGLE;
    } | {
        tileDistance: number;
        type: DRIVE_TILES;
    } | {
        type: ACTION_SUCCESS;
    } | {
        reason: string;
        type: ACTION_FAIL;
    } | {
        left: number;
        right: number;
        type: DRIVE_TANK;
    } | {
        type: ESTOP;
    }

  • send packets to robot. promise resolves when the robot acknowledges that the action is complete

    Returns

    • the packet id

    Parameters

    • packet: {
          macAddress: string;
          type: CLIENT_HELLO;
      } | {
          config: {};
          protocol: number;
          type: SERVER_HELLO;
      } | {
          type: PING_SEND;
      } | {
          type: PING_RESPONSE;
      } | {
          type: QUERY_VAR;
          var_id: number;
          var_type: "float" | "int32" | "uint32";
      } | {
          type: QUERY_RESPONSE;
          var_id: number;
          var_val: number;
      } | Object | {
          deltaHeadingRadians: number;
          type: TURN_BY_ANGLE;
      } | {
          tileDistance: number;
          type: DRIVE_TILES;
      } | {
          type: ACTION_SUCCESS;
      } | {
          reason: string;
          type: ACTION_FAIL;
      } | {
          left: number;
          right: number;
          type: DRIVE_TANK;
      } | {
          type: ESTOP;
      }

      packet to send

    Returns Promise<string>

Generated using TypeDoc