Jc8012p4a1-guition-esp32-p4_esp32-c6

Hello,

I have also tried landscape and didn’t find a way to get it in Landscape.
Another problem: I have the version with battery and tried to get battery reporting running, without success.

I also found another driver version for JC8012P4A1 collected from here (ESP32-P4 development board - #44 by KrX) that also works with rotation (some jd9365 driver) but I’m waiting for an official version to appear. I don’t want to start building a dashboard and after an update see that the video driver is no longer compatible with the new update

sensor:
  - platform: adc
    name: "Battery voltage"
    pin: GPIO52
    update_interval: 30s
    attenuation: 12dB
    samples: 10

Yes, you can get it now. It features a voltage divider circuit, where GPIO52≈1.8V indicates low battery, and GPIO52≈2.43V indicates full charge.

I’m also waiting for the addition of the rotation feature to start building.

I managed to turn it 90 degrees and make it functional, with a combination of several sources.

external_components:

  • source: github://kvj/esphome@jd9365_gsl3680
    refresh: 0s
    components: [gsl3680, jd9365]
    output:
  • platform: ledc
    pin: GPIO23
    id: backlight

light:

  • platform: monochromatic
    name: “brightness”
    output: backlight
    restore_mode: ALWAYS_ON

touchscreen:

  • platform: gsl3680
    id: my_touch
    reset_pin: GPIO22
    interrupt_pin: GPIO21
    transform:
    swap_xy: true
    mirror_y: false

display:

  • platform: jd9365
    reset_pin: GPIO27
    auto_clear_enabled: false
    update_interval: never
    rotation: 90
    id: my_display

Can someone tell me which connector is used for the UART?

Anyone got the camera working with esphome ?