Skip to content

Commit 17d8e31

Browse files
committed
ready for 3.0 release - small fix
1 parent f4068a7 commit 17d8e31

File tree

4 files changed

+536
-48
lines changed

4 files changed

+536
-48
lines changed

examples/arduino32/colorTftEthernet32/colorTftEthernet32_menu.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ IoAbstractionRef ioexp_io8574 = ioFrom8574(0x20, 0);
2020
I2cAt24Eeprom glI2cRom(0x50, PAGESIZE_AT24C128);
2121
EepromAuthenticatorManager authManager(6);
2222
Adafruit_ST7735 gfx(6, 7, 3);
23-
AdafruitDrawable gfxDrawable(&gfx);
23+
AdafruitDrawable gfxDrawable(&gfx, 0);
2424
GraphicsDeviceRenderer renderer(30, applicationInfo.name, &gfxDrawable);
2525
EthernetServer server(3333);
2626
EthernetInitialisation ethernetInitialisation(&server);

examples/arduino32/colorTftEthernet32/colorTftEthernet32_menu.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
#include <RuntimeMenuItem.h>
2020
#include <ScrollChoiceMenuItem.h>
2121
#include <RemoteMenuItem.h>
22-
#include <IoAbstraction.h>
2322
#include <IoAbstractionWire.h>
23+
#include <IoAbstraction.h>
2424
#include <EepromAbstractionWire.h>
2525
#include <RemoteAuthentication.h>
2626

@@ -32,7 +32,6 @@ extern AdafruitDrawable gfxDrawable;
3232
extern GraphicsDeviceRenderer renderer;
3333
extern EthernetServer server;
3434
extern EthernetInitialisation ethernetInitialisation;
35-
extern const GFXfont FreeSansBold9pt7b;
3635

3736
// Any externals needed by IO expanders, EEPROMs etc
3837
extern IoAbstractionRef ioexp_io8574;

0 commit comments

Comments
 (0)