110 likes | 255 Views
การสร้างระบบการติดตั้งข้อมูลการทำงานบนเครือข่ายเซนเซอร์ไร้สาย. Reconfiguration in Wireless Sensor Networks. Reconfiguration in Wireless Sensor Networks. ตารางการดำเนินงาน. Reconfiguration in Wireless Sensor Networks. แสดงการทำงาน. Reconfiguration in Wireless
E N D
การสร้างระบบการติดตั้งข้อมูลการทำงานบนเครือข่ายเซนเซอร์ไร้สายการสร้างระบบการติดตั้งข้อมูลการทำงานบนเครือข่ายเซนเซอร์ไร้สาย Reconfiguration in Wireless Sensor Networks
Reconfiguration in Wireless Sensor Networks ตารางการดำเนินงาน
Reconfiguration in Wireless Sensor Networks แสดงการทำงาน
Reconfiguration in Wireless Sensor Networks
Reconfiguration in Wireless Sensor Networks โปรแกรมควบคุมไม่มีการรับข้อความ event void Boot.booted() { radioBusy = FALSE; radioFull = TRUE; radioIn = radioOut = 0; nodeid = TOS_NODE_ID; workmode = DEFAULT_MODE; delay = 5000; call RadioControl.start(); } เริ่มต้นการทำงาน เปิดอุปกรณ์ ใช้งาน
Reconfiguration in Wireless Sensor Networks เรียกใช้งานtimer event void RadioControl.startDone(error_t err) { if (err == SUCCESS) { radioFull = FALSE; call MilliTimer.startPeriodic(250); call Leds.led0On(); } event void MilliTimer.fired() { call Leds.led0On(); call Leds.led1Off(); call Leds.led2Off(); getPackage(); } void getPackage(){ if((workmode & TEMMODE) > 0) call Temperature.read(); else if((workmode & HUMMODE) > 0) call Humidity.read(); else if((workmode & PHOTOMODE) > 0) call Photo.read(); if((workmode & 0xFFFF) > 0) sendPackage(); } ฟังชันในการทำงาน
Reconfiguration in Wireless Sensor Networks จัดคิวของข้อความ void sendPackage(){ addMsgToQueue(&tmpr); startMilliTimer(); } void startMilliTimer(){ call MilliTimer.startOneShot(delay); } สร้างเหตุการณ์รอการทำงาน
Reconfiguration in Wireless Sensor Networks โปรแกรมควบคุมมีการรับข้อความ event message_t* Receive.receive(message_t* msg, void* payload, uint8_t len) { dbg("RadioCountToLedsC", "Received packet of length %hhu.\n", len); return received(msg, payload, len); } message_t* received(message_t* msg, void* payload, uint8_t len) { radio_config_msg* rconfig; radio_count_msg* rcount; rconfig = (radio_config_msg*)call AMSend.getPayload(msg); rcount = (radio_count_msg*)call AMSend.getPayload(msg); }
basestation Reconfiguration in Wireless Sensor Networks ขณะtimer ทำงาน ขณะtimer ทำงาน
Reconfiguration in Wireless • Sensor Networks
The end • Reconfiguration in Wireless • Sensor Networks