Formato de datos |
INICIO Temperatura,14.0 Humedad,32 #presion,923 #Temperatura,26.1 FINAL |
nombreFichero="Temp20"+time.strftime("%y_%m_%d")+".csv" f = open(nombreFichero,'a') f.write(time.strftime("%H,%M")) f.write(',') f.write(dTemperatura+','+dHumedad+','+dPresion+','+'\n') f.close() |
Formato del fichero de
datos metereológicos |
00,00,21.6,25,924, 00,01,21.6,25,924, 00,02,21.6,25,924, 00,03,21.6,25,924, 00,04,21.5,25,924, |
print "Crear pagina" fw = open('index.html','w') mensajeWeb = """ <html> <head> <meta http-equiv="refresh" content="115"> <title>PALENCIA</title> </head> <body bgcolor="#ffff99"> <h2>Palencia, Spain <hr size="2" width="100%"> <img alt="" src="web.jpg" height="480" width="640"><br> <hr size="2" width="100%"> """ mensajeWeb = mensajeWeb + time.strftime("%d/%m/%y") +" "+ time.strftime("%H:%M:%S") mensajeWeb = mensajeWeb + """<br>""" mensajeWeb = mensajeWeb + mensaje mensajeWeb = mensajeWeb + """ <h2><a href="gradia.html">GRAFICOS</a><br> <img alt="" src="mapa.png" > </h2> </body> </html>""" fw.write(mensajeWeb) fw.close() |
app_python.sh |
#!/bin/bash cd /home/seta/www/webcam xterm -e "python camtem4.py" |