witnessmenow / ESP32-Cheap-Yellow-Display

Building a community around a cheap ESP32 Display with a touch screen
MIT License
1.26k stars 128 forks source link

Example "Examples/ESPHome/6-VariousFeatures" does not compile with recent esphomes. #205

Open AnHardt opened 1 month ago

AnHardt commented 1 month ago

Example "Examples/ESPHome/6-VariousFeatures" does not compile with recent esphomes.

New "calibration" format for the touchscreen is easily resolve by:

  calibration:
    x_min: 280
    x_max: 3800
    y_min: 400
    y_max: 3900
  transform:
    mirror_x: false
    mirror_y: false
    swap_xy: true

or simmilars.

But i can't get around the common pin usage of GPIO25 used in the 'spi_touch' as well as the 'i2s_audio' component.

Is there any weay to get around that? Or is that really a hardware limmitation?

Target is to make a 'voice-assistant' with internal i2c and exterml microphone (INMP441)