Armband.cs 493 B

1234567891011121314151617181920
  1. using System;
  2. using System.Runtime.InteropServices;
  3. namespace SketchAssistantWPF
  4. {
  5. internal class Armband
  6. {
  7. //[DllImport("BodyActuator.dll")]
  8. //static extern void pushForward(BodyActuator* self, uint8_t tactor, double intensity, uint64_t duration);
  9. internal void pushForward()
  10. {
  11. Console.WriteLine("FORWARD_PUSH");
  12. }
  13. internal void pushBackward()
  14. {
  15. Console.WriteLine("BACKWARD_PUSH");
  16. }
  17. }
  18. }