mirror of
https://github.com/eclipse/upm.git
synced 2025-03-26 02:10:02 +03:00

All other upm library directories match their corresponding library name, the i2clcd was an outlier which caused problems for CMake and testing. * Replaced usage of i2clcd with lcd * Renamed source files and examples * Updated examples to use correct class * Updated documentation where necessary (left changelog sections) Signed-off-by: Noel Eck <noel.eck@intel.com>
32 lines
436 B
OpenEdge ABL
32 lines
436 B
OpenEdge ABL
// Include doxygen-generated documentation
|
|
%include "pyupm_doxy2swig.i"
|
|
%module pyupm_lcd
|
|
%include "../upm.i"
|
|
%include "../carrays_uint8_t.i"
|
|
|
|
%include "ssd.hpp"
|
|
%include "lcd.hpp"
|
|
%{
|
|
#include "lcd.hpp"
|
|
%}
|
|
|
|
%include "ssd1327.hpp"
|
|
%{
|
|
#include "ssd1327.hpp"
|
|
%}
|
|
|
|
%include "ssd1308.hpp"
|
|
%{
|
|
#include "ssd1308.hpp"
|
|
%}
|
|
|
|
%include "eboled.hpp"
|
|
%{
|
|
#include "eboled.hpp"
|
|
%}
|
|
|
|
%include "ssd1306.hpp"
|
|
%{
|
|
#include "ssd1306.hpp"
|
|
%}
|