暂无描述

adafruitms1438.py 2.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. #!/usr/bin/python
  2. # Author: Zion Orent <zorent@ics.com>
  3. # Copyright (c) 2015 Intel Corporation.
  4. #
  5. # Permission is hereby granted, free of charge, to any person obtaining
  6. # a copy of this software and associated documentation files (the
  7. # "Software"), to deal in the Software without restriction, including
  8. # without limitation the rights to use, copy, modify, merge, publish,
  9. # distribute, sublicense, and/or sell copies of the Software, and to
  10. # permit persons to whom the Software is furnished to do so, subject to
  11. # the following conditions:
  12. #
  13. # The above copyright notice and this permission notice shall be
  14. # included in all copies or substantial portions of the Software.
  15. #
  16. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  17. # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  18. # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  19. # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  20. # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  21. # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  22. # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  23. import time, sys, signal, atexit
  24. import pyupm_adafruitms1438 as upmAdafruitms1438
  25. # Import header values
  26. I2CBus = upmAdafruitms1438.ADAFRUITMS1438_I2C_BUS
  27. I2CAddr = upmAdafruitms1438.ADAFRUITMS1438_DEFAULT_I2C_ADDR
  28. M3Motor = upmAdafruitms1438.AdafruitMS1438.MOTOR_M3
  29. MotorDirCW = upmAdafruitms1438.AdafruitMS1438.DIR_CW
  30. MotorDirCCW = upmAdafruitms1438.AdafruitMS1438.DIR_CCW
  31. # Instantiate an Adafruit MS 1438 on I2C bus 0
  32. myMotorShield = upmAdafruitms1438.AdafruitMS1438(I2CBus, I2CAddr)
  33. ## Exit handlers ##
  34. # This stops python from printing a stacktrace when you hit control-C
  35. def SIGINTHandler(signum, frame):
  36. raise SystemExit
  37. # This function lets you run code on exit,
  38. # including functions from myMotorShield
  39. def exitHandler():
  40. myMotorShield.disableMotor(M3Motor)
  41. print "Exiting"
  42. sys.exit(0)
  43. # Register exit handlers
  44. atexit.register(exitHandler)
  45. signal.signal(signal.SIGINT, SIGINTHandler)
  46. # Setup for use with a DC motor connected to the M3 port
  47. # set a PWM period of 50Hz
  48. myMotorShield.setPWMPeriod(50)
  49. # disable first, to be safe
  50. myMotorShield.disableMotor(M3Motor)
  51. # set speed at 50%
  52. myMotorShield.setMotorSpeed(M3Motor, 50)
  53. myMotorShield.setMotorDirection(M3Motor, MotorDirCW)
  54. print ("Spin M3 at half speed for 3 seconds, "
  55. "then reverse for 3 seconds.")
  56. myMotorShield.enableMotor(M3Motor)
  57. time.sleep(3)
  58. print "Reversing M3"
  59. myMotorShield.setMotorDirection(M3Motor, MotorDirCCW)
  60. time.sleep(3)
  61. print "Stopping M3"
  62. # exitHandler runs automatically