| PIDevice_MAX7219_LED_MATRIX Xojo Plugin |
|
PIDevice_MAX7219_LED_MATRIX.BeginTransaction Method (console safe)
Use this to start a transaction to write to more than one display to make sure their all updated at exactly same time.
BeginTransaction()
Parameters
Remarks
To use this then you would do something like this:
matrixInstance.BeginTransaction()
matrixInstance.SendASCIILetter(1,Asc("A"))
matrixInstance.SendASCIILetter(2,Asc(“B”))
matrixInstance.EndTransaction()
This would make display 1 and 2 update their data at exactly same time.
NoteDo not use this to write more than once to same display
See Also
PIDevice_MAX7219_LED_MATRIX Class