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

  1. #include <SPI.h>
  2. #include <nRF24L01.h>
  3. #include <RF24.h>
  4. RF24 radio(A2, A3); // CE, CSN
  5. const byte address[6] = "00001";
  6. void setup() {
  7. Serial.begin(9600);
  8. radio.begin();
  9. radio.openWritingPipe(address);
  10. radio.setPALevel(RF24_PA_MAX);
  11. radio.stopListening();
  12. }
  13. void loop() {
  14. const char text[] = "Hello World";
  15. radio.write(&text, sizeof(text));
  16. }