Hello again @JimF
Any success?
Just for the heck of it I ordered a couple of cheap displays: https://smile.amazon.com/dp/B079M3GWFG
Which I picked up at my mailbox this morning, soldered some pins in.... And used Micromod instead of T4, but should not not make much of a difference.
The only edit I did to your sketch was to change 20 to 16 ...
Code:
#include <LiquidCrystal.h>
// initialize the LCD with the numbers of the interface pins
LiquidCrystal lcd(2, 3, 4, 5, 6, 7, 8);
void setup() {
lcd.begin(16, 2); // set up the LCD's number of columns and rows:
lcd.print("Collins Digital"); //Sign on
lcd.setCursor(0, 1);
lcd.print("Display/Gen");
delay(2000);
lcd.clear();
lcd.print("Jim, K7NCG");
lcd.setCursor(0, 1);
lcd.print("1/10/2021");
delay(2000);
lcd.clear();
}
void loop() {
lcd.print("Collins Digital"); //Sign on
lcd.setCursor(0, 1);
lcd.print("Display/Gen");
delay(2000);
lcd.clear();
lcd.print("Jim, K7NCG");
lcd.setCursor(0, 1);
lcd.print("1/10/2021");
delay(2000);
lcd.clear();
}
Not sure if it mattered but I am using: Arduino library manager LiquidCrystal, which I think is the same as the Teensy install.
Code:
Used: C:\Users\kurte\Documents\Arduino\libraries\LiquidCrystal
Not used: C:\arduino-1.8.19\libraries\LiquidCrystal
Not used: C:\arduino-1.8.19\hardware\teensy\avr\libraries\LiquidCrystal
Using library LiquidCrystal at version 1.0.7 in folder: C:\Users\kurte\Documents\Arduino\libraries\LiquidCrystal
I used http://www.learningaboutelectronics....80-circuit.php
as a reference on which pins go to which...

And I had to adjust the contrast with the pot.