1
0
mirror of https://github.com/arduino/Arduino.git synced 2024-12-13 23:48:46 +01:00
Arduino/libraries/Robot_Control/examples/learn/LCDWriteText/LCDWriteText.ino

44 lines
1.0 KiB
Arduino
Raw Normal View History

2013-05-15 10:47:17 +02:00
/*
LCD Write Text
2013-05-15 10:47:17 +02:00
Use the Robot's library function text() to
print out text to the robot's screen. Take
into account that you need to erase the
information before continuing writing.
2013-05-15 10:47:17 +02:00
Circuit:
* Arduino Robot
2013-05-15 10:47:17 +02:00
created 1 May 2013
by X. Yang
modified 12 May 2013
by D. Cuartielles
2013-05-15 10:47:17 +02:00
This example is in the public domain
*/
#include <ArduinoRobot.h>
#include <Wire.h>
#include <SPI.h>
2013-05-15 10:47:17 +02:00
void setup() {
// initialize the robot
Robot.begin();
// initialize the screen
Robot.beginTFT();
}
void loop() {
Robot.stroke(0, 0, 0); // choose the color black
Robot.text("Hello World", 0, 0); // print the text
delay(2000);
Robot.stroke(255, 255, 255); // choose the color white
Robot.text("Hello World", 0, 0); // writing text in the same color as the BG erases the text!
2013-05-15 10:47:17 +02:00
Robot.stroke(0, 0, 0); // choose the color black
Robot.text("I am a robot", 0, 0); // print the text
delay(3000);
Robot.stroke(255, 255, 255); // choose the color black
Robot.text("I am a robot", 0, 0); // print the text
}