Searched refs:L298 (Results 1 - 8 of 8) sorted by relevance

/hardware/bsp/intel/peripheral/libupm/examples/c++/
H A Dl298-stepper.cxx35 // Instantiate a Stepper motor on a L298 Dual H-Bridge.
38 upm::L298* l298 = new upm::L298(200, 3, 4, 7, 8, 9);
41 l298->setDirection(upm::L298::DIR_CW);
50 l298->setDirection(upm::L298::DIR_CCW);
H A Dl298.cxx35 // Instantiate one of the 2 possible DC motors on a L298 Dual
38 upm::L298* l298 = new upm::L298(3, 4, 7);
42 l298->setDirection(upm::L298::DIR_CW);
48 l298->setDirection(upm::L298::DIR_NONE); // fast stop
49 l298->setDirection(upm::L298::DIR_CCW);
/hardware/bsp/intel/peripheral/libupm/examples/python/
H A Dl298.py28 # Instantiate one of the 2 possible DC motors on a L298 Dual
31 myHBridge = upmL298.L298(3, 4, 7)
52 myHBridge.setDirection(upmL298.L298.DIR_CW)
58 myHBridge.setDirection(upmL298.L298.DIR_NONE) # fast stop
59 myHBridge.setDirection(upmL298.L298.DIR_CCW)
H A Dl298-stepper.py28 # Instantiate a Stepper motor on a L298 Dual H-Bridge.
30 myHBridge = upmL298.L298(200, 3, 4, 7, 8, 9)
50 myHBridge.setDirection(upmL298.L298.DIR_CW)
61 myHBridge.setDirection(upmL298.L298.DIR_CCW)
/hardware/bsp/intel/peripheral/libupm/examples/javascript/
H A Dl298-stepper.js29 // Instantiate a Stepper motor on a L298 Dual H-Bridge.
31 var myHBridge_obj = new HBridge_lib.L298(200, 3, 4, 7, 8, 9);
39 myHBridge_obj.setDirection(HBridge_lib.L298.DIR_CW);
49 myHBridge_obj.setDirection(HBridge_lib.L298.DIR_CCW);
H A Dl298.js29 // Instantiate one of the 2 possible DC motors on a L298 Dual
32 var myHBridge_obj = new HBridge_lib.L298(3, 4, 7);
41 myHBridge_obj.setDirection(HBridge_lib.L298.DIR_CW);
48 myHBridge_obj.setDirection(HBridge_lib.L298.DIR_NONE); // fast stop
49 myHBridge_obj.setDirection(HBridge_lib.L298.DIR_CCW);
/hardware/bsp/intel/peripheral/libupm/src/l298/
H A Dl298.h37 * @brief L298 Dual H-Bridge Motor Driver library
45 * @comname L298 Dual H-Bridge Motor Driver
51 * @brief API for the L298 Dual H-Bridge Motor Driver
60 * <br><em>L298 Dual H-Bridge Motor Driver image provided by SparkFun* under
69 class L298 { class in namespace:upm
82 * L298 constructor for DC motor(s) connected.
88 L298(int pwm, int dir1, int dir2);
91 * L298 constructor for a 4-wire stepper motor
100 L298(int stepsPerRev, int en, int i1, int i2, int i3, int i4);
103 * L298 destructo
[all...]
H A Dl298.cxx35 L298::L298(int pwmA, int dir1, int dir2) function in class:L298
76 L298::L298(int stepsPerRev, int en, int i1, int i2, int i3, int i4) function in class:L298
141 void L298::initClock()
146 uint32_t L298::getMillis()
175 L298::~L298()
198 void L298::setPeriodMS(int ms)
208 void L298
[all...]

Completed in 64 milliseconds