Cannot not get Breakout garden working. I also bought it with the 0.96 lcd spI and the TVOC/eCO2. Have both slotted in, have followed the procedure for the Breakout Garden, when I use sudo ./install.sh I get a message, Sorry I cannot find any breakouts.
The screen has some luminescence, apart from that there is nothing. I tried a raspberry pi 3 b and a 4 b with Raspbian Buster with desktop.
@Caperjack1953 I didnt have, but now I have and still no joy, when i run the script it still says I couldnt find any breakouts.
From Interfaces I now only have spi and 12c enabled and I have tried several reboots after following the link you kindly sent me.
@alphanumeric, they cannot go anyfurther in than what i have them. I have them facing the HDMI connector.
I was referring to the Breakout Garden Hat or pHat, being firmly attached to the Piās GPIO.
Something else to try is running the installer for each of the breakouts. Like you would if you were connecting them directly to the Pi, but leave them in the Hat.
Try running i2cdetect -y 1 from terminal window and see if you get a 0x58 for the TVOC breakout.
It kind of sounds like the Breakout Garden Hat of pHat is defective?
EDIT: which Hat or phat do you have exactly?
@alphanumeric. It is the Breakout Garden Mini (I2C + SPI). I ran the above command from the terminal window and the result was an empty grid , Hex across the top and 00 to 70 for the vertical.
Just a shot in the dark, try āi2cdetect -Fā with no boards connected. The only active component on the board is an EEPROM. So the BG board may be defective. It sounds like the backlight is getting power, though.
From man page: -F Display the list of functionalities implemented by the adapter and exit.
EDIT: Sorry, you said you had the Mini Breakout. I donāt see any active components (no EEPROM) on that one.
Hi Paulio, i donāt know if you have found a solution in the meanwhile. Anyway, i think the problems is that install.sh script try to discover i2c sensors/devices, whilst you are working with SPI devices. So itās normal the installer doesnāt see anything. In my case, the SPI 1.3 LCD, i just had to install the display drivers as described in https://github.com/pimoroni/st7789-python
I tend to agree, documentation could be better in respect to setting up SPI devices on Breakout Garden. Me personally, I do it all manually, one breakout at a time. Iām swapping devices in and out pretty regularly.
Iām no expert, but as far as I know, there is no easy way to detect what is connected to SPI? i2c is pretty easy, scan for the addresses, and if you assume its a Pimoroni breakout you know which one it is by the address. Unless you have switched it to an alternate or something.
This is my first time using Rapberry Pi 400 and recieved the breakout garden (PIM532) and SPI LCD (PIM436) for Christmas.
Iāve got as far as working out where the Terminal is and extracting the zip folders but Iām also having the problem where the error simply says, āSorry, canāt find any breakouts!ā.
Can you help please? And if so, please keep it as simple as possible. Cheers, Paul
The Breakout Garden software / utility will only detect i2c devices. You have to install and setup SPI breakouts manually. Itās a byproduct of how the two buses work. i2c devices have addresses that can be looked for / detected. And then install the software based on the address found. SPI doesnāt work that way, there is no easy way to detect what is plugged into it.
I do believe I also got that error, LCD worked anyway so I just ignored it.
You will see that code section in the examples for the LCD display breakout. Try the examples as is and if they work donāt worry about it. Only edit them if you have too.
I also ran some of the Enviro and Enviro+ examples on my breakout garden and had to edit that section to get the display to work. The Enviro uses the same 0.96 LCD, but it uses different GPIO pins for chip select and the back light.