arduino-tm1637 icon indicating copy to clipboard operation
arduino-tm1637 copied to clipboard

Decimal dot

Open silverchair opened this issue 8 years ago • 24 comments

Hello, the library is pretty cool, but is it possible to display decimal dot? Thanks in advance.

silverchair avatar Feb 10 '16 19:02 silverchair

Unfortunately, this is not possible. When sending a character to the display there is only one bit to set the colon (two dots), so there is no way to set only the lower dot of the colon. For more information see: SevenSegmentTM1637.h

// SevenSegmentTM1637 low level methods (use when you know what you're doing) /* Prints raw (encoded) bytes to the display

  •     A
    
  •   ___
    
  • * F | | B
  • X -G-
  • * E | | C
  •   ___
    
  •    D
    
  • Bit: 76543210
  • Segment: XGFEDCBA *
  • For example to print an H, you would set bits BCEFG, this gives B01110110 in binary or 118 in decimal or 0x76 in HEX.
  • Bit 7 (X) only applies to the second digit and sets the colon

Nice, that you like the library!:)

bremme avatar Feb 10 '16 21:02 bremme

hello. this library the best library in the all tm1637. basic and fun! But i dont show "dot"

and i am little known arduino. i using lm35 and tm1637 i want see on the display: " 25.60 "

and later i want see " 25.6° "

please help me! thanks.

edit___and start arduino and "on" blinking? how much off blink ?

yucelll avatar Jul 12 '16 03:07 yucelll

I'm working on a major upgrade for the library which will have better support for the things you mention. I just tested with the Robodyne displays and found out that these displays allow to set the lower and upper dot of the colon separately. The upper colon is set by setting bit 7 of digit 3 and the lower colon is set by setting bit 7 of digit 4. You should be able to set the colon's by using the printRaw function.

To print for example 25.60 on the TM1637 Robodyne display you would use:

byte  rawData[4];
rawData[0] = display.encode('2');
rawData[1] = display.encode('5');
rawData[2] = display.encode('6') ;
rawData[3] = display.encode('0') | B10000000; // set the lower colon, bit 7 on digit 4
display.printRaw(rawData);

To print the degree symbol, you need to set segment A, B, G and F of the last digit. This can be done by:

// same as previous example, only now we set the 4th digit to the degree symbol
rawData[3] = B01100011 | B10000000; // set the lower colon, bit 7 on digit 4
display.printRaw(rawData);

bremme avatar Nov 14 '16 10:11 bremme

I'm using the Robodyn display but it doesn't seem to be able to control the upper and lower colon separately. I'm using one with green 7 segment displays.

This is the code for controlling the colon on mine.

rawData[0] = display.encode('2');
rawData[1] = display.encode('5') | B10000000; // turn on the colon
rawData[2] = display.encode('6') ;
rawData[3] = display.encode('0');
display.printRaw(rawData);

I'm actually most interested in the decimal point on the individual digits can be controlled. Do you think this is possible? The TM1637 should have sufficient pins to do so.

hectorlee avatar Dec 06 '16 10:12 hectorlee

Same here, I bought those sepcific RobotDyn displays because of their decimal dot But after reading more carefully the description on aliexpress, it says the decimal dot is not active...

And i'm also not able to control the upper / lower colon separately :(

julienbrunet avatar Dec 07 '16 22:12 julienbrunet

I believe the decimal dots are not wired to the chip on these RoboDyne displays. I have a red version at my desk and this one can display the upper and lower colon by setting the 7th bit (counting from zero). I noticed that I made a typo in my previous post (B1000000 vs B10000000). I just tested it again and it does work on my display:

img_20161208_014808

This is the code I used:

  byte  rawData;
  display.print("256");
  // display degree symbol on position 3 plus set lower colon
  rawData = B11100011;
  display.printRaw(rawData, 3);

bremme avatar Dec 08 '16 00:12 bremme

I guess there might be a difference in the hardware that RobotDyn makes. I loaded your code and this is what I get.

img_9358

