I recently assembled the DoT RGB Breakout and connected to my Raspberry Pi 3B+. After connecting everything I am able to control the RGB lights with the sample code (https://learn.pimoroni.com/tutorial/sandyj/dot-breakout-usage-pi)
import RPi.GPIO as GPIO
GPIO.setmode(GPIO.BCM)
GPIO.setup(5, GPIO.OUT)
GPIO.setup(6, GPIO.OUT)
GPIO.setup(13, GPIO.OUT)
GPIO.output(5, GPIO.HIGH)
However, when I try writing to the display nothing happens
import dot3k.lcd as lcd
lcd.set_contrast(20)
lcd.write(‘AHOY THERE!!’)
Any ideas?