Upgrade to Pro — share decks privately, control downloads, hide ads and more …

ハードウェアを動かす自由研究

kido
September 04, 2020

 ハードウェアを動かす自由研究

kido

September 04, 2020
Tweet

More Decks by kido

Other Decks in Technology

Transcript

  1. 木戸 康平(Kohei Kido) CambrianRobotics inc. Co-Founder & Engineer 9wick IoTが簡単にできる”obniz”を作っています

    IoTLT / IoT algyan / 技術書典 とか JSConf / DevRel conf / Node-RED con などで登壇
  2. Twitter連携部分 ・npm i twitter ・フィードの検索をし、#テックストリート と を含むツイートを監 視 ・たくさん来たらobnizを通じて発火 let

    count = 0; client.get('statuses/filter', {track: '#techstreet '}, function(stream) { stream.on('data', function(tweet) { count++; }); });