
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);
}