#include "i2c_lcd.h"
void setup() {
// put your setup code here, to run once:
start();
i2c_send((SLAVE_ADD << 1));
command(0x02);
command(0x01);
command(0x28);
command(0x0c);
command(0x06);
command(0x83);
send_data("HELLO");
command(0xc8);
send_data("WORLD!");
stop();
}
void loop() {
// put your main code here, to run repeatedly:
}