Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tm.temperature scroll for negative and > 99 values #8

Closed
thijstriemstra opened this issue Aug 1, 2018 · 5 comments
Closed

tm.temperature scroll for negative and > 99 values #8

thijstriemstra opened this issue Aug 1, 2018 · 5 comments

Comments

@thijstriemstra
Copy link
Contributor

thijstriemstra commented Aug 1, 2018

A DS18B20 measures temperatures from -55°C to +125°C. With tm.temperature(101) as well as tm.temperature(-10) it shows garbled text. Is it possible to simply scroll for values over > 99 or < -9? Also see https://github.com/mcauser/micropython-tm1637/blob/master/tm1637_test.py#L209

I can create a PR if you like the idea.

@thijstriemstra
Copy link
Contributor Author

img_20180801_024155

@thijstriemstra thijstriemstra changed the title tm.temperature garbled tm.temperature garbled for negative and > 99 values Aug 1, 2018
@mcauser
Copy link
Owner

mcauser commented Aug 1, 2018

I added the temperature() method which shows a "degrees C" on the last 2 segments.
This means it's possible range is -9 to +99.

To show something when outside this range, I added "HI" for High and "LO" for Low.
eg.

tm.temperature(-10) # LO*C
tm.temperature(-9)  # -9*C
tm.temperature(5)   #  5*C
tm.temperature(24)  # 24*C
tm.temperature(99)  # 99*C
tm.temperature(100) # HI*C

Another way of writing tm.temperature(24) is tm.show('24*C').

To support a wider range of temperatures / numbers, you could stringify your number and call scroll() instead of show(), with '*C' as the last 2 characters in your string if you want to represent it as a temperature. The star '*' symbol is displayed as a degrees symbol, the top 4 LED segments.

@thijstriemstra thijstriemstra changed the title tm.temperature garbled for negative and > 99 values tm.temperature scroll for negative and > 99 values Aug 1, 2018
@thijstriemstra
Copy link
Contributor Author

thijstriemstra commented Aug 1, 2018

Ah I see, it says LO/HI! Sorry for calling it garbled text ;) YOLO. I will try to come up with a scrolling version, at least for my own project, and let you know how it goes.

@mcauser
Copy link
Owner

mcauser commented Aug 1, 2018

Sounds like this is what you're after:

def ds18b20(self, temp, delay=250):
	self.scroll('{:.0f}*C'.format(temp), delay)

@thijstriemstra
Copy link
Contributor Author

thijstriemstra commented Aug 1, 2018

@mcauser that's beautiful! having that as the default behaviour for temperature for those 'edge cases' would be a nice enhancement.

@mcauser mcauser closed this as completed Aug 22, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants