@FUZNUTS send me a link to a nice 3d model for an ethernet gateway the other day.
You can find it together with instructions here:
http://www.thingiverse.com/thing:626368
I'll add it to the homepage also.
Just wondering if the gateway inclusion push-button needs an external pull-up resistor. I looked at the code (older code 1.3 something) and didn't see internal pull-ups enabled, yet in the instructions it does not mention to hook up an external pull-up resistor. Please advise...I have designed a gateway PCB with an external pull-up because I didn't see internal pull-ups enabled in the code.
Not very nice but I think this will work..
//float temperature = dht.getTemperature();
float temperature = dht.getTemperature()*9/5 + 32;
if (isnan(temperature)) {
Serial.println("Failed reading temperature from DHT");
} else if (temperature != lastTemp) {
lastTemp = temperature;
if (!metric) {
temperature = dht.getTemperature()*9/5 + 32; //dht.toFahrenheit(temperature);
}
@hek said:
I still have problems jumping to the last read post. Maybe time to clear browser cache (and local storage which the forum seems to utilize) to see if that corrects the problems for me.
Upgrade/clear cache seems to have improved jumping for me.