clear_bar(bar_number)
Description
Clears a bar on the Bar Graph Cubelet.
Parameters
bar_number The position on the Bar Graph of the bar to clear. A number 0-9.
Compatibility
Bargraph Blocks
Example
void setup()
{
}
void loop()
{
act();
}
void act()
{
set_bar_graph(255);//Illuminate all bars.
//Turn off the second, fourth, and sixth bars.
clear_bar(1);
clear_bar(3);
clear_bar(5);
}