98 lines
2.7 KiB
Plaintext
Executable file
98 lines
2.7 KiB
Plaintext
Executable file
/*
|
|
* Sample arduino sketch using contiki features.
|
|
* We turn the LED off
|
|
* We allow read the moisture sensor
|
|
* 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" {
|
|
#include "arduino-process.h"
|
|
#include "rest-engine.h"
|
|
#include "er-coap-engine.h"
|
|
#include "net/netstack.h"
|
|
#include "dev/button-sensor.h"
|
|
|
|
extern resource_t
|
|
res_led,
|
|
res_bled,
|
|
res_battery,
|
|
res_cputemp,
|
|
res_event,
|
|
res_separate,
|
|
res_server;
|
|
|
|
uint8_t led_pin=4;
|
|
uint8_t led_status;
|
|
uint8_t bled_pin=7;
|
|
uint8_t bled_status;
|
|
}
|
|
|
|
#define REMOTE_PORT UIP_HTONS(COAP_DEFAULT_PORT)
|
|
// should be the same :-)
|
|
#define UIP_NTOHS(x) UIP_HTONS(x)
|
|
#define SERVER_NODE(ip) \
|
|
uip_ip6addr(ip,0xfe80,0,0,0,0,0,0,0x01)
|
|
|
|
uip_ipaddr_t server_ipaddr, tmp_addr;
|
|
char server_resource [20] = "button";
|
|
|
|
extern int32_t event_counter;
|
|
|
|
void setup (void)
|
|
{
|
|
// switch off the led
|
|
pinMode(led_pin, OUTPUT);
|
|
digitalWrite(led_pin, HIGH);
|
|
led_status=0;
|
|
// switch off the bled
|
|
pinMode(bled_pin, OUTPUT);
|
|
digitalWrite(bled_pin, LOW);
|
|
bled_status=0;
|
|
// sensors
|
|
SENSORS_ACTIVATE(button_sensor);
|
|
// init coap resourcen
|
|
rest_init_engine ();
|
|
SERVER_NODE (&server_ipaddr);
|
|
#pragma GCC diagnostic ignored "-Wwrite-strings"
|
|
rest_activate_resource (&res_led, "s/led");
|
|
rest_activate_resource (&res_bled, "s/bled");
|
|
rest_activate_resource (&res_battery, "s/battery");
|
|
rest_activate_resource (&res_cputemp, "s/cputemp");
|
|
rest_activate_resource(&res_event, "s/button");
|
|
#pragma GCC diagnostic pop
|
|
|
|
// mcu_sleep_set(64);
|
|
NETSTACK_MAC.off(1);
|
|
}
|
|
|
|
int coap_server_post(void)
|
|
{
|
|
static coap_packet_t request [1]; /* Array: treat as pointer */
|
|
char buf [9];
|
|
coap_transaction_t *transaction;
|
|
int buttonstate = button_sensor.value(0);
|
|
sprintf (buf, "state=%d&event=%lu",buttonstate,event_counter);
|
|
// printf ("%s\n", buf);
|
|
coap_init_message (request, COAP_TYPE_NON, COAP_PUT, 0);
|
|
coap_set_header_uri_path (request, server_resource);
|
|
coap_set_header_content_format (request, REST.type.TEXT_PLAIN);
|
|
coap_set_payload (request, buf, strlen (buf));
|
|
request->mid = coap_get_mid ();
|
|
transaction = coap_new_transaction
|
|
(request->mid, &server_ipaddr, REMOTE_PORT);
|
|
transaction->packet_len = coap_serialize_message
|
|
(request, transaction->packet);
|
|
coap_send_transaction (transaction);
|
|
return 0;
|
|
}
|
|
|
|
void loop (void)
|
|
{
|
|
|
|
}
|