sendCmd
sop4618_SSourcesop4618_SsendCmd
Description Source Call Graph
Start Line: 418
void sop4618_S::sendCmd(uint8_t cmd)
{
  String s("\e[");
  char buf[12];
  memset(buf, 0x0, sizeof(buf));
  itoa(cmd, buf, 10);
  s += String(buf) + String('E');
  s.toCharArray(buf, sizeof(buf));
  puts(buf);
  flush();
}