does any of you have a C routine i can start with for displaying some characters on an I2C display (maxtrix orbital 2041)
something like this should do the job i thought,.. but no

any help is appreciated
void main (void)
{
OpenI2C(MASTER, SLEW_ON);
StartI2C();
WriteI2C(0xB8); //B8 = display adress
NotAckI2C();
WriteI2C(0xFE); // command prefix
NotAckI2C();
WriteI2C(0x46); // Turn backlight off
NotAckI2C();
StopI2C();
CloseI2C();
}
Thanks,
K