CODE
set_bar_graph(block_value)
Description
Sets the number of bars to be lit on a Bar Graph Cubelet based on the input value.
Parameters
block_value The value to set the bar graph. A number 0-255.
Compatibility
Bargraph Blocks
Example
    void setup()
    {
    }
    void loop()
    {
        act();
    }
    void act()
    {
        set_bar_graph(255);//Sets the Bar Graph Cubelet to it's highest value.
    }