Fabio Faria / ISR_Mini-explorer_tmp

Dependencies:   RF24

Fork of ISR_Mini-explorer by ISR UC

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Radio.h Source File

Radio.h

00001 #ifndef RADIO_H
00002 #define RADIO_H
00003 
00004 #include "mbed.h"
00005 #include "RF24.h"
00006 
00007 extern RF24 radio;
00008 
00009 bool init_nRF(int channel);
00010 void radio_send_string(char *str);
00011 void send_float_matrix(float *matrix, unsigned num_lines, unsigned num_columns);
00012 void send_rangefinder();
00013 void test_send_matrix();
00014 
00015 #endif