@profezzorn I want to do a testing station, and currently want to have two OLEDs in series (with different addresses, of course), plus an ST7735 TFT, and six buttons.
Can I have OLED in “series” plus the TFT?
Second issue is that after connecting all those displays, I’m only left with Data4, RX and TX for Button 4, Button 5 and LatchingButton 6. Can I use those pins?
Thanks!
Yes, you can have two displays on the i2c bus. In theory you can have lots of them, as long as they have different addresses. You can also have a TFT display at the same time, but I’m not sure if all of that will operate smoothly if you run it all at the same time.
Any “GPIO” pin can be used for buttons, so RX, TX and Data4 are fine for buttons.
Well, I thought that if I’m going to make a test station, I should go all in and test as much as possible. I’m using a 128x32 OLED plus a 128x64. So I want to see how do I configure the non-standard resolution for the OLED, too. My objective is obviously to look for corner cases. But this would enable a blaster worth dedicated OLED for battery, round counter plus the TFT for effects, for example.
You could do connectors instead.
Like, you could wire in one of these instead of a color display: Adafruit EYESPI Breakout Board - 18 Pin FPC Connector : ID 5613 : Adafruit Industries, Unique & fun DIY electronics and kits
Then if you don’t plug in a display, then you can use those pins for something else, like servos for instance.
And you could add a qwiic connector insted of OLED (for something like this: SparkFun Qwiic OLED Display (0.91 in., 128x32))
Having connectors is potentially more versatile as you can switch out the display.
I already have the board to a 2x20 pin cable and so I was planning on connecting the testing station through the cables. I’m actually waiting for the pogo pins. But now that you mention it, I have no trouble soldering some pins to the boards I have and putting the female connectors. Thanks for the idea.
I’ve been thinking that I need to design a new version of this board:
https://fredrik.hubbe.net/lightsaber/v6/test_rig_breakout.html
With quiic and eyespi connectors, and maybe some easy connectors for pixels.
A different question. For the blaster case, can I do this:
//128 x 32 OLED
BlasterDisplayController<128, uint32_t, STRTYPE("oled1/")> display_controller1;
SSD1306Template<128, uint32_t> display1(&display_controller1, 0x3C);
//128 x 64 OLED
StandardDisplayController<128, uint64_t, STRTYPE("oled2/")> display_controller2;
SSD1306Template<128, uint64_t> display2(&display_controller2, 0x7B);
Questions:
- BlasterDisplay enables the blaster specific effects?
- How could I change the resolution on the second display? Replacing
uint32_t
withuint64_t
, right? - The standard I2C address of 128x32 OLEDs is
0x3c
?
i do have the pogo adapter board. But I am designing a 3D printed solution so I only need one board and can easily press the board.
And then I’m planing on using the plane cable straight to the necessary pins. It’s something I’m still desinging.
Yes, and that looks about right.
Answers: