CODE
set_binary(value)
Description
Displays a binary representation of the supplied number.
Parameters
value The value to be displayed as binary on the bar graph. A decimal number 0-255.
Compatibility
Bargraph Blocks
Example
    void setup()
    {
    }
    void loop()
    {
        act();
    }
    void act()
    {
        set_binary(42);//Displays the binary value for 42 (101010).
    }