編集履歴一覧に戻る
myaonのアイコン画像

myaon が 2021年04月27日19時54分18秒 に編集

コメント無し

本文の変更

リモート生活がはかどる中、大事な会議や面接もオンラインで行われます。 そんなときに家のチャイムが鳴ったら「察してくれ...」ってなりますよね(^▽^;) 今回は鳴らす前に状況を来訪者に伝えるシステムを構築しました。 # デモ動画 @[youtube](https://youtu.be/Th1MKAP0RUMhttps://youtu.be/Th1MKAP0RUM) # 使い方 1. アプリを起動して待機。 1. 来訪者にobnizのスイッチを押してもらいGAS経由で自分にLINE通知。 1. 通知が来たらアプリのブラウザ画面を開き、「今行きます!」「会議中なので出られません」といった返信をobnizに返せる。 # 部品および接続・設置図 作成に使用したパーツは下記となります。 | 品目 | 価格 | |:---:|:---| | [obniz Board 1Y](https://akizukidenshi.com/catalog/g/gM-14930/) | 6930 | | モバイルバッテリー | - | | Type-C ケーブル | - |

-

![キャプションを入力できます](https://camo.elchika.com/b113ebeab5e5573b47ab4e7d0037a11e4a3e8cde/687474703a2f2f73746f726167652e676f6f676c65617069732e636f6d2f656c6368696b612f76312f757365722f64656631306632662d356164392d343539322d613131332d6332353130373234613762322f34356434313061662d376565632d343738622d386432322d316431323561616632656539/)

+

![キャプションを入力できます](https://camo.elchika.com/e9c53c7cf6b0ca2c9c602c9c7e7443fe58015893/687474703a2f2f73746f726167652e676f6f676c65617069732e636f6d2f656c6368696b612f76312f757365722f64656631306632662d356164392d343539322d613131332d6332353130373234613762322f37393662333764392d363831342d343665342d626636642d323536386334386165623762/)

# ソースコード LINE通知の仕方は迷いましたが、GASで作ることにしました。 Googleドライブから新規>GoogleAppsScriptsを作成し、以下のプログラムを記入、デプロイします。 トークンは[こちら](http://sgnotify-bot.line.me/my/)から作成できます。 ```js:only-line-push.json function line_notify(message) { url = "https://notify-api.line.me/api/notify"; token = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; data = { "message": message }; options = { "method": "post", "contentType": "application/x-www-form-urlencoded", "headers": { "Authorization": "Bearer " + token }, "payload": data }; UrlFetchApp.fetch(url, options); } function doGet() { message = "お届け物です!返信してね!\nhttps://obniz.com/webapp/XXXXXXXXXXXXXXXXXX"; line_notify(message); } ``` ![デプロイ設定](https://camo.elchika.com/25fd0d6fa3a9c2d16c9d2bb22627db08e718fac5/687474703a2f2f73746f726167652e676f6f676c65617069732e636f6d2f656c6368696b612f76312f757365722f64656631306632662d356164392d343539322d613131332d6332353130373234613762322f66323464663330342d333537302d346134302d616561662d383136343032353731356365/) デプロイが完了すると実行urlがコピーできるようになるので、それを以下のサンプルベースのプログラム内のWebRequestのところにペーストすればOKです。 ![元のサンプル](https://camo.elchika.com/ee0e538ada4df0f6ed0e7c0f25f8c4af79967d45/687474703a2f2f73746f726167652e676f6f676c65617069732e636f6d2f656c6368696b612f76312f757365722f64656631306632662d356164392d343539322d613131332d6332353130373234613762322f62636362633935362d353465312d346264652d623732382d366431363864636666376361/) ```html:obline.html <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" /> <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script> <script src="https://unpkg.com/obniz@3.x/obniz.js" crossorigin="anonymous" ></script> </head> <body> <div id="obniz-debug"></div> <div class="container"> <div class="text-center"> <h3>Print Text on obniz</h3> <input type="text" id="text" value="今行きます!" /> <button class="btn btn-primary" id="showtime">Print on obniz</button> </div> </div> <script> //put your obniz ID var obniz = new Obniz("OBNIZ_ID_HERE"); //during obniz connection obniz.onconnect = async function() { //init switch state on obniz $("#print").text(await obniz.switch.getWait()); obniz.display.clear(); obniz.display.print("チャイムを鳴らす"); obniz.display.print("前にこっちを"); obniz.display.print("押してください!"); //if the "Print on obniz" clicked $("#showtime").on("click", function() { //show input text on obniz display obniz.display.clear(); obniz.display.print($("#text").val()); }); //if the switch state changes obniz.switch.onchange = function(state) { //ボタンを押したとき if(state == "push"){ //show the state on obniz display obniz.display.clear(); obniz.display.print("返信を"); obniz.display.print("お待ちください"); //このアプリのURLをGAS経由でLineに送る fetch('XXXXXXXXXXXXXXXXXXXXXX', {method:"GET", mode: "cors", cache:"no-cache"}).catch(e=>{ /* nothing */ }); } //表示のリセット if(state == "right"){ obniz.display.clear(); obniz.display.print("チャイムを鳴らす"); obniz.display.print("前にこっちを"); obniz.display.print("押してください!"); } }; }; </script> </body> </html> ``` # 参考文献 https://stabucky.com/wp/archives/12654