Digital To Char: Difference between revisions

From Visuino
Jump to navigation Jump to search
Created page with "Image:TArduinoDigitalToChar.png == Summary == Converts a digital signal into a character output based on predefined true/false values. == Description == The **Digital To Char** component transforms a digital input (boolean) into a character output. When the input is LOW (false), it outputs the specified '''False Value''' character. When the input is HIGH (true), it outputs the specified '''True Value''' character. This is useful for generating text-base..."
 
(No difference)

Latest revision as of 05:51, 24 August 2025

File:TArduinoDigitalToChar.png

Summary

Converts a digital signal into a character output based on predefined true/false values.

Description

The **Digital To Char** component transforms a digital input (boolean) into a character output. When the input is LOW (false), it outputs the specified False Value character. When the input is HIGH (true), it outputs the specified True Value character. This is useful for generating text-based representations of digital states in logging, serial output, or user interfaces.

Diagram:

Categories

Properties

  • False Value – Character output when input is FALSE (default: F).
  • True Value – Character output when input is TRUE (default: T).

Pins

Input Pins

  • In – Digital input (boolean).

Output Pins

  • Out – Character output corresponding to the digital state.