From 91a85de4b1af058f2907b78a983aca63dc3821b5 Mon Sep 17 00:00:00 2001 From: Neon22 Date: Fri, 27 Dec 2013 19:26:54 -0800 Subject: [PATCH] intial attempt --- LCD-driver.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 LCD-driver.md diff --git a/LCD-driver.md b/LCD-driver.md new file mode 100644 index 0000000..741d368 --- /dev/null +++ b/LCD-driver.md @@ -0,0 +1,12 @@ +The inbuilt LCD driver has a number of functions defining its behaviour: + +* lcd.clear() # clears the ecreen +* lcd.reset(x,y) # clears the pixel at x,y to a 0 or empty state +* lcd.set(x,y) # sets the pixel on at position x,y +* lcd.get(x,y) # gets a 0 or 1 indicating the off/on state of the pixel at x,y +* lcd.show() # updates the display and forces a redraw. + +!!how do we set the mode for a given lcd device. + +Example: +* aaa \ No newline at end of file