A quick (I hope) question about the colour gradient.
I have a Temperature display (and yes, it is with 4 decimal places on purpose ) and If I understand the DOCs, I have it set correctly, but the colour stays basic green despite the value nearing the top range.
Am I missing a step?
PS, I have toggled the squiggly thing in between the ranges, but whatever that does , didn’t make a difference.
@Dmitriy I have tried with another display (HALL sensor) that is a basic integer (no decimals, if my terminology is correct) and the gradient works great… so the issue appears to be with er… fractional? numbers (the ones with the dot and a lot of stragglers )
OK, I give up… it has to be a gremlin at my end. Every other display I have tried works perfectly, granted they are just getting simple pin values, but my calculated (thermistor -> formula -> display) combo is just going to have to remain “strange”.
Because I am tenacious (aka, pain in the ), I tested a Labeled Value Display; This time it starts RED and stays there, even after my frozen burrito test brought it down to 8.7 C. Hope this data helps, or do you need the code that generates the value as well?
(So much for short & sweet… I should have opened a separate topic, sorry) OK, since using the Labeled Display, as I could easily reduce the accuracy displayed, I tested with /pin/ /pin.####/ /pin.###/… etc. Gradient only registered after reducing to ```/pin./``
My data is sent from this code (there is much math that calculates the Thermistor() part, but I don’t think that any of the code is a factor):
void thermTemp()
{
float temp;
temp = Thermistor(analogRead(ThermistorPIN)); // Read ADC and convert it to Celsius.
Blynk.virtualWrite(V11, temp); // Send temp value in Celsius.
}
is RTC now working on multiple device in one project?
I just try it in multiple device environment but unfortunately the device is not sync with RTC?
Since now is not using PIN, can we get rid the BLYNK_ATTACH_WIDGET(rtc, V127); command now?
I already try both option (with and without BLYNK_ATTACH) but has no luck…
Ok, Ill take the bait. I love all the new features that are being released for Android. Is Apple the hold up on iOS end? If that is the case, why? Great work by the Blynk team as usual. But seriously, it really is starting to look like it makes sense to switch to Android.
@Dmitriy Thanks, I understand and am not complaining about Blynk. It just seems as though there are a lot more hurdles to clear with iOS which makes Android more appealing. From the outside, it looks as though Apple holds up the progress!