* Disclaimer: OveReview is reader-supported. We earn commissions from qualifying purchases
HiLetgo 2pcs 0.36 HiLetgo 2pcs 0.36 HiLetgo 2pcs 0.36 HiLetgo 2pcs 0.36 HiLetgo 2pcs 0.36 HiLetgo 2pcs 0.36

HiLetgo 2pcs 0.36" 4-Digit Tube LED Segment Display Module Red Common Anode TM1637 Drive Chip Tube Clock Display for Arduino UNO R3

HiLetgo 2pcs 0.36 HiLetgo 2pcs 0.36 HiLetgo 2pcs 0.36 HiLetgo 2pcs 0.36 HiLetgo 2pcs 0.36 HiLetgo 2pcs 0.36
$ 5.49

Score By Feature

Based on 157 ratings
Brightness
9.88
Value for money
9.08

OveReview Final Score

How Our Score Is Calculated

Product Description

By entering your model number, you can make sure that this fits.
For simple installation, there are four M2 screw holes.
4-digit LED display module with clock point and adjustable LED brightness.
A total of four red LED word tubes make up the display device. 8 grayscale-adjustable digital tubes
The driver IC is the TM1637, and the MCU can control four Digit 8-segment LEDs with only two signal lines. It can be used to show decimal, letters, and other data.
GND is ground, VCC is the power supply, DIO is the data input and output pins, and CLK is the clock signal pin. Control interface: total of four pins (GND, VCC, DIO, CLK), GND is ground, VCC is the power supply, DIO is the data input and output pins, and CLK is the clock signal pin.

Questions & Answers

Is it possible to get a Raspberry Pi version of this?

This makes use of digital pins, which are also available for the Raspberry Pi.

Will this work in place of my 3641BS, which I'm not sure if it's a common anode or a common cathode. ?

That's an excellent query. The driver is included, so it shouldn't be a problem. All you have to do now is connect the pins on the CPU.

I'm trying to make a pinewood derby track timer with four of these, and I'm wondering if you can connect more than one of these to an Arduino. ?

They only require two pins (DIO/CLK) to function, and since these are digital pins, UNO will have them. However, I'm not sure how you'd go about sending data to a display that isn't connected to the computer. Taking a look at the following document: https: //This is the playground. You might be able to address it at arduino. cc/Main/TM1637/. "define CLK 2 define DIO 3" is shown in the example, followed by TM1637Display display(CLK,DIO); So try TM1637n display(CLKn,DIOn); "define CLKn 2 define DIOn 3"

Selected User Reviews For HiLetgo 2pcs 0.36" 4-Digit Tube LED Segment Display Module Red Common Anode TM1637 Drive Chip Tube Clock Display for Arduino UNO R3

OK, but not ideal for any Arduino sketch that requires a lot of processing power
4/5

These 7- Although segment displays perform as expected and are reasonably priced, anyone using one for a complex Arduino application should be aware that the TM1637 driver IC is a processor hog. This is not a serial interface in the traditional sense. It's nearly as slow as a digital execution. Each segment pin should have a function written to it. Look for a real I2C interface, like one that incorporates the HT16K33 IC, if you have a sketch that needs to run quickly without being slowed down by intensive digital writing to segment pins.

Marcel Kerr
Marcel Kerr
| Jul 20, 2021
S L O W, S L O W, S L O W, S L O W, S L O W, S L O W Update: Under the hood, the SoftwareSerial library is interrupt driven, which causes 1637 updates to stutter, resulting in long delays when doing 1637 writes
5/5

This only occurs if serial data is being received at the time the 1637 write is being performed. Put a port. end() before your 1637 writes and a port. begin() after them to avoid this problem. At least for me, serial gps data arriving at 9600 baud is unaffected. I only use GPRMC messages and discard everything else, so some of them may be affected, but I don't notice anything, except that all of my 1637 writes are now taking 16–20ms. Original review: br>br> br>br>Writing to the 1637 part on a nano takes about 75ms per digit, which is S L O W. They're fine for clocks, but not for anything that requires a lot of attention. br>br>These are used in all of my temporary projects, such as the gps test clock, portable lux meter, square wave clock generator, rf24 transmitter and receiver test fixtures, and so on. the- However, they are a quarter of the price of Adafruit units and allow for room viewing.

Caden NORTH
Caden NORTH
| May 08, 2021
It's simple to use and read, but it's only meant to be used as a timepiece
4/5

I ordered two of these four-digit LED modules for my RV to show battery voltage and current. They're simple to program using the Arduino IDE and a microcontroller, and they look fantastic. They are, however, designed to show time with a colon between the digits and no decimal points. Great display modules, but be aware that they are only for time (or integers) and will not display decimal values. Very easy to use with the AM1637 library on github.

Lyra Walters
Lyra Walters
| Mar 15, 2021
For the money, this is an excellent display!   At first, I was hesitant to use this display because the datasheet was a poor translation of Chinese to English
5/5

However, after reviewing the datasheet and experimenting with a few things, I was able to get the display to work flawlessly. I can control each individual digit, as well as the colon in the middle, with pinpoint accuracy. The colon represents segment 2's 'decimal point. ' I bought six of these because I know I'll use them at some point and they're great. I decided to build the controller on an MSP430 microcontroller.

Marina Pham
Marina Pham
| Feb 11, 2021
7" x 7" x 7" x 7" x 7" x 7 LED display with segments Two of the four digit 7-digit numbers were given to me
5/5

LED displays in segments I was able to test out the displays by searching the internet for sites that provided a code example. Both units functioned as they were supposed to. These displays are sufficiently large and clear to meet my requirements. As an aside: These units can be driven with any two pins and do not use addressing like regular I2C - As a result, each unit requires its own two pins, so if you have any other I2C devices to drive, you shouldn't use A4/A5 for these units.

Kailey Wheeler
Kailey Wheeler
| Mar 22, 2021
Displays of clocks that are cool
5/5

Displays that are really cool. On 5 volts, the lamp is bright. In less than 10 minutes, I had one running a test program on an Arduino Pro Micro. I'm going to use one to make a custom alarm clock because most clocks either don't wake me up at all or wake me up with a start. I really like how you can dim the light.

Lochlan Mendoza
Lochlan Mendoza
| Nov 04, 2021
With a large number of Python libraries available, it works as expected on the Raspberry Pi
5/5

It's been used on two Raspberry Pi projects so far. The first was a Raspberry Pi 2, and the second was a Raspberry Pi Zero. I used it as a scrolling display on a MIDI keyboard for one, and it simply displayed temperature and humidity data for the other. In both cases, I drove it with the Adafruit Python libraries. On the Raspberry Pi, there are a plethora of Python libraries for 7-segment displays. br>br>The displays are bright and function properly. What more could a person ask for?.

Malayah Hopkins
Malayah Hopkins
| Jan 19, 2021
It's great that there are only four leads required
5/5

It's great that there are only four leads required. In the tunable Morse Code keyer, I used the display to show the words per minute. I only needed to show two digits, but there was no such device available. To contain a breadboard Arduino Uno controller with a rotary encoder, I used a Yosoo 100x60x25mm Plastic Cover Project Electronic Enclosure Instrument Case from Yosoo. The HiLetgo was the perfect size for this space. I made the display flush with the container's exterior. Makes for a nice-looking unit. br>br>.

Albert Reyes
Albert Reyes
| Jun 05, 2021

Related Products For HiLetgo 2pcs 0.36" 4-Digit Tube LED Segment Display Module Red Common Anode TM1637 Drive Chip Tube Clock Display for Arduino UNO R3