Are you able to control turning on both semi-colon with bit 7 of the second digit? This is the code for turning both parts of the semi-colon.

  display.print("256");
  // display degree symbol on position 3 plus set lower colon
  rawData = B11100011;
  display.printRaw(rawData, 3);

hectorlee avatar Dec 08 '16 14:12 hectorlee

Hi, I moved to this library because it is a much better (and cooler) one. Just how to do a "27.3C"? String temperature = "27.32"; (tho making it a int is no problem) Maybe using a rouding math for the 4th digit of my string? so .32 becomes .3 and .37 becomes .4 ? And using the colon for a dot.

dterweij avatar Jan 18 '17 00:01 dterweij

Got it on my own: int disptemp = 29.09 newTemp makes it 29.1 then times 100 makes 291 set colon on and degree symbol

Hope it helps someone else too.

    float newTemp = disptemp / 10.0; // rounding decimal
    disptemp = newTemp * 100;    
    byte rawData;
    rawData = B01100011;
    display.setColonOn(1);
    display.print(disptemp);
    display.printRaw(rawData,3);

dterweij avatar Jan 18 '17 01:01 dterweij

I also thought that the robotdyne display features decimal points per digit, but unfortunetly it does not:

This is a basic 4-digit 7-segment display module (GREEN). The display features double points in midle. The decimal point per digit not active. Module connecting to digital I/O on 2 pins. For Arduino use library: TM1637.h

http://robotdyn.com/catalog/segment/4_digit_led_display_tube_7_segments/

techi602 avatar Mar 19 '17 16:03 techi602

The new ones do: http://robotdyn.com/4-digit-led-display-tube-7-segments-tm1637-50x19mm.html

Highcooley avatar Mar 25 '18 09:03 Highcooley

Bram (or anyone) - how can you tell which of the TM1637 based 4-digit LED's are enabled for decimal point or colon functionality? I purchased https://www.ebay.com/itm/112674024638?ul_noapp=true thinking it would support both. Looks like it only supports colon mode. I was hoping there would be a way to set the board up in colon or dp mode via software. Does not look good. Thx -yurij

ybaransky avatar Apr 02 '18 19:04 ybaransky

It is written in the name of the product "LED Clock Tube". On more serious pages it is exactly written in the product specification, that a decimal point is not active. It is not necessary to vary a library. The colon is active just for active 7 segment (counting from 0, a.k.a. DP) of the second tube no. 1 (counting from 0). Decimal points of other tubes (digits) do not display even if their DP segment is activated. It is up to you to proper format the displayed data.

mrkale avatar Apr 03 '18 10:04 mrkale

Thx

  1. but the device I purchased https://rover.ebay.com/rover/0/0/0?mpre=https%3A%2F%2Fwww.ebay.com%2Fulk%2Fitm%2F11267 4024638 does not explicitly say one or the other
  2. the image describing the part shows both colon and decimal point enabled
  3. clocks can also be stopwatchs and there tenths and even hundreds of seconds are important
  4. I have seen recently tm1637 parts that offer colon or decimal as a different part. Not software specifiable. So decimal point is possible.
  5. any chance you know of a 4-digit, 7-segment display driver that can light decimal and colon and is inexpensive? Adafruit has such parts at $10 USD each. They use a different chip.

Separately, how did you email me directly? I have no notification on the github site and can't seem to find the emails of people I want to speak with without posting my questions on github

Thx for answering. It does not look promising for the parts I have. -yurij

On Tue, Apr 3, 2018, 6:21 AM Libor Gabaj [email protected] wrote:

It is written in the name of the product "LED Clock Tube". On more serious pages it is exactly written in the product specification, that a decimal point is not active. It is not necessary to vary a library. The colon is active just for active 7 segment (counting from 0, a.k.a. DP) of the second tube no. 1 (counting from 0). Decimal points of other tubes (digits) do not display even if their DP segment is activated. It is up to you to proper format the displayed data.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/bremme/arduino-tm1637/issues/1#issuecomment-378201956, or mute the thread https://github.com/notifications/unsubscribe-auth/AKgoWx520S7kuf4OWpJ11EnMzLP5lTXmks5tk00lgaJpZM4HXlTb .

