Atm_Teenstep_OSC.h 777 B

1234567891011121314151617181920212223242526272829303132
  1. #pragma once
  2. #include "Atm_Teenstep.h"
  3. #include <EthernetUdp.h>
  4. #include <OSCMessage.h>
  5. #include <OSCBundle.h>
  6. class Atm_Teenstep_OSC {
  7. public:
  8. Atm_Teenstep_OSC( void ){};
  9. Atm_Teenstep_OSC& begin(Atm_Teenstep & stepperMachineRef,
  10. EthernetUDP& udpRef,
  11. OSCBundle& bndl,
  12. const char* address);
  13. Atm_Teenstep* stepperMachine ;
  14. const char* _adress = "/OSC";
  15. EthernetUDP* _udpRef ;
  16. Atm_Teenstep_OSC& onOSC(OSCMessage& msg );
  17. Atm_Teenstep_OSC& sendOSC( void );
  18. void sendPosition(int idx, int v, int up);
  19. private:
  20. // AccelStepper _motor;
  21. // Stepper *_motor; // STEP pin: 2, DIR pin: 3
  22. // StepControl _controller;
  23. OSCBundle* _bndl;
  24. };