Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 15 Current »


Introduction

The Digital Message Type is BOOLEAN based, it only has the two states true and false. It can only transition from false to true (rising edge) and from true to false (falling edge).


Example Data

  • true

  • false


Converts to

Message Type

True

False

Trigger

triggers on rising edge

-

Analog

4095

0

Percent

100%

0%

String

“ON”

“OFF”

Light

Light on

Light off

Number

1

0

Scaled Number

top number of the set range

low number of the set range

Display Message Type

displays “ON”

displays “OFF”

7 Segment

1

0

Smartcolor

All On White (0xFFFFFF)

All Off (0x000000)

Color

White (0xFFFFFF)

Off (0x000000)

Servo

180 degrees (top of scale)

0 degrees (low of scale)

PWM (Pulse Wave Modulation)

255 (top of scale)

0 (low of scale)

Any Signal that is not mentioned on the table above should not be able to convert


Debug View

In the Debug View values can be written to or read from the drivers on the Builder Base directly

Write

  • “0” - sets output to false

  • “OFF” - sets output to false

  • “LOW” - sets output to false

  • “1“ - sets output to true

  • “ON” - sets output to true

  • “HIGH“ - sets output to true

Read/Notify

  • “OFF” - if input is false

  • “ON” - if input is true

  • No labels