Configure an Ultrasonic Camera

Configure an ultrasonic camera to integrate the HC-S204 ultrasonic distance sensor into your machine:

Navigate to the CONFIGURE tab of your machine’s page in the Viam app. Click the + icon next to your machine part in the left-hand menu and select Component. Select the camera type, then select the ultrasonic model. Enter a name or use the suggested name for your camera and click Create.

Creation of a ultrasonic camera in the Viam app config builder.

Edit the attributes as applicable to your camera, according to the table below.

{
  "components": [
    {
      "name": "<your-ultrasonic-sensor-name>",
      "model": "ultrasonic",
      "type": "camera",
      "namespace": "rdk",
      "attributes": {
        "trigger_pin": "<pin-number>",
        "echo_interrupt_pin": "<pin-number>",
        "board": "<your-board-name>",
        "timeout_ms": <int>
      },
      "depends_on": []
    }
  ]
}
{
  "components": [
    {
      "name": "my-ultrasonic-sensor",
      "model": "ultrasonic",
      "type": "camera",
      "namespace": "rdk",
      "attributes": {
        "trigger_pin": "5",
        "echo_interrupt_pin": "15",
        "board": "local",
        "timeout_ms": "1200"
      },
      "depends_on": []
    }
  ]
}

The following attributes are available for ultrasonic cameras:

AttributeTypeInclusionDescription
trigger_pinstringRequiredThe pin number of the board’s GPIO pin that you have wired the ultrasonic’s trigger pin to.
echo_interrupt_pinstringRequiredThe pin number of the pin the ultrasonic’s echo pin is wired to on the board. If you have already created a digital interrupt for this pin in the board’s configuration, use that digital interrupt’s name instead.
boardstringRequiredThe name of the board the ultrasonic is wired to.
timeout_msintOptionalTime to wait in milliseconds before timing out of requesting to get ultrasonic distance readings.
Default: 1000.

Next steps

Have questions, or want to meet other people working on robots? Join our Community Discord.

If you notice any issues with the documentation, feel free to file an issue or edit this file.