void handleRoot(void){
int cnt = 0;
char* data1;
char* data2;
cnt++;
Serial.print(cnt);
Serial.print(" ");
readData();
data1 = TTT;
data2 = HHH;
Serial.print(tempera);
Serial.println("handleRoot()");
String message ="<!DOCTYPE html> \n<html lang=\"ja\">";
temp +="<head>";
temp +="<meta charset=\"utf-8\">";
temp +="<title>ESP-f test Sending</title>";
temp +="<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">";
temp +="<style>";
temp +=".container{";
temp +=" max-width: 600px;";
temp +=" margin: auto;";
temp +=" text-align: center;";
temp +=" font-size: 1.2rem;";
temp +=" background-color: #ffeeaa;";
temp +="}";
temp +=".span,.pm{";
temp +=" display: inline-block;";
temp +=" border: 1px solid #ccc;";
temp +=" width: 59px;";
temp +=" height: 30px;";
temp +=" vertical-align: middle;";
temp +=" margin-bottom: 20px;";
temp +="}";
temp +=".span{";
temp +=" width:120px;";
temp +="}";
temp +="</style>";
temp +="</head>";
temp +="<body>";
temp +="<div class=\"container\">";
temp +="<h2>温・湿度(by ESP-f)</h2>";
temp +="<h3>温度: "+ String(data1) +"℃</h3>";
temp +="<h3>湿度: "+ String(data2) +"%</h3>";
temp +="<h3>アクセス回数 "+ String(cnt) +"</h3>";
temp +="</div>";
temp +="</body>";
temp +="</html>";
Server.send(200, "text/html", message);
writeCommand(0x02);
for(int i = 0; i < 16; i++){writeData(tempera[i]);}
}