Skip to content
Snippets Groups Projects
Commit 0c5c3d9b authored by Hyungsin's avatar Hyungsin
Browse files

driver/pir: add pir-based occupancy sensing

parent 9c612d47
No related branches found
No related tags found
No related merge requests found
...@@ -279,6 +279,11 @@ ifneq (,$(filter pcd8544,$(USEMODULE))) ...@@ -279,6 +279,11 @@ ifneq (,$(filter pcd8544,$(USEMODULE)))
USEMODULE += xtimer USEMODULE += xtimer
endif endif
ifneq (,$(filter pir,$(USEMODULE)))
FEATURES_REQUIRED += periph_gpio
USEMODULE += xtimer
endif
ifneq (,$(filter rgbled,$(USEMODULE))) ifneq (,$(filter rgbled,$(USEMODULE)))
USEMODULE += color USEMODULE += color
endif endif
......
...@@ -186,6 +186,10 @@ ifneq (,$(filter pcd8544,$(USEMODULE))) ...@@ -186,6 +186,10 @@ ifneq (,$(filter pcd8544,$(USEMODULE)))
USEMODULE_INCLUDES += $(RIOTBASE)/drivers/pcd8544/include USEMODULE_INCLUDES += $(RIOTBASE)/drivers/pcd8544/include
endif endif
ifneq (,$(filter pir,$(USEMODULE)))
USEMODULE_INCLUDES += $(RIOTBASE)/drivers/pir/include
endif
ifneq (,$(filter pulse_counter,$(USEMODULE))) ifneq (,$(filter pulse_counter,$(USEMODULE)))
USEMODULE_INCLUDES += $(RIOTBASE)/drivers/pulse_counter/include USEMODULE_INCLUDES += $(RIOTBASE)/drivers/pulse_counter/include
endif endif
......
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
* @brief Device driver interface for the PIR motion sensor * @brief Device driver interface for the PIR motion sensor
* *
* @author Ludwig Knüpfer <ludwig.knuepfer@fu-berlin.de> * @author Ludwig Knüpfer <ludwig.knuepfer@fu-berlin.de>
* @author Hyung-Sin Kim <hs.kim@cs.berkeley.edu>
*/ */
#ifndef PIR_H #ifndef PIR_H
...@@ -23,17 +24,41 @@ ...@@ -23,17 +24,41 @@
#include "kernel_types.h" #include "kernel_types.h"
#include "periph/gpio.h" #include "periph/gpio.h"
#include "stdbool.h"
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
#endif #endif
/**
* @brief PIR specific return values
*/
enum {
PIR_OK = 0, /**< everything went as expected */
PIR_NOGPIO = -1, /**< errors while initializing the GPIO */
PIR_NOTHREAD = -2, /**< errors while registering the thread */
PIR_TIMEERR = -3, /**< errors while getting the time information */
};
/**
* @brief Parameters needed for device initialization
*/
typedef struct {
gpio_t gpio; /**< GPIO device which is used */
bool active_high; /**< Active when GPIO pin is high or not */
} pir_params_t;
/** /**
* @brief device descriptor for a PIR sensor * @brief device descriptor for a PIR sensor
*/ */
typedef struct { typedef struct {
gpio_t gpio_dev; /**< GPIO device which is used */ uint64_t start_active_time; /**< Time when PIR starts to be active */
kernel_pid_t msg_thread_pid; /**< thread to msg on irq */ uint64_t accum_active_time; /**< Accumulated active time */
uint64_t last_read_time; /**< Last time when PIR status is read */
kernel_pid_t msg_thread_pid; /**< thread to msg on irq */
bool active; /**< Indicate PIR is active or not */
pir_params_t p; /**< Configuration parameters */
} pir_t; } pir_t;
/** /**
...@@ -47,8 +72,8 @@ typedef struct { ...@@ -47,8 +72,8 @@ typedef struct {
* @brief event type for a PIR sensor * @brief event type for a PIR sensor
*/ */
typedef enum { typedef enum {
PIR_STATUS_HI = PIR_MSG_T_STATUS_START, /**< motion was detected */ PIR_STATUS_ACTIVE = PIR_MSG_T_STATUS_START, /**< motion was detected */
PIR_STATUS_LO, /**< no motion is detected */ PIR_STATUS_INACTIVE, /**< no motion is detected */
} pir_event_t; } pir_event_t;
/** /**
...@@ -62,12 +87,12 @@ typedef enum { ...@@ -62,12 +87,12 @@ typedef enum {
* measurements can be made. * measurements can be made.
* *
* @param[out] dev device descriptor of an PIR sensor * @param[out] dev device descriptor of an PIR sensor
* @param[in] gpio the GPIO device the sensor is connected to * @param[in] params parameters of the PIR sensor
* *
* @return 0 on success * @return 0 on success
* @return -1 on error * @return -1 on error
*/ */
int pir_init(pir_t *dev, gpio_t gpio); int pir_init(pir_t *dev, const pir_params_t* params);
/** /**
* @brief Read the current status of the motion sensor * @brief Read the current status of the motion sensor
...@@ -78,6 +103,19 @@ int pir_init(pir_t *dev, gpio_t gpio); ...@@ -78,6 +103,19 @@ int pir_init(pir_t *dev, gpio_t gpio);
*/ */
pir_event_t pir_get_status(const pir_t *dev); pir_event_t pir_get_status(const pir_t *dev);
/**
* @brief Read OCCUPANCY value
*
* @param[in] dev device descriptor of the PIR motion sensor to read from
* @param[out] occup occupancy ratio [in 100 * percentage]
* The value is renewed when it is read. So it is percentage
* of occupancy since the last read.
*
* @return 0 on success,
* @return -1 on errors,
*/
int pir_get_occupancy(pir_t *dev, int16_t *occup);
/** /**
* @brief Register a thread for notification whan state changes on the * @brief Register a thread for notification whan state changes on the
* motion sensor. * motion sensor.
......
...@@ -96,6 +96,7 @@ enum { ...@@ -96,6 +96,7 @@ enum {
SAUL_SENSE_DISTANCE = 0x8e, /**< sensor: distance */ SAUL_SENSE_DISTANCE = 0x8e, /**< sensor: distance */
SAUL_SENSE_CO2 = 0x8f, /**< sensor: CO2 Gas */ SAUL_SENSE_CO2 = 0x8f, /**< sensor: CO2 Gas */
SAUL_SENSE_TVOC = 0x90, /**< sensor: TVOC Gas */ SAUL_SENSE_TVOC = 0x90, /**< sensor: TVOC Gas */
SAUL_SENSE_OCCUP = 0x91, /**< sensor: occupancy */
SAUL_CLASS_ANY = 0xff /**< any device - wildcard */ SAUL_CLASS_ANY = 0xff /**< any device - wildcard */
/* extend this list as needed... */ /* extend this list as needed... */
}; };
......
/*
* Copyright (C) 2018 UC Berkeley
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/
/**
* @ingroup drivers_pir
*
* @{
* @file
* @brief Default configuration for PIR devices
*
* @author Hyung-Sin Kim <hs.kim@cs.berkeley.edu>
*/
#ifndef PIR_PARAMS_H
#define PIR_PARAMS_H
#include "board.h"
#include "pir.h"
#include "saul_reg.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief Set default configuration parameters for the PIR driver
* @{
*/
#ifndef PIR_PARAM_GPIO
#define PIR_PARAM_GPIO GPIO_PIN(0, 6)
#endif
#ifndef PIR_PARAM_ACTIVE_HIGH
#define PIR_PARAM_ACTIVE_HIGH 1
#endif
#ifndef PIR_PARAMS
#define PIR_PARAMS { .gpio = PIR_PARAM_GPIO, \
.active_high = PIR_PARAM_ACTIVE_HIGH }
#endif
#ifndef PIR_SAUL_INFO
#define PIR_SAUL_INFO { .name = "pir" }
#endif
/**@}*/
/**
* @brief PIR configuration
*/
static const pir_params_t pir_params[] =
{
PIR_PARAMS
};
/**
* @brief Additional meta information to keep in the SAUL registry
*/
static const saul_reg_info_t pir_saul_info[] =
{
PIR_SAUL_INFO
};
#ifdef __cplusplus
}
#endif
#endif /* PIR_PARAMS_H */
/** @} */
/* /*
* Copyright (C) 2014 Freie Universität Berlin * Copyright (C) 2014 Freie Universität Berlin
* Copyright (C) 2018 UC Berkeley
* *
* This file is subject to the terms and conditions of the GNU Lesser * This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level * General Public License v2.1. See the file LICENSE in the top level
...@@ -14,13 +15,16 @@ ...@@ -14,13 +15,16 @@
* @brief Device driver implementation for the PIR motion sensor * @brief Device driver implementation for the PIR motion sensor
* *
* @author Ludwig Knüpfer <ludwig.knuepfer@fu-berlin.de> * @author Ludwig Knüpfer <ludwig.knuepfer@fu-berlin.de>
* @author Hyung-Sin Kim <hs.kim@cs.berkeley.edu>
* *
* @} * @}
*/ */
#include "pir.h" #include "pir.h"
#include "irq.h"
#include "thread.h" #include "thread.h"
#include "msg.h" #include "msg.h"
#include "xtimer.h"
#define ENABLE_DEBUG (0) #define ENABLE_DEBUG (0)
#include "debug.h" #include "debug.h"
...@@ -37,16 +41,56 @@ static void pir_send_msg(pir_t *dev, pir_event_t event); ...@@ -37,16 +41,56 @@ static void pir_send_msg(pir_t *dev, pir_event_t event);
* public API implementation * public API implementation
**********************************************************************/ **********************************************************************/
int pir_init(pir_t *dev, gpio_t gpio) int pir_init(pir_t *dev, const pir_params_t *params)
{ {
dev->gpio_dev = gpio; dev->p.gpio = params->gpio;
dev->p.active_high = params->active_high;
dev->msg_thread_pid = KERNEL_PID_UNDEF; dev->msg_thread_pid = KERNEL_PID_UNDEF;
return gpio_init(dev->gpio_dev, GPIO_IN);
dev->active = false;
dev->accum_active_time = 0;
dev->start_active_time = 0;
dev->last_read_time = xtimer_now_usec64();
gpio_mode_t gpio_mode;
if (dev->p.active_high) {
gpio_mode = GPIO_IN_PD;
}
else {
gpio_mode = GPIO_IN_PU;
}
if (gpio_init_int(dev->p.gpio, gpio_mode, GPIO_BOTH, pir_callback, dev)) {
return PIR_NOGPIO;
}
return PIR_OK;
} }
pir_event_t pir_get_status(const pir_t *dev) pir_event_t pir_get_status(const pir_t *dev)
{ {
return ((gpio_read(dev->gpio_dev) == 0) ? PIR_STATUS_LO : PIR_STATUS_HI); return (((gpio_read(dev->p.gpio) > 0) == dev->p.active_high) ?
PIR_STATUS_ACTIVE : PIR_STATUS_INACTIVE);
}
int pir_get_occupancy(pir_t *dev, int16_t *occup) {
int irq_state = irq_disable();
uint64_t now = xtimer_now_usec64();
uint64_t total_time = now - dev->last_read_time;
if (total_time == 0) {
irq_restore(irq_state);
return PIR_TIMEERR;
}
/* We were busy counting */
if (dev->active) {
dev->accum_active_time += (now - dev->start_active_time);
dev->start_active_time = now;
}
*occup = (int16_t)((dev->accum_active_time * 10000) / total_time);
dev->last_read_time = now;
dev->accum_active_time = 0;
irq_restore(irq_state);
return PIR_OK;
} }
int pir_register_thread(pir_t *dev) int pir_register_thread(pir_t *dev)
...@@ -54,20 +98,20 @@ int pir_register_thread(pir_t *dev) ...@@ -54,20 +98,20 @@ int pir_register_thread(pir_t *dev)
if (dev->msg_thread_pid != KERNEL_PID_UNDEF) { if (dev->msg_thread_pid != KERNEL_PID_UNDEF) {
if (dev->msg_thread_pid != thread_getpid()) { if (dev->msg_thread_pid != thread_getpid()) {
DEBUG("pir_register_thread: already registered to another thread\n"); DEBUG("pir_register_thread: already registered to another thread\n");
return -2; return PIR_NOTHREAD;
} }
} }
else { else {
DEBUG("pir_register_thread: activating interrupt for %p..\n", (void *)dev); DEBUG("pir_register_thread: activating interrupt for %p..\n", (void *)dev);
if (pir_activate_int(dev) != 0) { if (pir_activate_int(dev) != PIR_OK) {
DEBUG("\tfailed\n"); DEBUG("\tfailed\n");
return -1; return PIR_NOGPIO;
} }
DEBUG("\tsuccess\n"); DEBUG("\tsuccess\n");
} }
dev->msg_thread_pid = thread_getpid(); dev->msg_thread_pid = thread_getpid();
return 0; return PIR_OK;
} }
/********************************************************************** /**********************************************************************
...@@ -100,6 +144,23 @@ static void pir_callback(void *arg) ...@@ -100,6 +144,23 @@ static void pir_callback(void *arg)
{ {
DEBUG("pir_callback: %p\n", arg); DEBUG("pir_callback: %p\n", arg);
pir_t *dev = (pir_t*) arg; pir_t *dev = (pir_t*) arg;
bool pin_now = gpio_read(dev->p.gpio);
uint64_t now = xtimer_now_usec64();
/* We were busy counting */
if (dev->active) {
/* Add into accumulation */
dev->accum_active_time += (now - dev->start_active_time);
}
/* Pin is rising */
if (pin_now == dev->p.active_high) {
dev->start_active_time = now;
dev->active = true;
/* Pin is falling */
} else {
dev->active = false;
}
if (dev->msg_thread_pid != KERNEL_PID_UNDEF) { if (dev->msg_thread_pid != KERNEL_PID_UNDEF) {
pir_send_msg(dev, pir_get_status(dev)); pir_send_msg(dev, pir_get_status(dev));
} }
...@@ -107,5 +168,16 @@ static void pir_callback(void *arg) ...@@ -107,5 +168,16 @@ static void pir_callback(void *arg)
static int pir_activate_int(pir_t *dev) static int pir_activate_int(pir_t *dev)
{ {
return gpio_init_int(dev->gpio_dev, GPIO_IN, GPIO_BOTH, pir_callback, dev); gpio_mode_t gpio_mode;
if (dev->p.active_high) {
gpio_mode = GPIO_IN_PD;
}
else {
gpio_mode = GPIO_IN_PU;
}
if (gpio_init_int(dev->p.gpio, gpio_mode, GPIO_BOTH, pir_callback, dev)) {
return PIR_NOGPIO;
}
return PIR_OK;
} }
/*
* Copyright (C) 2018 UC Berkeley
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/
/**
* @ingroup drivers_pir
* @{
*
* @file
* @brief PIR adaption to the RIOT actuator/sensor interface
*
* @author Hyung-Sin Kim <hs.kim@cs.berkeley.edu>
*
* @}
*/
#include <string.h>
#include "saul.h"
#include "pir.h"
static int read_occup(const void *dev, phydat_t *res) {
pir_t *d = (pir_t *)dev;
if (pir_get_occupancy(d, &(res->val[0]))) {
/* Read failure */
return -ECANCELED;
}
memset(&(res->val[1]), 0, 2 * sizeof(int16_t));
res->unit = UNIT_PERCENT;
res->scale = -2;
return 1;
}
const saul_driver_t pir_saul_occup_driver = {
.read = read_occup,
.write = saul_notsup,
.type = SAUL_SENSE_OCCUP,
};
...@@ -54,6 +54,7 @@ const char *saul_class_to_str(const uint8_t class_id) ...@@ -54,6 +54,7 @@ const char *saul_class_to_str(const uint8_t class_id)
case SAUL_SENSE_CO2: return "SENSE_CO2"; case SAUL_SENSE_CO2: return "SENSE_CO2";
case SAUL_SENSE_TVOC: return "SENSE_TVOC"; case SAUL_SENSE_TVOC: return "SENSE_TVOC";
case SAUL_CLASS_ANY: return "CLASS_ANY"; case SAUL_CLASS_ANY: return "CLASS_ANY";
case SAUL_SENSE_OCCUP: return "SENSE_OCCUP";
default: return "CLASS_UNKNOWN"; default: return "CLASS_UNKNOWN";
} }
} }
...@@ -330,6 +330,10 @@ auto_init_mpu9150(); ...@@ -330,6 +330,10 @@ auto_init_mpu9150();
extern void auto_init_grove_ledbar(void); extern void auto_init_grove_ledbar(void);
auto_init_grove_ledbar(); auto_init_grove_ledbar();
#endif #endif
#ifdef MODULE_PIR
extern void auto_init_pir(void);
auto_init_pir();
#endif
#ifdef MODULE_SI70XX #ifdef MODULE_SI70XX
extern void auto_init_si70xx(void); extern void auto_init_si70xx(void);
auto_init_si70xx(); auto_init_si70xx();
......
/*
* Copyright (C) 2018 UC Berkeley
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*
*/
/*
* @ingroup sys_auto_init_saul
* @{
*
* @file
* @brief Auto initialization for PIR devices
*
* @author Hyung-Sin Kim <hs.kim@cs.berkeley.edu>
*
* @}
*/
#ifdef MODULE_PIR
#include "log.h"
#include "saul_reg.h"
#include "pir_params.h"
/**
* @brief Define the number of configured sensors
*/
#define PIR_NUM (sizeof(pir_params)/sizeof(pir_params[0]))
/**
* @brief Allocate memory for the device descriptors
*/
static pir_t pir_devs[PIR_NUM];
/**
* @brief Memory for the SAUL registry entries
*/
static saul_reg_t saul_entries[PIR_NUM];
/**
* @brief Reference to the occupancy driver struct
* @{
*/
extern saul_driver_t pir_saul_occup_driver;
/** @} */
void auto_init_pir(void)
{
for (unsigned i = 0; i < PIR_NUM; i++) {
LOG_DEBUG("[auto_init_saul] initializing pir #%u\n", i);
int res = pir_init(&pir_devs[i], &pir_params[i]);
if (res != 0) {
LOG_ERROR("[auto_init_saul] error initializing pir #%u\n", i);
}
else {
saul_entries[i].dev = &(pir_devs[i]);
saul_entries[i].name = pir_saul_info[i].name;
saul_entries[i].driver = &pir_saul_occup_driver;
saul_reg_add(&(saul_entries[i]));
}
}
}
#else
typedef int dont_be_pedantic;
#endif /* MODULE_PIR */
...@@ -9,17 +9,21 @@ USEMODULE += xtimer ...@@ -9,17 +9,21 @@ USEMODULE += xtimer
# define parameters for selected boards # define parameters for selected boards
ifneq (,$(filter stm32f4discovery,$(BOARD))) ifneq (,$(filter stm32f4discovery,$(BOARD)))
PIR_GPIO ?= GPIO_PIN\(3,7\) PIR_PARAM_GPIO ?= GPIO_PIN\(3,7\)
PIR_PARAM_ACTIVE_HIGH ?= 1
endif endif
ifneq (,$(filter arduino-due,$(BOARD))) ifneq (,$(filter arduino-due,$(BOARD)))
PIR_GPIO ?= GPIO_PIN\(0,20\) PIR_PARAM_GPIO ?= GPIO_PIN\(0,20\)
PIR_PARAM_ACTIVE_HIGH ?= 1
endif endif
# set default device parameters in case they are undefined # set default device parameters in case they are undefined
PIR_GPIO ?= GPIO_PIN\(0,0\) PIR_PARAM_GPIO ?= GPIO_PIN\(0,0\)
PIR_PARAM_ACTIVE_HIGH ?= 1
# export parameters # export parameters
CFLAGS += -DPIR_GPIO=$(PIR_GPIO) CFLAGS += -DPIR_PARAM_GPIO=$(PIR_PARAM_GPIO)
CFLAGS += -DPIR_PARAM_ACTIVE_HIGH=$(PIR_PARAM_ACTIVE_HIGH)
include $(RIOTBASE)/Makefile.include include $(RIOTBASE)/Makefile.include
......
...@@ -16,7 +16,8 @@ configured to create interrupts. ...@@ -16,7 +16,8 @@ configured to create interrupts.
Compile and flash this test application like: Compile and flash this test application like:
export BOARD=your_board export BOARD=your_board
export PIR_GPIO=name_of_your_pin export PIR_PARAM_GPIO=name_of_your_pin
export PIR_PARAM_ACTIVE_HIGH=if_gpio_pin_is_high_or_low_when_pir_is_active
make clean make clean
make all-interrupt make all-interrupt
make flash make flash
...@@ -40,7 +41,8 @@ Connect the sensor's "out" pin to any GPIO pin of you board. ...@@ -40,7 +41,8 @@ Connect the sensor's "out" pin to any GPIO pin of you board.
Compile and flash this test application like: Compile and flash this test application like:
export BOARD=your_board export BOARD=your_board
export PIR_GPIO=name_of_your_pin export PIR_PARAM_GPIO=name_of_your_pin
export PIR_PARAM_ACTIVE_HIGH=if_gpio_pin_is_high_or_low_when_pir_is_active
make clean make clean
make all-polling make all-polling
make flash make flash
......
/* /*
* Copyright (C) 2014 Freie Universität Berlin * Copyright (C) 2014 Freie Universität Berlin
* Copyright (C) 2018 UC Berkeley
* *
* This file is subject to the terms and conditions of the GNU Lesser * This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level * General Public License v2.1. See the file LICENSE in the top level
...@@ -14,19 +15,17 @@ ...@@ -14,19 +15,17 @@
* @brief Test application for the PIR motion sensor driver * @brief Test application for the PIR motion sensor driver
* *
* @author Ludwig Knüpfer <ludwig.knuepfer@fu-berlin.de> * @author Ludwig Knüpfer <ludwig.knuepfer@fu-berlin.de>
* @author Hyung-Sin Kim <hs.kim@cs.berkeley.edu>
* *
* @} * @}
*/ */
#ifndef PIR_GPIO
#error "PIR_GPIO not defined"
#endif
#include <stdio.h> #include <stdio.h>
#include "thread.h" #include "thread.h"
#include "xtimer.h" #include "xtimer.h"
#include "pir.h" #include "pir.h"
#include "pir_params.h"
static char pir_handler_stack[THREAD_STACKSIZE_MAIN]; static char pir_handler_stack[THREAD_STACKSIZE_MAIN];
static pir_t dev; static pir_t dev;
...@@ -44,10 +43,10 @@ void* pir_handler(void *arg) ...@@ -44,10 +43,10 @@ void* pir_handler(void *arg)
while (msg_receive(&m)) { while (msg_receive(&m)) {
printf("PIR handler got a message: "); printf("PIR handler got a message: ");
switch (m.type) { switch (m.type) {
case PIR_STATUS_HI: case PIR_STATUS_ACTIVE:
puts("something started moving."); puts("something started moving.");
break; break;
case PIR_STATUS_LO: case PIR_STATUS_INACTIVE:
puts("the movement has ceased."); puts("the movement has ceased.");
break; break;
default: default:
...@@ -63,8 +62,8 @@ void* pir_handler(void *arg) ...@@ -63,8 +62,8 @@ void* pir_handler(void *arg)
int main(void) int main(void)
{ {
puts("PIR motion sensor test application\n"); puts("PIR motion sensor test application\n");
printf("Initializing PIR sensor at GPIO_%ld... ", (long)PIR_GPIO); printf("Initializing PIR sensor at GPIO_%ld... ", (long)PIR_PARAM_GPIO);
if (pir_init(&dev, PIR_GPIO) == 0) { if (pir_init(&dev, &pir_params[0]) == 0) {
puts("[OK]\n"); puts("[OK]\n");
} }
else { else {
...@@ -75,7 +74,8 @@ int main(void) ...@@ -75,7 +74,8 @@ int main(void)
#if TEST_PIR_POLLING #if TEST_PIR_POLLING
puts("Printing sensor state every second."); puts("Printing sensor state every second.");
while (1) { while (1) {
printf("Status: %s\n", pir_get_status(&dev) == PIR_STATUS_LO ? "lo" : "hi"); printf("Status: %s\n", pir_get_status(&dev) == PIR_STATUS_INACTIVE ?
"inactive" : "active");
xtimer_usleep(1000 * 1000); xtimer_usleep(1000 * 1000);
} }
#else #else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment