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

inserted by FC2 system