ybaransky avatar Apr 03 '18 11:04 ybaransky

Hi, friend.

Ad 1) In contrary, it does. The description starts with "This module is a 12 foot with clock display four common anode tube". Ad 2) Yes, the digital tubes on a display have usually technically present decimal point and colon, but only one of them is broken out on the display connector or connect to the TM1637. The best way is to find schema and description of the display by a product number on its side, e.g., http://www.epeslight.com/led-7-segment-display/39514793.html. Ad 3) I would recommend displays with TM1638, which are usually equiped with 8 tubes with decimal points and are chainable. Ad 4) Yes, for instance RoboDyn company offers display modules with TM1637 and either with colon or decimal points clearly distinguished: https://robotdyn.aliexpress.com/store/group/Segment/1950989_504708861.html?spm=2114.12010612.0.0.694950392nSiUO . Ad 5) There are digital tubes display with separate controlled colon dots, decimal dots, eventually the degree dot, e.g. aforementioned display GNS-5643AxBx http://www.epeslight.com/led-7-segment-display/39514793.html. The problem would be a controller, resp. a cheap module with all mentioned dots controlled at once. I would recommend TM1638 or MAX7219 (7221) and to consctruct display module on your own.

I did not email to you directly. I just add my contribution on the GitHub issue page and the portal resent it to your registered address.

Best Regards mrkale

On Tue, Apr 3, 2018 at 1:12 PM, Yurij Baransky [email protected] wrote:

Thx

  1. but the device I purchased https://rover.ebay.com/rover/0/0/0?mpre=https%3A%2F%2Fwww. ebay.com%2Fulk%2Fitm%2F11267 4024638 does not explicitly say one or the other
  2. the image describing the part shows both colon and decimal point enabled
  3. clocks can also be stopwatchs and there tenths and even hundreds of seconds are important
  4. I have seen recently tm1637 parts that offer colon or decimal as a different part. Not software specifiable. So decimal point is possible.
  5. any chance you know of a 4-digit, 7-segment display driver that can light decimal and colon and is inexpensive? Adafruit has such parts at $10 USD each. They use a different chip.

Separately, how did you email me directly? I have no notification on the github site and can't seem to find the emails of people I want to speak with without posting my questions on github

Thx for answering. It does not look promising for the parts I have. -yurij

On Tue, Apr 3, 2018, 6:21 AM Libor Gabaj [email protected] wrote:

It is written in the name of the product "LED Clock Tube". On more serious pages it is exactly written in the product specification, that a decimal point is not active. It is not necessary to vary a library. The colon is active just for active 7 segment (counting from 0, a.k.a. DP) of the second tube no. 1 (counting from 0). Decimal points of other tubes (digits) do not display even if their DP segment is activated. It is up to you to proper format the displayed data.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <https://github.com/bremme/arduino-tm1637/issues/1# issuecomment-378201956>, or mute the thread <https://github.com/notifications/unsubscribe-auth/ AKgoWx520S7kuf4OWpJ11EnMzLP5lTXmks5tk00lgaJpZM4HXlTb> .

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/bremme/arduino-tm1637/issues/1#issuecomment-378213911, or mute the thread https://github.com/notifications/unsubscribe-auth/AFOZP9JIyiAiDyeXgOUBQmw-I9Vxc1xlks5tk1kugaJpZM4HXlTb .

mrkale avatar Apr 03 '18 13:04 mrkale

Very informative, thank you. Though I would still quibble with the term clock.

I hope I can repay the favor. Knowledge is expensive to acquire. -yurij

On Tue, Apr 3, 2018, 9:00 AM Libor Gabaj [email protected] wrote:

Hi, friend.

