mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-08 04:27:12 +03:00
53 lines
1.6 KiB
C
53 lines
1.6 KiB
C
#ifndef _SSD1306_DRAW_H_
|
|
#define _SSD1306_DRAW_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "sdkconfig.h"
|
|
|
|
#define SSD1306_CLIPDEBUG_NONE 0
|
|
#define SSD1306_CLIPDEBUG_WARNING 1
|
|
#define SSD1306_CLIPDEBUG_ERROR 2
|
|
|
|
#if CONFIG_SSD1306_CLIPDEBUG == SSD1306_CLIPDEBUG_NONE
|
|
/*
|
|
* Clip silently with no console output.
|
|
*/
|
|
#define ClipDebug( x, y )
|
|
#elif CONFIG_SSD1306_CLIPDEBUG == SSD1306_CLIPDEBUG_WARNING
|
|
/*
|
|
* Log clipping to the console as a warning.
|
|
*/
|
|
#define ClipDebug( x, y ) { \
|
|
ESP_LOGW( __FUNCTION__, "Line %d: Pixel at %d, %d CLIPPED", __LINE__, x, y ); \
|
|
}
|
|
#elif CONFIG_SSD1306_CLIPDEBUG == SSD1306_CLIPDEBUG_ERROR
|
|
/*
|
|
* Log clipping as an error to the console.
|
|
* Also invokes an abort with stack trace.
|
|
*/
|
|
#define ClipDebug( x, y ) { \
|
|
ESP_LOGE( __FUNCTION__, "Line %d: Pixel at %d, %d CLIPPED, ABORT", __LINE__, x, y ); \
|
|
abort( ); \
|
|
}
|
|
#endif
|
|
|
|
#define SSD_COLOR_BLACK 0
|
|
#define SSD_COLOR_WHITE 1
|
|
#define SSD_COLOR_XOR 2
|
|
|
|
void SSD1306_Clear( struct SSD1306_Device* DeviceHandle, int Color );
|
|
void SSD1306_DrawPixel( struct SSD1306_Device* DeviceHandle, int X, int Y, int Color );
|
|
void SSD1306_DrawHLine( struct SSD1306_Device* DeviceHandle, int x, int y, int Width, int Color );
|
|
void SSD1306_DrawVLine( struct SSD1306_Device* DeviceHandle, int x, int y, int Height, int Color );
|
|
void SSD1306_DrawLine( struct SSD1306_Device* DeviceHandle, int x0, int y0, int x1, int y1, int Color );
|
|
void SSD1306_DrawBox( struct SSD1306_Device* DeviceHandle, int x1, int y1, int x2, int y2, int Color, bool Fill );
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|