modm API documentation for STM32F103ZGT7
|
#include <modm/driver/display/is31fl3733.hpp>
Classes | |
struct | LedData |
Public Typedefs | |
using | LedBinaryData = uint16_t[SizeX] |
Public Member Functions | |
Is31fl3733 (uint8_t address=addr ()) | |
bool | enable (uint8_t x, uint8_t y) |
void | enableAll () |
bool | disable (uint8_t x, uint8_t y) |
void | disableAll () |
bool | setPwm (uint8_t x, uint8_t y, uint8_t pwm) |
void | setAllPwm (uint8_t pwm) |
LedBinaryData & | ledsOpen () |
LedBinaryData & | ledsShort () |
modm::ResumableResult< bool > | reset () |
modm::ResumableResult< bool > | setGlobalCurrent (uint8_t current) |
modm::ResumableResult< bool > | clearSoftwareShutdown () |
modm::ResumableResult< bool > | setSwPullUp (Resistor value) |
modm::ResumableResult< bool > | setCsPullDown (Resistor value) |
modm::ResumableResult< bool > | triggerOpenShortDetection () |
modm::ResumableResult< bool > | readOpenShort () |
modm::ResumableResult< bool > | writeOnOff () |
modm::ResumableResult< bool > | writePwm () |
modm::ResumableResult< bool > | writeRegister (Register reg, uint8_t value, uint8_t offset=0) |
modm::ResumableResult< bool > | readRegister (Register reg, uint8_t *const value, uint8_t offset=0) |
void | attachConfigurationHandler (I2c::ConfigurationHandler handler) |
modm::ResumableResult< bool > | ping () |
modm::ResumableResult< bool > | read (uint8_t *buffer, std::size_t size) |
Starts a write transaction and waits until finished. | |
void | setAddress (uint8_t address) |
modm::ResumableResult< bool > | write (const uint8_t *buffer, std::size_t size) |
Starts a write transaction and waits until finished. | |
modm::ResumableResult< bool > | writeRead (const uint8_t *writeBuffer, std::size_t writeSize, uint8_t *readBuffer, std::size_t readSize) |
Starts a write-read transaction and waits until finished. | |
Static Public Member Functions | |
static constexpr uint8_t | addr (Addr addr2=Addr::GND, Addr addr1=Addr::GND) |
Available I2C addresses. | |
Static Public Attributes | |
static constexpr uint8_t | SizeX {12} |
static constexpr uint8_t | SizeY {16} |
Protected Member Functions | |
modm::ResumableResult< bool > | setPage (Register reg) |
int8_t | getResumableDepth () const |
bool | isResumableRunning () const |
bool | isTransactionRunning () |
modm::ResumableResult< bool > | runTransaction () |
Starts our own transaction and waits until finished. | |
bool | startRead (uint8_t *buffer, std::size_t size) |
Configures the transaction with a read operation and starts it. | |
bool | startTransaction () |
Starts the transaction with our own transaction object. | |
bool | startTransaction (modm::I2cTransaction *transaction) |
Starts the transaction with a separate transaction object. | |
bool | startWrite (const uint8_t *buffer, std::size_t size) |
Configures the transaction with a write operation and starts it. | |
bool | startWriteRead (const uint8_t *writeBuffer, std::size_t writeSize, uint8_t *readBuffer, std::size_t readSize) |
Configures the transaction with a write/read operation and starts it. | |
void | stopResumable () |
bool | wasTransactionSuccessful () |
Static Protected Member Functions | |
static constexpr bool | hasPage (Register reg) |
static constexpr uint8_t | getPage (Register reg) |
Protected Attributes | |
struct modm::Is31fl3733::LedData | modm_packed |
uint16_t | led_open [SizeX] |
uint16_t | led_short [SizeX] |
LedData | data |
uint8_t | current_page {0xff} |
uint8_t | buffer [2] |
I2cWriteReadTransaction | transaction |
|
inheritedinline |
Attaches a configuration handler, which is called before a transaction, whenever the configuration has to be changed.
|
inheritedinlineprotected |
true
when transaction is busy.
|
inheritedinline |
true | device responds to address |
false | no device with address found |
|
inheritedinline |
Sets a new address of the slave device.
address | the slave address not yet shifted left (address < 128). |
|
inheritedinlineprotected |
true
when transaction did not return an error.