Ad 1) In contrary, it does. The description starts with "This module is a 12 foot with clock display four common anode tube". Ad 2) Yes, the digital tubes on a display have usually technically present decimal point and colon, but only one of them is broken out on the display connector or connect to the TM1637. The best way is to find schema and description of the display by a product number on its side, e.g., http://www.epeslight.com/led-7-segment-display/39514793.html. Ad 3) I would recommend displays with TM1638, which are usually equiped with 8 tubes with decimal points and are chainable. Ad 4) Yes, for instance RoboDyn company offers display modules with TM1637 and either with colon or decimal points clearly distinguished:

https://robotdyn.aliexpress.com/store/group/Segment/1950989_504708861.html?spm=2114.12010612.0.0.694950392nSiUO . Ad 5) There are digital tubes display with separate controlled colon dots, decimal dots, eventually the degree dot, e.g. aforementioned display GNS-5643AxBx <http://www.epeslight.com/led-7-segment-display/39514793.html

. The problem would be a controller, resp. a cheap module with all mentioned dots controlled at once. I would recommend TM1638 or MAX7219 (7221) and to consctruct display module on your own.

I did not email to you directly. I just add my contribution on the GitHub issue page and the portal resent it to your registered address.

Best Regards mrkale

On Tue, Apr 3, 2018 at 1:12 PM, Yurij Baransky [email protected] wrote:

Thx

  1. but the device I purchased https://rover.ebay.com/rover/0/0/0?mpre=https%3A%2F%2Fwww. ebay.com%2Fulk%2Fitm%2F11267 4024638 does not explicitly say one or the other
  2. the image describing the part shows both colon and decimal point enabled
  3. clocks can also be stopwatchs and there tenths and even hundreds of seconds are important
  4. I have seen recently tm1637 parts that offer colon or decimal as a different part. Not software specifiable. So decimal point is possible.
  5. any chance you know of a 4-digit, 7-segment display driver that can light decimal and colon and is inexpensive? Adafruit has such parts at $10 USD each. They use a different chip.

Separately, how did you email me directly? I have no notification on the github site and can't seem to find the emails of people I want to speak with without posting my questions on github

Thx for answering. It does not look promising for the parts I have. -yurij

On Tue, Apr 3, 2018, 6:21 AM Libor Gabaj [email protected] wrote:

It is written in the name of the product "LED Clock Tube". On more serious pages it is exactly written in the product specification, that a decimal point is not active. It is not necessary to vary a library. The colon is active just for active 7 segment (counting from 0, a.k.a. DP) of the second tube no. 1 (counting from 0). Decimal points of other tubes (digits) do not display even if their DP segment is activated. It is up to you to proper format the displayed data.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <https://github.com/bremme/arduino-tm1637/issues/1# issuecomment-378201956>, or mute the thread <https://github.com/notifications/unsubscribe-auth/ AKgoWx520S7kuf4OWpJ11EnMzLP5lTXmks5tk00lgaJpZM4HXlTb> .

— You are receiving this because you commented. Reply to this email directly, view it on GitHub < https://github.com/bremme/arduino-tm1637/issues/1#issuecomment-378213911>, or mute the thread < https://github.com/notifications/unsubscribe-auth/AFOZP9JIyiAiDyeXgOUBQmw-I9Vxc1xlks5tk1kugaJpZM4HXlTb

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/bremme/arduino-tm1637/issues/1#issuecomment-378241188, or mute the thread https://github.com/notifications/unsubscribe-auth/AKgoW_uBZmT97eIq5E2TB0JgKua_hHOEks5tk3JggaJpZM4HXlTb .

ybaransky avatar Apr 03 '18 15:04 ybaransky

Hi. Any plans on supporting this? https://robotdyn.com/4-digit-led-display-tube-7-segments-tm1637-30x14mm-red-decimal-points.html

gonzabrusco avatar Jul 26 '18 18:07 gonzabrusco

If you get the colon one from robotdy can you just turn on the bottom dot? Will you support the decimals one at some point?

av4625 avatar Jul 29 '18 21:07 av4625

