Cart

1

LilyGO TTGO T-Higrow ESP32 – BME280 Sensor – with Case and Battery

10.75 د.ك

The TTGO T-Higrow from LilyGO is a microcontroller based on an ESP32 with several sensors.

In stock

Description

The TTGO T-Higrow from LilyGO is a microcontroller based on an ESP32 with several sensors with case. The CP2104 USB to serial converter makes it easy to program, even as an Arduino. The board has a USB-C connection with which it can be programmed and/or powered (USB-C cable not included).

Specifications:

  • Supply voltage: 3.3V DC or 5V DC
  • GPIO voltage: 3.3V*
  • ESP32 chip (240Mhz dual core processor)
    • Flash memory: 4MB
    • SRAM: 520KB
    • Built-in Wi-Fi
    • Built-in Bluetooth
  • Built-in Li-ion/Li-Po battery charging circuit: TP4054 chip can charge up to 500mA
  • Included Li-Po battery: 200mAh
  • Built-in capacitive soil moisture sensor
  • Built-in resistive soil moisture sensor
  • Built-in ambient light sensor: BH1750
  • Built-in digital barometer pressure and humidity sensor: BME280
  • PCB dimensions: See images

Package contents:

  • 1x TTGO T-Higrow
  • 1x Male header set
  • 1x Battery cable
  • 1x 200mAh Li-Po battery
  • 1x Case + mounting screws

See the following page for more information and to get started with the board: TTGO-T-Higrow

To program the board with the Arduino IDE select the ‘ESP32 Dev Module’ in the board manager.

To get the BME280 sensor to work, the following library can be installed (also possible via the library manager in the Arduino IDE): Adafruit BME280 Library

Open the example code named “bme280test.ino” and change the following lines (around 42-45) of code:

unsigned status;

// default settings
status = bme.begin();

To:

pinMode(4, OUTPUT);
digitalWrite(4, HIGH);
delay(200);

Wire.begin (25, 26);

unsigned status;

status = bme.begin(0x77, &Wire);

The code can now be uploaded.

*Note: The pins on the board are directly connected to the ESP32 chip and are therefore only suitable for 3.3V signals.