OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ULN200XA
(Results
1 - 6
of
6
) sorted by null
/hardware/bsp/intel/peripheral/libupm/examples/c++/
uln200xa.cxx
27
#include "
uln200xa
.h"
35
// Instantiate a Stepper motor on a
ULN200XA
Dual H-Bridge.
41
upm::
ULN200XA
*
uln200xa
= new upm::
ULN200XA
(4096, 8, 9, 10, 11);
local
43
uln200xa
->setSpeed(5);
44
uln200xa
->setDirection(upm::
ULN200XA
::DIR_CW);
46
uln200xa
->stepperSteps(4096);
50
uln200xa
->setDirection(upm::ULN200XA::DIR_CCW)
[
all
...]
/hardware/bsp/intel/peripheral/libupm/examples/java/
ULN200XASample.java
39
// Instantiate a Stepper motor on a
ULN200XA
Dual H-Bridge.
42
upm_uln200xa.
ULN200XA
uln200xa
= new upm_uln200xa.
ULN200XA
(4096, 8, 9, 10, 11);
local
44
uln200xa
.setSpeed(5);
46
uln200xa
.setDirection(upm_uln200xa.
ULN200XA
.ULN200XA_DIRECTION_T.DIR_CW);
47
uln200xa
.stepperSteps(4096);
53
uln200xa
.setDirection(upm_uln200xa.
ULN200XA
.ULN200XA_DIRECTION_T.DIR_CCW)
[
all
...]
/hardware/bsp/intel/peripheral/libupm/examples/python/
uln200xa.py
28
# Instantiate a Stepper motor on a
ULN200XA
Darlington Motor Driver
32
myUln200xa = upmULN200XA.
ULN200XA
(4096, 8, 9, 10, 11)
51
myUln200xa.setDirection(upmULN200XA.
ULN200XA
.DIR_CW)
60
myUln200xa.setDirection(upmULN200XA.
ULN200XA
.DIR_CCW)
/hardware/bsp/intel/peripheral/libupm/src/uln200xa/
uln200xa.h
35
* @brief
ULN200XA
Stepper Driver library
36
* @defgroup
uln200xa
libupm-
uln200xa
41
* @library
uln200xa
42
* @sensor
uln200xa
43
* @comname
ULN200XA
Stepper Driver
50
* @brief UPM module for the
ULN200XA
Darlington Stepper Driver
56
* @image html
uln200xa
.jpg
58
* @snippet
uln200xa
.cxx Interesting
62
class
ULN200XA
{
[
all
...]
uln200xa.cxx
29
#include "
uln200xa
.h"
34
ULN200XA
::
ULN200XA
(int stepsPerRev, int i1, int i2, int i3, int i4)
84
void
ULN200XA
::initClock()
89
uint32_t
ULN200XA
::getMillis()
118
ULN200XA
::~
ULN200XA
()
126
void
ULN200XA
::setSpeed(int speed)
131
void
ULN200XA
::setDirection(ULN200XA_DIRECTION_T dir)
144
void
ULN200XA
::stepperStep(
[
all
...]
/hardware/bsp/intel/peripheral/libupm/examples/javascript/
uln200xa.js
29
// Instantiate a Stepper motor on a
ULN200XA
Darlington Motor Driver
33
var myUln200xa_obj = new Uln200xa_lib.
ULN200XA
(4096, 8, 9, 10, 11);
38
myUln200xa_obj.setDirection(Uln200xa_lib.
ULN200XA
.DIR_CW);
46
myUln200xa_obj.setDirection(Uln200xa_lib.
ULN200XA
.DIR_CCW);
64
// Run
ULN200xa
driven stepper
Completed in 365 milliseconds