enableBacklight
sop4618_SSourcesop4618_SenableBacklight
Description Source Call Graph
Start Line: 136
void sop4618_S::enableBacklight(bool state=true)
{
  if(state == true)
  {
    puts("\e[?26h");
  }
  else
  {
    puts("\e[?26I");
  }
  flush(); 
}