From 90cf056e3db9463d82e33e26b82983b7e19ffe36 Mon Sep 17 00:00:00 2001 From: Verkehrsrot Date: Sat, 8 Sep 2018 16:31:56 +0200 Subject: [PATCH 1/2] Update README.md --- README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/README.md b/README.md index 73490820..8c6400aa 100644 --- a/README.md +++ b/README.md @@ -49,9 +49,6 @@ Depending on board hardware following features are supported: Target platform must be selected in [platformio.ini](https://github.com/cyberman54/ESP32-Paxcounter/blob/master/platformio.ini).
Hardware dependent settings (pinout etc.) are stored in board files in /hal directory.
-A suitable board with paxcounter software preloaded can be purchased via AliExpress -here.
- 3D printable cases can be found (and, if wanted so, ordered) on Thingiverse, see Heltec, TTGOv2, TTGOv2.1, T-BEAM for example.
From c963dbe1c6b643013d4c54b639381ec30acd4f44 Mon Sep 17 00:00:00 2001 From: Klaus K Wilting Date: Sun, 9 Sep 2018 17:13:12 +0200 Subject: [PATCH 2/2] bugfix in ttgov21.h --- src/hal/ttgov21.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/hal/ttgov21.h b/src/hal/ttgov21.h index f5c4b760..6d59065d 100644 --- a/src/hal/ttgov21.h +++ b/src/hal/ttgov21.h @@ -7,6 +7,7 @@ / Choose the right configuration below */ +/* // (1) settings for board labeled "T3_V1.6" on pcb #define HAS_LORA 1 // comment out if device shall not send data via LoRa @@ -35,12 +36,14 @@ #define OLED_SDA GPIO_NUM_21 // ESP32 GPIO21 -- SD1306 D1+D2 #define OLED_SCL GPIO_NUM_22 // ESP32 GPIO22 -- SD1306 D0 -/* +*/ + // (2) settings for boards without label on pcb, or labeled v1.5 on pcb #define HAS_LORA 1 // comment out if device shall not send data via LoRa #define HAS_SPI 1 // comment out if device shall not send data via SPI #define CFG_sx1276_radio 1 // HPD13A LoRa SoC +#define HAS_LED NOT_A_PIN // no usable LED on board #define HAS_DISPLAY U8X8_SSD1306_128X64_NONAME_HW_I2C #define DISPLAY_FLIP 1 // rotated display @@ -64,4 +67,3 @@ #define OLED_RST U8X8_PIN_NONE // connected to CPU RST/EN #define OLED_SDA GPIO_NUM_21 // ESP32 GPIO21 -- SD1306 D1+D2 #define OLED_SCL GPIO_NUM_22 // ESP32 GPIO22 -- SD1306 D0 -*/ \ No newline at end of file