Hi!
I have a raspberry pi zero2 w with an inky WHAT board attached to the GPIO pins, and running the identify.py example returns an error “No display EEPROM detected”.
I have I2C enabled :
>sudo raspi-config nonint get_i2c
>0
(I believe 0 = true)
Here is the version of the inky package I have :
> pip3 show inky
Name: inky
Version: 1.5.0
Summary: Inky pHAT Driver
Home-page: http://www.pimoroni.com
Author: Philip Howard
Author-email: phil@pimoroni.com
License: MIT
Location: /home/evolmonster/.local/lib/python3.9/site-packages
Requires: numpy, smbus2, spidev
The other prebuilt examples also return the same sort of error :
> python3 name-badge.py --type what --color red --name "Hello"
Inky pHAT/wHAT: Hello... my name is:
Use Inky pHAT/wHAT as a personalised name badge!
Failed to detect an Inky board. Trying --type/--colour arguments instead...
Traceback (most recent call last):
File "/home/evolmonster/Pimoroni/inky/examples/name-badge.py", line 18, in <module>
inky_display = auto(ask_user=True, verbose=True)
File "/home/evolmonster/.local/lib/python3.9/site-packages/inky/auto.py", line 74, in auto
return InkyWHAT(args.colour)
File "/home/evolmonster/.local/lib/python3.9/site-packages/inky/what.py", line 39, in __init__
inky.Inky.__init__(
File "/home/evolmonster/.local/lib/python3.9/site-packages/inky/inky.py", line 86, in __init__
raise ValueError('Colour {} is not supported!'.format(colour))
ValueError: Colour None is not supported!
I have tried attaching the inky to the raspberry pi both orientations, and it is seated correctly. I have not soldered the pins, as I am using a press-in header that came with the inky. But all looks correctly connected to me. But I cannot get the screen to be detected!
Can anyone help?