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