狠狠撸
Submit Search
滨辞罢て?组织内て?の作业効率を上け?る方法
?
0 likes
?
2,645 views
Hironobu Yamada
Follow
IoT縛りの勉強会! IoTLT vol.8 (2015/10/15)の発表資料です。
Read less
Read more
1 of 28
Download now
More Related Content
滨辞罢て?组织内て?の作业効率を上け?る方法
1.
IoTで 組織内での作業効率を上げる方法
2.
自己紹介 ? PHPのエンジニア ? お酒大好き ?
糖質制限ダイエットで10キロ痩せました ? Twitter:@yamacho1111 株式会社イノベーター?ジャパン 山田 寛延(やまだ ひろのぶ)
3.
23分15秒
4.
23分15秒 一度中断した作業に? 戻るときの平均時間 ※ビジネス誌『Fast Company』が紹介した研究
5.
完全にコミュニケーションを 断つのは現実的ではない 自分の状態を 組織で共有することが大切
6.
https://iruca.co iruca(合同会社テンマド)
8.
しかし、実际は
9.
ではどうするか?
10.
PHILIPS hue
11.
Raspberry Pi
12.
社内LAN ステータス取得 hueの色を変更
13.
ソースコード <?php //モジュール読み込み require_once __DIR__ .
'/vendor/autoload.php'; //iruca設定 $room_code = "09b3cb39-01b0-4669-a725-43fa88aaeXXX"; $member_id = "268"; $iruca_url = “https://iruca.co/api/rooms/" .$room_code."/members/".$member_id; //hue設定 $hueHost = "192.168.150.34"; $hueUsername = "newdeveloper";
14.
ソースコード //irucaステータス取得 $curl = curl_init(); curl_setopt($curl,
CURLOPT_URL, $iruca_url); curl_setopt($curl, CURLOPT_CUSTOMREQUEST, 'GET'); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $response = curl_exec($curl); $result = json_decode($response, true); curl_close($curl); //hue事前準備 $client = new PhueClient($hueHost, $hueUsername); $light = $client->getLights()[3]; $status = false; $brightness = 0; $saturation = 0; $hue = 0; $effect = "none"; $alert = "none";
15.
ソースコード //ステータスに応じて色を変える if ($result['status'] ==
"在席") { $status = true; $hue = 25500; //緑色 $saturation = 255; $brightness = 50; } elseif ($result['status'] == "取込中") { $status = true; $hue = 65535; //赤色 $saturation = 255; $brightness = 50; } elseif ($result['status'] == "離席") { $status = true; $hue = 15000; //オレンジ色 $saturation = 255; $brightness = 50; }
16.
ソースコード //色の変更を実行 if ($status) { $light->setOn(true); $client->sendCommand( (new
PhueCommandSetLightState($light)) ->brightness($brightness) ->hue($hue) ->saturation($saturation) ->effect($effect) ->alert($alert) ); } else { $light->setOn(false); }
18.
Before
19.
After
20.
Before
21.
After
22.
Before
23.
After
24.
After
25.
Before
26.
After
27.
IoTで 組織内での作業効率を上げる方法
28.
ご静聴 ありがとうございました
Download