LoginSignup
0
0

More than 5 years have passed since last update.

arduinoでターミナル その7

Posted at

概要

arduinoでターミナルやってみる。
20字4行のLCDとps/2キーボードをつないで、シリアル端末を作ってみる。
エコーホストに、接続して見た。

写真

MVC-003F.JPG
MVC-004F.JPG

エコーホストのサンプルコード

void setup()
{
    Serial.begin(115200);
    Serial.println("echo");
}
void loop()
{
    while (Serial.available() > 0)
    {
        char c = Serial.read();
        Serial.write(c);
    }
}


以上。

0
0
0

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
0
0