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]

새로고침   새페이지 Lower page making 잠금해제 비교 복사 이름변경   대문 목록 검색 갱신내역 백업 리퍼러   도움말   갱신내역의 RSS
Last-modified: Wed, 24 Aug 2011 19:03:53 KST (5007d)