Hi everyone, I'm trying for some days to run the Bridge sketch and temperaturewebpanel but I can't figure out what I'm doing wrong. Well I explain: all Yún bridge examples worked for me apart from these.
Looked for post with my problem and opened port 5555 & 5353 , I don't have anti virus or firewall activated & I can access via wifi to control panel. But when i go to "http://arduino.local/sd/TemperatureWebPanel" well in my case I use the ip route(but read that t'here's no problem with that), it only shows me the content of the SD folder, here's the code I only can see a poor 0:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="zepto.min.js"></script>
<script type="text/javascript">
function refresh() {
$('#content').load('/arduino/temperature');
}
</script>
</head>
<body onload="setInterval(refresh, 2000);">
<span id="content">0</span>
</body>
</html>
I think that it can be a trouble in YunClient.h or YunServer.h cause arduino code doesn't enter in the "YunClient client = server.accept();" and the next "if(client)" conditional. It's like there's no client connecting. In the Bridge sketch its similar i cant see feedback from Yun and the REST didn't worked too. Only good think it's that browser don't send me onto not found page.... so Yun is there some way.
I really didn't know what to do now. Some help would be really appreciate. Thanks!