Arduino-LiquidCrystal-I2C-library icon indicating copy to clipboard operation
Arduino-LiquidCrystal-I2C-library copied to clipboard

please provide more examples for all single library functions

Open dsyleixa opened this issue 5 years ago • 0 comments

the example code sources are very poor - please provide more examples for all single library functions:

        void home();
	void noDisplay();
	void display();
	void noBlink();
	void blink();
	void noCursor();
	void cursor();
	void cursor();	
	void scrollDisplayLeft();
	void scrollDisplayRight();
	void printLeft();
	void printRight();
	void leftToRight();
	void rightToLeft();
	void shiftIncrement();
	void shiftDecrement();
	void noBacklight();
	void backlight();
	bool getBacklight();
	void autoscroll();
	void noAutoscroll();
	void createChar(uint8_t, uint8_t[]);
	void setCursor(uint8_t, uint8_t);
	virtual size_t write(uint8_t);
	void command(uint8_t);
	inline void blink_on() { blink(); }
	inline void blink_off() { noBlink(); }
	inline void cursor_on() { cursor(); }
	inline void cursor_off() { noCursor(); }

dsyleixa avatar Mar 30 '20 18:03 dsyleixa