0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

LILYGO T-Deck Plus タッチパネルを試す

Posted at

次はT-Deck Plus タッチパネルを試してみようと思う。

サンプル優秀じゃね?

中華系のキットってドキュメントが微妙だったりして結構悩むんだけど
LYLYGOのサンプル優秀だな。GitHubのサンプル書込んだらそれで動きます
とはいかなかったのでハマったところは事項に。

5点マルチタッチ対応なのね

特製品情報に書いてないのですが、本品5点マルチタッチ対応です。

int16_t x[5], y[5];
uint8_t touched =  touch.getPoint(x, y, touch.getSupportTouchPoint());

がタッチパネルの関数です。
最初なんでX座標とY座標の変数が配列なんね?と悩みましたが
単純に5点マルチタッチのそれぞれのポイントが代入されます。

そのため getPoint の戻り値 touched には検出したtouchポイント数が返されます。

実際のアプリケーションでは touched の数だけポイントの処理をしてください。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?