Skip to content

Commit 7a5d235

Browse files
author
dave
committed
small fixes for release
1 parent 5c73191 commit 7a5d235

File tree

2 files changed

+1
-17
lines changed

2 files changed

+1
-17
lines changed

README.md

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -41,22 +41,6 @@ There is a custom dialog within "TcMenu Designer UI" where you can select the Un
4141

4242
Please raise all questions in the main TcMenu repository discussions.
4343

44-
## Special notes for Arduino DUE
45-
46-
The due compiler does not support `has_include` and therefore we cannot automatically determine what libraries are available to you. For Due you need to do this manually before including tcUnicode (or anything else that may include it). Here is an example:
47-
48-
#define TC_HARDWIRE_USING_ADAGFX
49-
#include <tcUnicodeHelper.h>
50-
51-
Here is the full list of options to manually hard-wire a library to be available
52-
53-
* `TC_HARDWIRE_USING_ADAGFX` - to indicate Adafruit_GFX library is available
54-
* `TC_HARDWIRE_USING_U8G2` - to indicate U8G2 library is available
55-
* `TC_HARDWIRE_USING_TFT_ESPI` - to indicate TFT_eSPI library is available
56-
* `TC_HARDWIRE_TCMENU_RENDER` - to indicate tcMenu library is available
57-
58-
As far as we know every other board we have tested with is able to automatically detect. However, if you come across another board that does not support `has_include` please raise an issue here and try applying the above technique.
59-
6044
## Questions and documentation
6145

6246
You can ask questions either in the [discussions section of the tcMenu repo](https://github.com/davetcc/tcMenu/discussions), or using the Arduino forum. We generally answer most questions, but the rules of engagement are: **this is my hobby, I make it available because it helps others**. Don't expect immediate answers, make sure you've recreated the problem in a simple sketch that you can send to me. Please consider making at least a one time donation using the sponsor link if we do help you out.

examples/adaUnicodeShim/adaUnicodeShim.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#include <Adafruit_GFX.h>
2-
#include "tcUnicodeHelper.h"
2+
#include "tcUnicodeAdaGFX.h"
33
#include <Adafruit_ILI9341.h>
44
#include <SPI.h>
55
#include <Wire.h>

0 commit comments

Comments
 (0)