PlatformIO package of the Teensy core framework compatible with GCC 10 & C++20
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

setCursor.pde 1.9KB

3 years ago
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*
  2. LiquidCrystalFast Library - setCursor
  3. Demonstrates the use a 16x2 LCD display. The LiquidCrystalFast
  4. library works with all LCD displays that are compatible with the
  5. Hitachi HD44780 driver. There are many of them out there, and you
  6. can usually tell them by the 16-pin interface.
  7. This sketch prints to all the positions of the LCD using the
  8. setCursor(0 method:
  9. The circuit:
  10. * LCD RS pin to digital pin 12
  11. * LCD WR pin to digital pin 10
  12. * LCD Enable pin to digital pin 11
  13. * LCD D4 pin to digital pin 5
  14. * LCD D5 pin to digital pin 4
  15. * LCD D6 pin to digital pin 3
  16. * LCD D7 pin to digital pin 2
  17. * 10K resistor:
  18. * ends to +5V and ground
  19. * wiper to LCD VO pin (pin 3)
  20. Library originally added 18 Apr 2008
  21. by David A. Mellis
  22. library modified 5 Jul 2009
  23. by Limor Fried (http://www.ladyada.net)
  24. example added 9 Jul 2009
  25. by Tom Igoe
  26. modified 25 July 2009
  27. by David A. Mellis
  28. http://www.pjrc.com/teensy/td_libs_LiquidCrystal.html
  29. http://www.arduino.cc/en/Tutorial/LiquidCrystal
  30. */
  31. // include the library code:
  32. #include <LiquidCrystalFast.h>
  33. // these constants won't change. But you can change the size of
  34. // your LCD using them:
  35. const int numRows = 2;
  36. const int numCols = 16;
  37. // initialize the library with the numbers of the interface pins
  38. LiquidCrystalFast lcd(12, 10, 11, 5, 4, 3, 2);
  39. // LCD pins: RS RW EN D4 D5 D6 D7
  40. void setup() {
  41. // set up the LCD's number of rows and columns:
  42. lcd.begin(numRows, numCols);
  43. }
  44. void loop() {
  45. // loop from ASCII 'a' to ASCII 'z':
  46. for (int thisLetter = 'a'; thisLetter <= 'z'; thisLetter++) {
  47. // loop over the columns:
  48. for (int thisCol = 0; thisCol < numRows; thisCol++) {
  49. // loop over the rows:
  50. for (int thisRow = 0; thisRow < numCols; thisRow++) {
  51. // set the cursor position:
  52. lcd.setCursor(thisRow,thisCol);
  53. // print the letter:
  54. lcd.write(thisLetter);
  55. delay(200);
  56. }
  57. }
  58. }
  59. }