Top > 日記 > 2011-08-24

温湿度計

th01php.JPG

デスクトップ右隅に表示(自動アップデート)させたところ。

  1. 表示までのフロー
    温度湿度データ→シリアル通信→PC(Win7)→samba(このホスト)→PHPのfile()使用
    <html>
    <head>
    <meta http-equiv="refresh" content="20">
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>Temp&Hum Now</title>
    </head>
    <body>
    <?
    print "<b>今の温度と湿度</b><br>";
    $dt = new DateTime();
    // Asia/Tokyo
    print $dt->setTimeZone(new DateTimeZone('Asia/Tokyo'))    ->format('Y-m-d H:i') . " (JST)<br>";
    $lines = file('/home/share/rcv1.txt');
    print "温度:<b>".substr($lines[0],0,2)."</b>&nbsp;℃<br>";
    print "湿度:<b>".substr($lines[0],3,2)."</b>&nbsp;%<br>";
    // Europe/Berlin
    print $dt->setTimeZone(new DateTimeZone('Europe/Berlin')) ->format('Y-m-d H:i') . " Berlin<br>";
    ?>
    </body>
    </html>

URL B I U SIZE Black Maroon Green Olive Navy Purple Teal Gray Silver Red Lime Yellow Blue Fuchsia Aqua White


Attach file: fileth01php.JPG 635 download [Information]

Reload   New Lower page making Unfreeze Diff Copy Rename   Front page List of pages Search Recent changes Backup Referer   Help   RSS of recent changes
Last-modified: Wed, 24 Aug 2011 01:03:53 HADT (5007d)