283 add new permision for access to environment sensors
This commit is contained in:
@@ -2,8 +2,9 @@
|
|||||||
|
|
||||||
#include <CayenneLPP.h>
|
#include <CayenneLPP.h>
|
||||||
|
|
||||||
#define TELEM_PERM_BASE 0x01 // 'base' permission includes battery
|
#define TELEM_PERM_BASE 0x01 // 'base' permission includes battery
|
||||||
#define TELEM_PERM_LOCATION 0x02
|
#define TELEM_PERM_LOCATION 0x02
|
||||||
|
#define TELEM_PERM_ENVIRONMENT 0x04 // permission to access environment sensors
|
||||||
|
|
||||||
#define TELEM_CHANNEL_SELF 1 // LPP data channel for 'self' device
|
#define TELEM_CHANNEL_SELF 1 // LPP data channel for 'self' device
|
||||||
|
|
||||||
|
|||||||
@@ -103,7 +103,7 @@ bool PromicroSensorManager::begin() {
|
|||||||
|
|
||||||
bool PromicroSensorManager::querySensors(uint8_t requester_permissions, CayenneLPP& telemetry) {
|
bool PromicroSensorManager::querySensors(uint8_t requester_permissions, CayenneLPP& telemetry) {
|
||||||
// TODO: what is the correct permission here?
|
// TODO: what is the correct permission here?
|
||||||
if (requester_permissions && TELEM_PERM_BASE) {
|
if (requester_permissions && TELEM_PERM_ENVIRONMENT) {
|
||||||
if (INA3221initialized) {
|
if (INA3221initialized) {
|
||||||
for(int i = 0; i < 3; i++) {
|
for(int i = 0; i < 3; i++) {
|
||||||
// add only enabled INA3221 channels to telemetry
|
// add only enabled INA3221 channels to telemetry
|
||||||
|
|||||||
Reference in New Issue
Block a user