AliExpress ProMicro NRF52840

Has anybody successfully used this board with ESPHome?
If so, please could you share a basic working YAML file?

Board info

UF2 Bootloader 0.6.0 lib/nrfx (v2.0.0) lib/tinyusb (0.10.1-41-gdf0cda2d) lib/uf2 (remotes/origin/configupdate-9-gadbb8c7)
Model: nice!nano
Board-ID: nRF52840-nicenano
SoftDevice: S140 version 6.1.1
Date: Jun 19 2021

Thanks

I haven’t tried esphome on that yet (waiting for BLE). Anyway, documentation gives example config for Promicro aka Supermini:

nrf52:
  board: adafruit_itsybitsy_nrf52840

esphome:
  name: supermini-nrf52840

logger:
  level: DEBUG

output:
  - platform: gpio
    pin: P0.15
    id: red_led

interval:
  - interval: 1s
    then:
      - output.turn_on: red_led
      - delay: 0.5s
      - output.turn_off: red_led