Implementing print() methods within a library

Thanks PaulS,

Another top reply in lightning time! - I only wish the paid Support Services my company subscribes to were as good as this forum!

I've got the library working by adding this line to my header file (cut and pasted from the LiquidCrystal library)...

virtual void write(uint8_t);

And these lines to the .cpp file....

inline void LCDvario::write(uint8_t value) {
  _lcd.write(value); // invoke the write() method in the LiquidCrystal library
}

Cheers