Esphome Dallas 1-wire on GPIO-0

Before I started using esphome(yaml) one of my nodes, amongst other things, had a DS18b20 attached to GPIO-0 (D3) with an external pull-up resistor. With ESPHOME the config errors out because that pin doesn’t support internal pull-up (which I don’t need it to).

Is there a way to compile and upload without verifying the configuration or can we add a tag in the yaml config for ignoring the pull-up requirement?

-Josh

@OttoWinter is this possible?

With the latest update 1.12.1, it compiles with the following in the yaml however, after uploading, the node fails to connect to hassio and the command line debug cannot connect either. It DOES however start the OTA service so to get back on line I can comment out the code below and it functions as usual (without the temperature reading of course).

dallas:
  - pin: D3

This id on a Wemos D2 Mini Pro board and is specified as such in the yaml:

esphome:
  name: garage_door
  platform: ESP8266
  board: d1_mini_pro

-Josh