-->
Page 1 of 1

Refresh clients access point

PostPosted: Tue Jan 31, 2017 1:20 pm
by jfh900
Hello everyone

I have a project that consists of reading several temperature sensors using an ESP8266 E12. The device is configured as Access Point and one, two or more clients (PC, tablets, Androids, etc) can connect via WIFI. I can read through a page the value of the sensors. The problem is how can I refresh the reading of the sensors on the client devices?

Thanks and best regards

Re: Refresh clients access point

PostPosted: Wed Feb 01, 2017 2:06 am
by eduperez
Easiest solution is probably to use a "refresh" meta-tag in your HTML code:
Code: Select all<meta http-equiv="refresh" content="30">

Re: Refresh clients access point

PostPosted: Wed Feb 01, 2017 3:41 am
by jfh900
Thank you very much for the reply. I'll try it.