LoginSignup
0
0

More than 5 years have passed since last update.

lazuritaでSerial

Posted at

概要

lazuritaでSerialやってみた。

仕様

Serial1とSerial2とSerial3は、どれか一つ。

Rx Tx
Serial D0 D1
Serial1 D11 D12
Serial2 A0 A1
Serial3 A4 A5

嵌りポイント

printが、めちゃめちゃ。

文字列の場合

Serial.print("ABC");

一文字の場合

Serial.write_byte('a');

数値の場合

Serial.print_long(12345, DEC);

以上。

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