would this 7 segment display work?

A
Ayskura posted Jun 5 '17, 09:42:
A
ayskura posted Jun 5 '17, 19:12:

sorry about double posting it doesn't give confirmation on firefox and seem like it's not going! anyone have an answer about this please?

E
erikr posted Jun 9 '17, 06:15:

It won't work out of the box, but it might be possible to modify the SamplerBox python code to get it to workj.

Here are the technical problems to solve:

  1. The SamplerBox code uses I2C to communicate with the Sparkfun display but that is not supported by the TM1637 chip. There are RPi libraries written to talk to the chip via GPIO bit-banging (just google "TM1637 raspberry pi"), but bit-banging is very inefficient - especially if it is done in python. Moreover, bit-banging requires that you dedicate two GPIO pins just for the display.

  2. After you figure out how you want to interface the module you would have to modify the samplerbox.py script starting at around line 405:

https://github.com/josephernest/SamplerBox/blob/453bbee1f4b3f7d0dc2533e4a3f498bced57d52f/samplerbox.py#L405

This is where you would put the code to talk to the TM1637.

I would look for another I2C display, e.g. something like:

For more info on how I2C works, see:

https://github.com/sparkfun/Serial7SegmentDisplay/wiki/Interface%20Specifications

E
erikr posted Jun 9 '17, 06:26:

Maybe you should get this LCD display instead:

http://www.ebay.com/itm/New-Blue-IIC-I2C-TWI-1602-16x2-Serial-LCD-Module-Display-for-Arduino-zd/282486859701?_trksid=p2047675.c100005.m1851&_trkparms=aid%3D555018%26algo%3DPL.SIM%26ao%3D2%26asc%3D41375%26meid%3Dae6deab5d1824d9880c7057c7d063500%26pid%3D100005%26rk%3D2%26rkt%3D6%26sd%3D391640675709

The picture shows the I2C adapter soldered onto the back of the display which you will need to use I2C with the module.

(The other listing says the module supports I2C, but doesn't show the adapter.)

A
Ayskura posted Jun 10 '17, 14:57:

thank you erikr I did get them and waiting, but I understood I did a mistake... I got one of these blue display with I2C which you suggested, thank you.
Will this work directly with the samplerbox Image I downloaded from here or do I need to use the one from Samplerbox2?

thank you

E
erikr posted Jun 10 '17, 20:25:

It won't work directly - you have to modify the Python script around line 405 as I indicated above.

The differences are:

  • the LED display has I2C address 0x71. Replace that with the I2C address of your display.
  • the I2C commands to control the display will be different. For the LED display you send the bytes '\x76\x79\x00' + ... You'll have to figure out which bytes to send to your display.
A
Ayskura posted Jun 12 '17, 03:25:

where can I learn how to do it?

the LED display has I2C address 0x71. Replace that with the I2C address of your display.

---> where can I find this?

the I2C commands to control the display will be different. For the LED display you send the bytes '\x76\x79\x00' + ... You'll have to figure out which bytes to send to your display.

---> how can I figure it out?

thank you

A
Ayskura posted Jun 12 '17, 17:32:

Sorry erikr I meant would the display you told me to get (with I2C adapter) work directly? this is what I meant.

the Blue Display you said, I bought it. do I need to modify anything to make it work?

A
ayskura posted Jun 20 '17, 01:05:

OK i need a bit of help here: I got the blue display delivered and it has the I2C adapter soldered in place. I plugged the 4 cables Ground / VCC /SDA /SCL as from samplerbox but it doesn't work (it switches on the led on the back but no signal in the screen). I saw on samplerbox 2 how to plug it without the I2C board which seem straight forward and should work directly but I am not too sure of dissoldering the I2C and before I get another one of these monitors without the board I wanted to ask if there is a way to make it work with I2C or it's better I solder 12 cables and use the samplerbox2 image... anyone can help? thank you

A
Ayskura posted Aug 26 '17, 05:19:

OK I managed to make the 16x2 work with I2C! Thank you Erikr you gave me a very good advice

J
Jason posted Aug 10 '19, 14:02:

Hello!
I use oled display ssd1306 128x32
Address 0x3C
What bytes to send instead of '\ x76 \ x79 \ x00' +?
How to find out?

...

  (not published)
  I want to post as guest
 

Post