Arduino SigFox Проблемы с данными о температуре - PullRequest
0 голосов
/ 20 сентября 2018

Может кто-нибудь помочь мне с этой настройкой Sigfox?Что я сделал не так?: -)

Единственное, чего я хотел добиться - это опубликовать внутреннюю температуру и состояние на бэкенде sigfox.Каждые 15 минут данные будут опубликованы.Настроенный адрес электронной почты от службы, показывающий температуру в градусах Цельсия.

Публикация в бэкэнд работает.Однако сообщение электронной почты и данные, кажется, не соответствуют.При запуске кода в режиме отладки.Температура отображается правильно в градусах Цельсия.

Имеется ли руководство?

Код Arduino MKR FOX 1200

Temp.ino

#include <ArduinoLowPower.h>
#include <SigFox.h>
#include "conversions.h"

// Set oneshot to false to trigger continuous mode when you finisched setting up the whole flow
int oneshot = false;


#define STATUS_OK     0

/*
    ATTENTION - the structure we are going to send MUST
    be declared "packed" otherwise we'll get padding mismatch
    on the sent data - see http://www.catb.org/esr/structure-packing/#_structure_alignment_and_padding
    for more details
*/
typedef struct __attribute__ ((packed)) sigfox_message {
  int16_t moduleTemperature;
  uint8_t lastMessageStatus;
} SigfoxMessage;

// stub for message which will be sent
SigfoxMessage msg;

void setup() {

  if (oneshot == true) {
    // Wait for the serial
    Serial.begin(115200);
    while (!Serial) {}
  }

  if (!SigFox.begin()) {
    // Something is really wrong, try rebooting
    // Reboot is useful if we are powering the board using an unreliable power source
    // (eg. solar panels or other energy harvesting methods)
    reboot();
  }

  //Send module to standby until we need to send a message
  SigFox.end();

  if (oneshot == true) {
    // Enable debug prints and LED indication if we are testing
    SigFox.debug();
  }

 }

void loop() {
  // Every 15 minutes, read all the sensor and send the data
  // Let's try to optimize the data format
  // Only use floats as intermediate representaion, don't send them directly

  //sensors_event_t event;

  // Start the module
  SigFox.begin();
  // Wait at least 30ms after first configuration (100ms before)
  delay(100);

  // We can only read the module temperature before SigFox.end()
  float temperature = SigFox.internalTemperature();
  msg.moduleTemperature = convertoFloatToInt16(temperature, 60, -60);

  if (oneshot == true) {
    Serial.println("Internal temp: " + String(temperature));
  }

  // Clears all pending interrupts
  SigFox.status();
  delay(1);

  SigFox.beginPacket();
  SigFox.write((uint8_t*)&msg, 12);

  msg.lastMessageStatus = SigFox.endPacket();

  if (oneshot == true) {
    Serial.println("Status: " + String(msg.lastMessageStatus));
  }

  SigFox.end();

  if (oneshot == true) {
    // spin forever, so we can test that the backend is behaving correctly
    while (1) {}
  }

  //Sleep for 15 minutes
  LowPower.sleep(1 * 60 * 1000);
}

void reboot() {
  NVIC_SystemReset();
  while (1);
}

Conversion.h

#define UINT16_t_MAX  65536
#define INT16_t_MAX   UINT16_t_MAX/2

int16_t convertoFloatToInt16(float value, long max, long min) {
  float conversionFactor = (float) (INT16_t_MAX) / (float)(max - min);
  return (int16_t)(value * conversionFactor);
}

uint16_t convertoFloatToUInt16(float value, long max, long min = 0) {
  float conversionFactor = (float) (UINT16_t_MAX) / (float)(max - min);
  return (uint16_t)(value * conversionFactor);
}

Настройки Sigfox Backend - обратные вызовы по электронной почте enter image description here

1 Ответ

0 голосов
/ 22 сентября 2018

С текущим convertoFloatToInt16 будет невозможно отобразить реальную температуру в электронном письме непосредственно из Sigfox Backend.

Вам необходимо либо использовать обратный вызов из Sigfox Backend на сервер, который реализует converttoFloatToUInt16, а затемотправляет электронное письмо или отправляет информацию о температуре в формате, который Sigfox Backend может декодировать самостоятельно (32-разрядное плавание, вероятно, является наиболее подходящим).

...