2014-11-14 10:46:30 +01:00
|
|
|
/*
|
|
|
|
* Sample arduino sketch using contiki features.
|
|
|
|
* We turn the LED off
|
2014-12-07 21:39:46 +01:00
|
|
|
* We allow read the moisture sensor
|
2014-11-14 10:46:30 +01:00
|
|
|
* Unfortunately sleeping for long times in loop() isn't currently
|
|
|
|
* possible, something turns off the CPU (including PWM outputs) if a
|
|
|
|
* Proto-Thread is taking too long. We need to find out how to sleep in
|
|
|
|
* a Contiki-compatible way.
|
|
|
|
* Note that for a normal arduino sketch you won't have to include any
|
|
|
|
* of the contiki-specific files here, the sketch should just work.
|
|
|
|
*/
|
|
|
|
|
|
|
|
extern "C" {
|
2014-12-07 21:39:46 +01:00
|
|
|
#include "rest-engine.h"
|
2014-11-14 10:46:30 +01:00
|
|
|
|
2014-12-07 21:39:46 +01:00
|
|
|
extern resource_t res_room, res_battery;
|
|
|
|
uint8_t room_pin = 3;
|
|
|
|
uint8_t room_status = 0;
|
2014-11-14 10:46:30 +01:00
|
|
|
|
2014-12-07 21:39:46 +01:00
|
|
|
#define LED_PIN 4
|
2014-11-14 10:46:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void setup (void)
|
|
|
|
{
|
2014-12-07 21:39:46 +01:00
|
|
|
// switch off the led
|
2014-11-14 10:46:30 +01:00
|
|
|
pinMode(LED_PIN, OUTPUT);
|
|
|
|
digitalWrite(LED_PIN, HIGH);
|
2014-12-07 21:39:46 +01:00
|
|
|
// init coap resourcen
|
2014-11-14 10:46:30 +01:00
|
|
|
rest_init_engine ();
|
2014-12-07 21:39:46 +01:00
|
|
|
rest_activate_resource (&res_room, "s/room");
|
|
|
|
rest_activate_resource (&res_battery, "s/battery");
|
2014-11-14 10:46:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void loop (void)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|