Hi, another person asking if decimals will be supported? If not, is it possible to use the TM1637Display library for decimal numbers (which it supports) and also use your library for the many other cool features!

heatvent avatar Oct 01 '18 03:10 heatvent

Is there possibly a way to force decimals to work with this library. I noticed the following in the sevensegmenttm1637.h file...

#define TM1637_COLON_BIT B10000000

very similar to the TM1637Display.h library for the showNumberDecEx function...

> Dispalyes the given argument as a decimal number. The dots between the digits (or colon)
>   //! can be individually controlled
>   //!
>   //! @param num The number to be shown
>   //! @param dots Dot/Colon enable. The argument is a bitmask, with each bit corresponding to a dot
>   //!        between the digits (or colon mark, as implemented by each module). i.e.
>   //!        For displays with dots between each digit:
>   //!        * 0.000 (0b10000000)
>   //!        * 00.00 (0b01000000)
>   //!        * 000.0 (0b00100000)
>   //!        * 0.0.0.0 (0b11100000)
>   //!        For displays with just a colon:
>   //!        * 00:00 (0b01000000)
>   //!        For displays with dots and colons colon:
>   //!        * 0.0:0.0 (0b11100000)
>   //! @param leading_zero When true, leading zeros are displayed. Otherwise unnecessary digits are
>   //!        blank
>   //! @param length The number of digits to set. The user must ensure that the number to be shown
>   //!        fits to the number of digits requested (for example, if two digits are to be displayed,
>   //!        the number must be between 0 to 99)
>   //! @param pos The position least significant digit (0 - leftmost, 3 - rightmost)
>   void showNumberDecEx(int num, uint8_t dots = 0, bool leading_zero = false, uint8_t length = 4, uint8_t pos = 0);

Sample code from TM1637Test.ino that turns on all the dots in sequence using the TM1637Display.h library...

for(k=0; k <= 4; k++) {
	display.showNumberDecEx(0, (0x80 >> k), true);
	delay(TEST_DELAY);
}

I think the code above is just using B10000000 and moving the 1 over 5 times (not sure why 5).

Using B10000000 as the definition of TM1637_COLON_BIT turns on the middle decimal. Using B01000000 turns on the number 8 on the second digit so I am thinking there is something about which position that needs to be figured out.

I am bit / byte illiterate so I am wondering if there is a way to change the definition of TM1637_COLON_BIT or to send a raw command to control the decimal of choice.

Thank you

heatvent avatar Oct 16 '18 01:10 heatvent

OK, I tracked down the code that controls the colon and basically the logic printraw changes a bit on whatever you are sending to the left of the colon position. I forked the code at https://github.com/heatvent/arduino-tm1637 and added (hacked) some code to control the decimal. Not sure if I have this working correctly and decimals really need some logic depending on if you want to show x number of decimal places, just one of the decimals to light up, have the decimal move with the number being shown (0.01 and 0.001 vs 0.010 and 0.001). If something like this could get integrated into the master that would be great, otherwise this is working for me for now.

heatvent avatar Oct 16 '18 03:10 heatvent

OK, I tracked down the code that controls the colon and basically the logic printraw changes a bit on whatever you are sending to the left of the colon position. I forked the code at https://github.com/heatvent/arduino-tm1637 and added (hacked) some code to control the decimal. Not sure if I have this working correctly and decimals really need some logic depending on if you want to show x number of decimal places, just one of the decimals to light up, have the decimal move with the number being shown (0.01 and 0.001 vs 0.010 and 0.001). If something like this could get integrated into the master that would be great, otherwise this is working for me for now.

DAAAAAMN, man, you made my day. THANKS!!!

volodymyr-sevastianov avatar May 30 '19 08:05 volodymyr-sevastianov

You can find here ? -- https://github.com/avishorp/TM1637

JensGrabner avatar May 30 '19 08:05 JensGrabner

Here is another lib with decimal support https://github.com/jasonacox/TM1637TinyDisplay

nuxeh avatar May 16 '22 09:05 nuxeh