@frittna You da man! Haven't had the time to have a look back here, so my late reply. Works like a dream! I see also the offset with the temp but it doesn't bother me so much. Maybe the offset could be dealed with by manually giving a correction factor at startup?
So thank you very much, I am deeply impressed like only a layman (in coding) can be :-)
Latest posts made by Albman
-
RE: Bitcoin / Multi Crypto Coin Ticker with 24 candlesticks chart
-
RE: Bitcoin / Multi Crypto Coin Ticker with 24 candlesticks chart
Hi, the M5Stack stand https://shop.m5stack.com/products/btc-standing-base?variant=16804779229274 has an DHT12 sensor for temperature and humidity integrated. I woud like to integrate this output in my BTC ticker. Any hints how to do this? Or where to start? I have not much experience with M5Stack or programming at all...
-
RE: Bitcoin / Multi Crypto Coin Ticker with 24 candlesticks chart
Hi,
I figured it out by myself (so proud ;-) ) how to have BTC/€ displayed:byte pairs = 2; // default: 8, total numbers of currency pairs, max 255
String pair_name[] = {"BTC/EUR", " BTC/$", }; //name for TopPanel (6-8 letters)
String pair_STRING[] = {"BTCEUR", "BTCUSDT", }; //name for url in BIG LETTERS
String pair_string[] = {"btceur", "btcusdt", }; //name for url in small letters
uint32_t pair_color[] = {TFT_ORANGE, TFT_PINK, }; //color in uint32_t formatGreetings Timo
-
RE: Bitcoin / Multi Crypto Coin Ticker with 24 candlesticks chart
Hi
thanks for setting this great project up! I got it running and I love it. I was looking quite some time for exactly this thing.One question, when I would have the pair BTC EURO, how would I set that up in the code? Thanks! Timo