LoginSignup
1
1

More than 1 year has passed since last update.

ESP32(Arduino IDE)のシリアル通信でエスケープシーケンスを送信する方法

Posted at

こちらの記事を参照
https://uma-shi.com/archives/7920

test.ino
//ESC
const char ESC  = '\e';
Serial.print(ESC); 

//TAB は '\t';
//CR は '\e';

シンプルだけど調べるのにとても時間がかかった・・・

1
1
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1