私はheltecのwireless stick モジュールを2台使ってloraの通信を実験しています。
(通信にあたっては試験通信の申請をして受理されました。)
Peer to PeerでDHT22とAnalog Capacitive Soil Moisture Sensorのデータを通信ができるようになりました。
受信したデータをシリアルで見ることはできるのですが、これをambientに送るスケッチを書くことができません。
どなたか受信したパケットをambientに送るスケッチ例をご存じないでしょうか?
下記にスケッチを添付しました。
以下が送信側スケッチです。
//書き込みOK、シリアルモニタ115200で表示OK。HeltecとGitHubのwinlinvip/SimpleDHTを合体。 //0708送信成功。 //0717Csmsをアナログリードで追記。DHT22の2PINは書き込み時抜いておくこと。送信成功。 /* Basic test program, send date at the BAND you seted. by Aaron.Lee from HelTec AutoMation, ChengDu, China 成都惠利特自动化科技有限公司 www.heltec.cn this project also realess in GitHub: https://github.com/Heltec-Aaron-Lee/WiFi_Kit_series */ #include "heltec.h" #include <SimpleDHT.h> int pinDHT22 = 2; SimpleDHT22 dht22(pinDHT22); #define BAND 915E6 //you can set band here directly,e.g. 868E6,915E6 int counter = 0; void setup() { Serial.begin(115200); //WIFI Kit series V1 not support Vext control Heltec.begin(true /*DisplayEnable Enable*/, true /*Heltec.LoRa Disable*/, true /*Serial Enable*/, true /*PABOOST Enable*/, BAND /*long BAND*/); } void loop() { // start working... Serial.println("================================="); Serial.println("Sample DHT22..."); //DHT22で温湿度測定 float temperature = 0; float humidity = 0; int err = SimpleDHTErrSuccess; if ((err = dht22.read2(&temperature, &humidity, NULL)) != SimpleDHTErrSuccess) { Serial.print("Read DHT22 failed, err="); Serial.println(err);delay(2000); return; } Serial.print("Sample OK: "); Serial.print((float)temperature); Serial.print(" *C, "); Serial.print((float)humidity); Serial.println(" RH%"); // 25pinのCsmsで土壌水分アナログ測定 int sensorValue = -0.06944 * analogRead(25) + 183.54166 ; // print out the value you read: Serial.println(sensorValue);Serial.print(" Soil% "); // DHT22 sampling rate is 0.5HZ. delay(2500); Serial.print("Sending packet: "); Serial.println(counter); // send packet LoRa.beginPacket(); /* * LoRa.setTxPower(txPower,RFOUT_pin); * txPower -- 0 ~ 20 * RFOUT_pin could be RF_PACONFIG_PASELECT_PABOOST or RF_PACONFIG_PASELECT_RFO * - RF_PACONFIG_PASELECT_PABOOST -- LoRa single output via PABOOST, maximum output 20dBm * - RF_PACONFIG_PASELECT_RFO -- LoRa single output via RFO_HF / RFO_LF, maximum output 14dBm */ LoRa.setTxPower(14,RF_PACONFIG_PASELECT_PABOOST); LoRa.println((float)temperature); LoRa.println(" *C, "); //7/20後半もLoRa.printlnに書き換え LoRa.println((float)humidity); LoRa.println(" RH%"); LoRa.println(sensorValue); LoRa.println(" Soil%"); LoRa.print("hello "); LoRa.print(counter); LoRa.endPacket(); counter++; digitalWrite(25, HIGH); // turn the LED on (HIGH is the voltage level) delay(1000); // wait for a second digitalWrite(25, LOW); // turn the LED off by making the voltage LOW delay(1000); // wait for a second }
次に受信側スケッチです。
//書き込みOK、シリアルモニタ115200で表示OK。 //0708受信成功。 //0717土壌水分も受信成功 /* Check the new incoming messages, and print via serialin 115200 baud rate. by Aaron.Lee from HelTec AutoMation, ChengDu, China 成都惠利特自动化科技有限公司 www.heltec.cn this project also realess in GitHub: https://github.com/Heltec-Aaron-Lee/WiFi_Kit_series */ #include "heltec.h" #define BAND 915E6 //you can set band here directly,e.g. 868E6,915E6 void setup() { //WIFI Kit series V1 not support Vext control Heltec.begin(true /*DisplayEnable Enable*/, true /*Heltec.LoRa Disable*/, true /*Serial Enable*/, true /*PABOOST Enable*/, BAND /*long BAND*/); Serial.begin(115200); } void loop() { // try to parse packet int packetSize = LoRa.parsePacket(); if (packetSize) { // received a packet Serial.print("Received packet '"); // read packet while (LoRa.available()) { Serial.print((char)LoRa.read()); } // print RSSI of packet Serial.print("' with RSSI "); Serial.println(LoRa.packetRssi()); } }
ambientとはなんでしょうか
https://ambidata.io/によると
「AmbientはIoTデーターの可視化サービスです。
マイコンなどから送られるセンサーデーターを受信し、蓄積し、可視化(グラフ化)します。」とのことでした。