#include #include #include // Create an instance of the BV4618_S class // BV4618_S bv(rxPin, txPin, int_pin) BV4618_S bv(1, 0); void setup() { // put your setup code here, to run once: // Set baud rate, delay, and ACK char bv.begin(9600, 50, '*'); // LCD is 4x20 bv.puts("\e[4L\e[20c"); // 4 x 20 display // Clear the screen bv.puts("\e[2J"); delay(50); // Hide the cursor bv.puts("\e[?25I"); // In honor of Dennis Ritchie! bv.puts("\n Hello World!"); } void loop() { // put your main code here, to run repeatedly: // Nothing to do so this is empty }