Erro ao mudar cor da fonte no display, no homeassistant

Tentei mudar a cor da fonte do meu display para laranja, e retorna esse erro:
/config/esphome/esp1.yaml: In lambda function: /config/esphome/esp1.yaml:74:10: error: ‘class esphome::display::Display’ has no member named ‘setTextColor’ it.setTextColor(0xFFA500); ^~~~~~~~~~~~ *** [/data/esp32_ssd1306/.p

Esse é o meu código:
substitutions:
esphome_name: esp32_ssd1306

esphome:
  name: "${esphome_name}"
  friendly_name: Esp1

esp32:
  board: esp32dev
  framework:
    type: arduino

logger:

api:
  encryption:
    key: "74DyYNMsRqP/KnbCC90/nsbUfpHdx/8ruhphmCaX1Js="

ota:
  password: "4c2bc4519a2c8d18c96b7765303be11b"

wifi:
  ssid: "xxx"
  password: "xxxxxxxx"

  ap:
    ssid: "Esp1 Fallback Hotspot"
    password: "WBd6JI5tBEzO"

captive_portal:

i2c:
  - id: bus_a
    sda: 21
    scl: 22
    scan: true

sensor:
  - platform: dht
    pin: GPIO13
    model: dht11
    temperature:
      name: "office_temperature"
      id: office_temperature
    humidity:
      name: "office_humidity"
      id: office_humidity
    update_interval: 20s
  - platform: bmp280
    temperature:
      name: "Outside Temperature"
      id: outside_temperature
      oversampling: 16x
    pressure:
      name: "Outside Pressure"
      id: outside_pressure
    address: 0x76
  - platform: uptime
    name: "${esphome_name} - Uptime Sensor"
  - platform: wifi_signal
    name: "${esphome_name} - WiFi Signal"
    update_interval: 60s

font:
  - file: "/config/esphome/Arial.ttf"
    id: my_font
    size: 13

display:
  - platform: ssd1306_i2c
    model: "SSD1306 128x64"
    address: 0x3C
    lambda: |-
      it.setTextColor(0xFFA500);
      it.printf(0, 0, id(my_font), "Temperature: %.2f°C", id(office_temperature).state);
      it.printf(0, 16, id(my_font), "Humidity: %.2f%%", id(office_humidity).state);
      it.printf(0, 32, id(my_font), "Pressure: %.2fhPa", id(outside_pressure).state);

switch:
  - platform: template
    name: "${esphome_name} - Onboard LED"
    id: onboard_led
    turn_on_action:
      - logger.log: "LED Ligado"
    turn_off_action:
      - logger.log: "LED Desligado"

Da uma olhada aqui: