NAiOS IconNAiOS Logo
Volver al catálogo

Bolt Iot

bolt_iot

Bolt IoT is an integrated platform that enables users to build IoT projects by connecting sensors and actuators to the internet, offering cloud-based control and monitoring capabilities.

Acciones
7
Triggers
0
Autenticación
OAuth gestionado
No
Información técnica: el detalle de parámetros, schemas y triggers de esta página está pensado para equipos de integración. Si solo necesitas saber si tu herramienta favorita está disponible, basta con ver la lista de acciones.

Acciones disponibles (7)

Cada acción es una operación que el agente puede ejecutar contra este conector. Haz clic en una acción para ver sus parámetros.

Analog ReadBOLT_IOT_ANALOG_READAcción

Tool to read the analog value from a specified pin on a bolt device. use when you need sensor readings (0–1023) after confirming the device is online.

Parámetros de entrada

  • pinstringObligatorioenum

    Analog input pin to read. Valid values: 'A0', 'A1', 'A2', 'A3'.

    A0A1A2A3

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Bolt IoT Digital WriteBOLT_IOT_BOLT_IOT_DIGITAL_WRITEAcción

Tool to set a digital pin high or low on a specified bolt device. use when controlling actuators or leds via digital output.

Parámetros de entrada

  • pinstringObligatorio

    The digital pin number to set (e.g., '0', '1', etc.).

  • statestringObligatorioenum

    Desired digital output state for the pin: 'HIGH' or 'LOW'.

    HIGHLOW
  • deviceNamestringObligatorio

    The name or ID of the Bolt device as shown in your Bolt IoT account.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Check Bolt device online statusBOLT_IOT_CHECK_DEVICE_STATUSAcción

Tool to check whether a specified bolt device is online. use when you need to verify device connectivity before sending commands (e.g., control signals). example: 'check if device bolt1234567 is online.'

Parámetros de entrada

  • deviceIDstringObligatorio

    Unique identifier of the Bolt IoT device. Must be in the format 'BOLTXXXXXXX'.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Bolt IoT Digital WriteBOLT_IOT_DIGITAL_WRITEAcción

Tool to set a digital pin high or low on a specified bolt device. use when controlling actuators or leds via digital output.

Parámetros de entrada

  • pinstringObligatorio

    The digital pin number to set (e.g., '0', '1', etc.).

  • statestringObligatorioenum

    Desired digital output state for the pin: 'HIGH' or 'LOW'.

    HIGHLOW
  • deviceNamestringObligatorio

    The name or ID of the Bolt device as shown in your Bolt IoT account.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Bolt IoT Serial ReadBOLT_IOT_SERIAL_READAcción

Tool to read incoming serial data from a bolt device. use when you've initialized uart with serialbegin and need to retrieve serial data.

Parámetros de entrada

  • tillinteger

    ASCII value of the character up to which data should be read. If omitted, reads until newline (ASCII 10).

  • deviceNamestringObligatorio

    The name or ID of the Bolt device as shown in your Bolt IoT account.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Bolt IoT Serial WriteBOLT_IOT_SERIAL_WRITEAcción

Tool to send serial data to a bolt device. use when you need to transmit ascii data over uart after initializing uart with serialbegin.

Parámetros de entrada

  • datastringObligatorio

    Data string to transmit as ASCII characters over UART.

  • deviceNamestringObligatorio

    The name or ID of the Bolt device as shown in your Bolt IoT account.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Bolt IoT Serial Write & ReadBOLT_IOT_SERIAL_WRITE_READAcción

Tool to send serial data and read the response on a bolt device. use when you need to transmit ascii data over uart and capture its reply immediately.

Parámetros de entrada

  • datastringObligatorio

    ASCII string to transmit over UART.

  • deviceNamestringObligatorio

    The name or ID of the Bolt device as shown in your Bolt IoT account.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not