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.

63 lines
1.7 KiB

4 years ago
4 years ago
4 years ago
  1. #include <Steuerung.h>
  2. //Informationen Joystick
  3. Joystick *joystick;
  4. const uint16_t xAxisPin = 5;
  5. const uint16_t yAxisPin = 6;
  6. const int16_t lowestJoystickValue = 0;
  7. const int16_t highestJoystickValue = 511;
  8. const int16_t spaceing = 60;
  9. //Informationen linker Motor
  10. Motor *left;
  11. const int16_t lowestPWMValueLeftMotor = -255;
  12. const int16_t highestPWMValueLeftMotor = 255;
  13. //Informationen rechter Motor
  14. Motor *right;
  15. const int16_t lowestPWMValueRightMotor = -255;
  16. const int16_t highestPWMValueRightMotor = 255;
  17. Steuerung *steuerung;
  18. void joystickInit() {
  19. joystick = new Joystick(xAxisPin, yAxisPin, lowestJoystickValue, highestJoystickValue, spaceing);
  20. left = new Motor(lowestPWMValueLeftMotor, highestPWMValueLeftMotor);
  21. right = new Motor(lowestPWMValueRightMotor, highestPWMValueRightMotor);
  22. steuerung = new Steuerung(joystick, left, right);
  23. //Serial.begin(9600);
  24. }
  25. void joystickSteuerung() {
  26. //Only updates if joystick is moved
  27. steuerung -> updateValues();
  28. //Show Values On LCD
  29. showValuesOnLCD();
  30. //SendValues
  31. send();
  32. }
  33. void showValuesOnLCD(){
  34. //TODO BUILD STRING
  35. lcdLines[0] = "Links: " + String(left -> PWMValue, DEC);
  36. lcdLines[1] = "Rechts: " + String(right -> PWMValue, DEC);
  37. }
  38. void send(){
  39. commands[0] = speedA;
  40. commands[1] = highByte(right -> PWMValue);
  41. commands[2] = lowByte(right -> PWMValue);
  42. commands[3] = speedB;
  43. commands[4] = highByte(left -> PWMValue);
  44. commands[5] = lowByte(left -> PWMValue);
  45. commands[6] = timeToDrive;
  46. commands[7] = highByte(driveTimeout);
  47. commands[8] = lowByte(driveTimeout);
  48. commands[9] = goDrive;
  49. radio.write(&commands, sizeof(commands));
  50. }