ArduinoGraphics::text()
説明
文字を書く。stroke()で設定した描画色と、background()で設定した背景色を利用する。
書式
void ArduinoGraphics::text(const char* str, int x = 0, int y = 0)
void ArduinoGraphics::text(const String& str, int x = 0, int y = 0)
引数
str | 各文字列 |
x | 文字の開始位置のX座標 |
y | 文字の開始位置のY座標 |
戻り値
なし
使用例
YourScreen.beginDraw();
YourScreen.clear();
YourScreen.stroke(255, 255, 255);
YourScreen.text("abc", 0, 1);
YourScreen.endDraw();
オリジナルのページ
https://www.arduino.cc/reference/en/libraries/arduinographics/text/
最終更新日
August 18, 2024