Сбор информации о погодных условиях

Dependencies:   RF24 USBDevice mbed

Committer:
pro100kot14
Date:
Wed Oct 28 20:49:13 2015 +0000
Revision:
3:346b49152f1e
Parent:
2:ad2653bcf93f
Child:
6:db4538895ae7
Added the class that implements the data transmission through the module nRF24L01;; Running waiting for requests and responses to them

Who changed what in which revision?

UserRevisionLine numberNew contents of line
pro100kot14 3:346b49152f1e 1 #include "WirelessListener.h"
pro100kot14 0:1e03d2cd238f 2
pro100kot14 3:346b49152f1e 3 int main(){
pro100kot14 3:346b49152f1e 4 WirelessListener listener(0xF0F0F0F0E1LL, 0xF0F0F0F0D2LL);
pro100kot14 3:346b49152f1e 5
pro100kot14 3:346b49152f1e 6 listener.startListening();
pro100kot14 3:346b49152f1e 7
pro100kot14 3:346b49152f1e 8 return 0;
pro100kot14 3:346b49152f1e 9 }