4 Digits Segment LCD Display, uA Low Power [Version]
Price range: $1.80 through $3.20
- Description
- Additional information
- Reviews (1)
- Enquiry2
Description
- Get a more smooth look instead of segment LCD, also cheap price to have.
- Easily implement and directly by MCU IOs, 74HC595 or HT1621B, etc (First four COM pins, and the rest each segment)
- 30.0*15.0/12.5*2.8mm
- Do not support backlight
- Middle clock format ” : “, all digit has dot ” . “
- Very low pwoer comsuption, either bare LCD or PCB version is about 50-150uA.
Purchase Version:
- R1 – 2pcs bare LCD
- R2 – 1pcs HT1621 backside PCB LCD.
Notice:
- The bare LCD can NOT be drived by normal MCU IOs directly! Pins will be turned Please use HT1621 driver R2 version.
- Please try PIC16 series, or STM8L series MCUs.
Specification and IOs see on this page. HT1621 demo code for STM8 see here (for purchased user).
Additional information
| Weight | N/A |
|---|---|
| Versions | R1, R2 |





![4 Digits Segment LCD Display, uA Low Power [Version] - Image 1](https://www.electrodragon.com/wp-content/uploads/2017/01/Segment-LCD-03-560x560.jpg)
![4 Digits Segment LCD Display, uA Low Power [Version] - Image 2](https://www.electrodragon.com/wp-content/uploads/2017/01/Segment-LCD-02-400x400.jpg)
![4 Digits Segment LCD Display, uA Low Power [Version] - Image 4](https://www.electrodragon.com/wp-content/uploads/2017/01/Segment-LCD-01-400x400.jpg)
![4 Digits Segment LCD Display, uA Low Power [Version] - Image 5](https://www.electrodragon.com/wp-content/uploads/2017/01/2PCs-Segment-LCD-4-Digit-Display-uA-Low-Power-01-400x400.jpg)
![4 Digits Segment LCD Display, uA Low Power [Version] - Image 6](https://www.electrodragon.com/wp-content/uploads/2017/01/2PCs-Segment-LCD-4-Digit-Display-uA-Low-Power-02-400x400.jpg)



![Quectecl L86 GNSS External Antenna Module[Type]](https://www.electrodragon.com/wp-content/uploads/2019/04/Quectecl-GNSS-GPS-Module-Type-01-560x560.jpg)

![3PCs 7 Segment LED Display [Specs]](https://www.electrodragon.com/wp-content/uploads/2011/12/33-400x400.jpg)







matt (verified owner) –
Nice display, small size is an advantage for my project.
Arduino: I had to adjust the bitmask (also for the decimal separator) in the standard Arduino library for the HT1621B
_buffer[i] |= 0xeb;
break;
case ‘1’:
_buffer[i] |= 0x0a;
break;
case ‘2’:
_buffer[i] |= 0xad;
break;
case ‘3’:
_buffer[i] |= 0x8f;
break;
case ‘4’:
_buffer[i] |= 0x4e;
break;
case ‘5’:
_buffer[i] |= 0xc7;
break;
case ‘6’:
_buffer[i] |= 0xe7;
break;
case ‘7’:
_buffer[i] |= 0x8a;
break;
case ‘8’:
_buffer[i] |= 0xef;
break;
case ‘9’:
_buffer[i] |= 0xcf;
break;
case ‘-‘:
_buffer[i] |= 0x02;