st7735: fix the JS implementation of ST7735 class not having its parent class's methods: e.g. GFX::fillScreen(uint16_t color)

Signed-off-by: Takahiro Poly Horikawa <horikawa.takahiro@gmail.com>
Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
This commit is contained in:
Takahiro Poly Horikawa
2015-05-16 02:47:26 +09:00
committed by Mihai Tudor Panu
parent 597b2a6f70
commit 3d63b80c97
2 changed files with 70 additions and 1 deletions

View File

@ -1,8 +1,12 @@
%module jsupm_st7735
%include "../upm.i"
%include "gfx.h"
%{
#include "st7735.h"
#include "gfx.h"
%}
%include "st7735.h"
%{
#include "st7735.h"
%}