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.

18 lines
485 B

  1. void remoteControlInit() {
  2. //Timer2 fuer 1ms initialisieren
  3. Timer2.initTimer2();
  4. Timer2.enableTimer2Interrupt();
  5. //Hintergrundbeleuchtung pwm
  6. pwmBL.initOCR1B();
  7. //Pegelwandler ein
  8. pinMode(_OE_LEVEL, OUTPUT);
  9. digitalWrite(_OE_LEVEL, HIGH);
  10. //Hintergrundbeleuchtung an, halbe Helligkeit
  11. pinMode(BL, OUTPUT);
  12. BRIGHTNESS = 30;
  13. //LCD init, invert, vop, tempcoef, bias
  14. lcd.begin(false, 0xB1, 0x04, 0x12);
  15. lcd.clear();
  16. //erster Taster check
  17. tasten.checkButtons();
  18. }