Home / documentation / Virtuoso component Standard Library working Details - 1.0.0

Virtuoso component Standard Library working Details

SEVEN SEGMENT CONTROL

7. SEVEN SEGMENT CONTROL

Case 1:-Default Setup

(A)   Default Node Style

(A)   Default Property Window

(C) Default Preview Window

(D) Default view in HOST

Case 2:- Result in Default Settings

(A)   Node Style

 

(B)   Property Window

(C)   View in HOST

Ex:-It will be defined in TMB

unsigned char SevenSeg = 48;

void tmrSevenSgement()

{

       if (SevenSeg >= 58)

       {

              SevenSeg = 48;

       }

       SevenSeg++;

}

Case 3:-when raw data is supplied in the form of “Array”

(A)   Default Setting of Node

(A)   Default Setting for Property Window

(C)  View in HOST

Implemented Example:-It is implemented in TMB

unsigned char SevenSegArr[] = {

       250,200,215,210,255

};

 

 

On this page: