Package | Description |
---|---|
tijos.framework.devicecenter |
Device bus related classes, such as GPIO I2C, PWM, etc., can be used to develop the sensor which is not supported in the standard library
|
tijos.framework.transducer.led |
LED classes
|
Modifier and Type | Method and Description |
---|---|
static TiPWM |
TiPWM.open(int portID,
int... channelIDs)
Open the TiPWM port by port id and the channel list, and return the
object
NOTE: remapID is 0, that is default location |
static TiPWM |
TiPWM.openRemap(int portID,
int remapID,
int... channelIDs)
Open the TiPWM port by port id, remap id and the channel list, and return the
object
|
Constructor and Description |
---|
TiRGBLED(TiPWM pwm,
int redChannelID,
int greenChannelID,
int blueChannelID)
TiRGBLED initialization, default:highLevel=false
|
TiRGBLED(TiPWM pwm,
int redChannelID,
int greenChannelID,
int blueChannelID,
boolean highLevel)
TiRGBLED initialization
|