mirror of
https://github.com/Kugelschieber/arduino-c.git
synced 2026-01-18 11:00:26 +00:00
Started working on RF24.
This commit is contained in:
12
rf24/rf24.h
Normal file
12
rf24/rf24.h
Normal file
@@ -0,0 +1,12 @@
|
||||
#ifndef RF24_H_
|
||||
#define RF24_H_
|
||||
|
||||
#include "register.h"
|
||||
|
||||
void rf24_init(unsigned char, unsigned char, unsigned char, unsigned char, unsigned char, unsigned char, unsigned char);
|
||||
void rf24_tx_addr(unsigned char*);
|
||||
void rf24_rx_addr(unsigned char*);
|
||||
void rf24_send(char*); // length is fixed and set on initialization
|
||||
void rf24_receive(char*); // length is fixed and set on initialization
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user