ssd13x6_default_if.h 562 B

123456789101112131415161718
  1. #ifndef _SSD13x6_DEFAULT_IF_H_
  2. #define _SSD13x6_DEFAULT_IF_H_
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. bool SSD13x6_I2CMasterInitDefault( int PortNumber, int SDA, int SCL );
  7. bool SSD13x6_I2CMasterAttachDisplayDefault( struct SSD13x6_Device* DisplayHandle, int Model, int Width, int Height, int I2CAddress, int RSTPin );
  8. bool SSD13x6_SPIMasterInitDefault( int SPI, int DC);
  9. bool SSD13x6_SPIMasterAttachDisplayDefault( struct SSD13x6_Device* DeviceHandle, int Model, int Width, int Height, int CSPin, int RSTPin, int Speed );
  10. #ifdef __cplusplus
  11. }
  12. #endif
  13. #endif