Ein Roboter mit bürstenlosem Antrieb, differenzial und NRF24L01 Funk. Großflächig gebaut um ein großes Solarpanel aufzunehmen.
https://gitlab.informatik.hs-fulda.de/fdai5253/roboter
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
369 B
22 lines
369 B
#include <SPI.h>
|
|
#include <nRF24L01.h>
|
|
#include <RF24.h>
|
|
|
|
RF24 radio(A2, A3); // CE, CSN
|
|
|
|
const byte address[6] = "00001";
|
|
|
|
void setup() {
|
|
Serial.begin(9600);
|
|
|
|
radio.begin();
|
|
radio.openWritingPipe(address);
|
|
radio.setPALevel(RF24_PA_MAX);
|
|
radio.stopListening();
|
|
}
|
|
|
|
void loop() {
|
|
const char text[] = "Hello World";
|
|
|
|
radio.write(&text, sizeof(text));
|
|
}
|