mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-11-04 13:06:38 +00:00
Now prints out sensor data
This commit is contained in:
parent
509ad55a2e
commit
ce53fdd7f4
@ -28,7 +28,7 @@
|
||||
*
|
||||
* This file is part of the Contiki operating system.
|
||||
*
|
||||
* $Id: test-treeroute.c,v 1.3 2007/03/25 12:10:29 adamdunkels Exp $
|
||||
* $Id: test-treeroute.c,v 1.4 2007/03/31 18:41:13 adamdunkels Exp $
|
||||
*/
|
||||
|
||||
/**
|
||||
@ -85,8 +85,13 @@ PROCESS_THREAD(depth_blink_process, ev, data)
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static void
|
||||
recv(rimeaddr_t *originator, u8_t seqno, u8_t hops, u8_t retransmissions)
|
||||
recv(rimeaddr_t *originator, u8_t seqno, u8_t hops)
|
||||
{
|
||||
printf("Sink got message from %d.%d, seqno %d, hops %d: len %d '%s'\n",
|
||||
originator->u8[0], originator->u8[1],
|
||||
seqno, hops,
|
||||
rimebuf_datalen(),
|
||||
(char *)rimebuf_dataptr());
|
||||
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
@ -105,6 +110,9 @@ PROCESS_THREAD(test_tree_process, ev, data)
|
||||
if(ev == sensors_event) {
|
||||
|
||||
if(data == &pir_sensor) {
|
||||
rimebuf_clear();
|
||||
rimebuf_set_datalen(sprintf(rimebuf_dataptr(),
|
||||
"%d", pir_sensor.value(0)));
|
||||
tree_send(&tc);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user