obnizとNoodlでRFIDタグを検出
obnizとNoodlとMFRC522でRFID検出を試しました。
参考 MFRC522
https://obniz.com/ja/sdk/parts/MFRC522/README.md
完成品
RFIDが検出されると、画面にはりねずみが出現!
obnizとNoodlでRFID pic.twitter.com/SyORLrxvay
— はりねずみ麺 (@hedgehog_noodl) December 17, 2020
Noodlとは
https://www.tds-g.co.jp/noodl-jp/
ビジュアルプログラミングで作れるプロトタイピングツールです。
Noodlは、ビジュアルデザインとダイナミックデータ、IoT・センサーをつなぐUI/UXプロトタイピングツールです。
デザイナー・エンジニア・クライアントの間にできる知識の壁を壊し、スムーズな意思疎通を可能にします。
今回は、NoodlのJSノードにobnizのコードを書いて動かします。
ノードを配置する
ScriptDownloaderノード
Script 0に、https://unpkg.com/[email protected]/obniz.js
を入力(obnizのライブラリ)
Javascriptノード
下記をコピペ
script({
// The input ports of the Javascript node, name of input and type
inputs:{
// ExampleInput:'number',
// Available types are 'number', 'string', 'boolean', 'color'
//myNumber:'number',
scriptDownloaded:'signal',
obnizID:'string',
},
// The output ports of the Javascript node, name of output and type
outputs:{
// ExampleOutput:'string',
hedgehog:'string',
uid:'number'
},
// Declare signal handle functions here, each function will be
// exposed as a signal input to this node.
signals:{
// mySignal:function() { }
scriptDownloaded :function(inputs,outputs) {
console.log('ここ');
var _this = this;
var obniz = new Obniz(inputs.obnizID);
obniz.onconnect = async function() {
// Javascript Example
var mfrc522 = obniz.wired("MFRC522", { cs: 0, clk: 1, mosi: 2, miso: 3, gnd: 5, rst: 6});
while(true) {
try {
let card = await mfrc522.findCardWait();
console.log("Card is detected!");
console.log("UID : " + card.uid);
console.log("PICC Type : " + card.PICC_Type);
outputs.uid = card.uid;
outputs.hedgehog = "on";
_this.flagOutputDirty("uid");
_this.flagOutputDirty("hedgehog");
} catch(e) {
// Not Found or Error
//console.error(e)
outputs.hedgehog = "off";
_this.flagOutputDirty("hedgehog");
}
}
};
}
},
// These functions will be called when the correspinding input
// is changed and the new value is provided
changed:{
// myNumber:function(value) { }
},
// Here you can declare any function that will then be available
// in this. So you can acces the function below with this.aFunction()
methods:{
// aFunction:function(value) { }
}
})
States
- 2つのStates
on
、off
作成 - Valueに
opacity
を作成 - onのopacityに
1
、offのopacityに0
補足
Statesの切り替えについて
RFIDを検出した時、JSノードのoutput hedgehog
にon
を出力して
検出していない時off
を出力するようにし、
StatesノードのInput States
に、直接States名を指定して切り替えています。
outputs.hedgehog = "on";
_this.flagOutputDirty("hedgehog");
this.flagOutputDirty('outputの名前');
Inputの変更以外でJSノードのoutputを更新したい時に使用します。
Author And Source
この問題について(obnizとNoodlでRFIDタグを検出), 我々は、より多くの情報をここで見つけました https://qiita.com/kisaichi07/items/fa94123f81c1ad154b5a著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .