diff --git a/components/pca9536d/__pycache__/__init__.cpython-39.pyc b/components/pca9536d/__pycache__/__init__.cpython-39.pyc deleted file mode 100644 index 3b8ac98..0000000 Binary files a/components/pca9536d/__pycache__/__init__.cpython-39.pyc and /dev/null differ diff --git a/components/st7735/__pycache__/__init__.cpython-36.pyc b/components/st7735/__pycache__/__init__.cpython-36.pyc deleted file mode 100644 index 0a7b1e3..0000000 Binary files a/components/st7735/__pycache__/__init__.cpython-36.pyc and /dev/null differ diff --git a/components/st7735/__pycache__/__init__.cpython-39.pyc b/components/st7735/__pycache__/__init__.cpython-39.pyc deleted file mode 100644 index 18df5d4..0000000 Binary files a/components/st7735/__pycache__/__init__.cpython-39.pyc and /dev/null differ diff --git a/components/st7735/__pycache__/display.cpython-36.pyc b/components/st7735/__pycache__/display.cpython-36.pyc deleted file mode 100644 index 9ca702a..0000000 Binary files a/components/st7735/__pycache__/display.cpython-36.pyc and /dev/null differ diff --git a/components/st7735/__pycache__/display.cpython-39.pyc b/components/st7735/__pycache__/display.cpython-39.pyc deleted file mode 100644 index 18d9a0e..0000000 Binary files a/components/st7735/__pycache__/display.cpython-39.pyc and /dev/null differ diff --git a/custom_components/axp192_disable/__pycache__/__init__.cpython-36.pyc b/custom_components/axp192_disable/__pycache__/__init__.cpython-36.pyc deleted file mode 100644 index 94c6291..0000000 Binary files a/custom_components/axp192_disable/__pycache__/__init__.cpython-36.pyc and /dev/null differ diff --git a/custom_components/axp192_disable/__pycache__/__init__.cpython-39.pyc b/custom_components/axp192_disable/__pycache__/__init__.cpython-39.pyc deleted file mode 100644 index e97b533..0000000 Binary files a/custom_components/axp192_disable/__pycache__/__init__.cpython-39.pyc and /dev/null differ diff --git a/custom_components/axp192_disable/__pycache__/sensor.cpython-36.pyc b/custom_components/axp192_disable/__pycache__/sensor.cpython-36.pyc deleted file mode 100644 index 8be1132..0000000 Binary files a/custom_components/axp192_disable/__pycache__/sensor.cpython-36.pyc and /dev/null differ diff --git a/custom_components/axp192_disable/__pycache__/sensor.cpython-39.pyc b/custom_components/axp192_disable/__pycache__/sensor.cpython-39.pyc deleted file mode 100644 index 2678e53..0000000 Binary files a/custom_components/axp192_disable/__pycache__/sensor.cpython-39.pyc and /dev/null differ diff --git a/custom_components/ili9341_disable/__pycache__/__init__.cpython-39.pyc b/custom_components/ili9341_disable/__pycache__/__init__.cpython-39.pyc deleted file mode 100644 index 80d82d5..0000000 Binary files a/custom_components/ili9341_disable/__pycache__/__init__.cpython-39.pyc and /dev/null differ diff --git a/custom_components/ili9341_disable/__pycache__/display.cpython-39.pyc b/custom_components/ili9341_disable/__pycache__/display.cpython-39.pyc deleted file mode 100644 index fd25c50..0000000 Binary files a/custom_components/ili9341_disable/__pycache__/display.cpython-39.pyc and /dev/null differ diff --git a/mcu-dev-temp.yaml b/mcu-dev-temp.yaml deleted file mode 100644 index 8d1eafa..0000000 --- a/mcu-dev-temp.yaml +++ /dev/null @@ -1,36 +0,0 @@ -substitutions: - device: dev-temp - name: Dev Temp - comment: "DEV" - -esphome: - name: mcu-${device} - comment: ${comment} - -esp32: - board: esp32doit-devkit-v1 - framework: - # type: arduino - type: esp-idf - -external_components: - - source: components - -packages: - common: !include common/common.yaml - -switch: - - platform: gpio - pin: GPIO27 - id: sensor_power - restore_mode: ALWAYS_ON - -one_wire: - - platform: gpio - pin: GPIO25 - -sensor: - - platform: dallas_temp - name: $name Dallas - id: temp - update_interval: 10 s \ No newline at end of file diff --git a/mcu-fireplace-old.yaml b/mcu-fireplace-old.yaml deleted file mode 100644 index 62c8911..0000000 --- a/mcu-fireplace-old.yaml +++ /dev/null @@ -1,48 +0,0 @@ -substitutions: - device: fireplace-old - name: Heating Fireplace - comment: "OBSOLETE | Ground floor, Kitchen: Fireplace monitoring for heating" - -esphome: - name: mcu-${device} - comment: ${comment} - -esp8266: - board: esp01_1m - -# wifi: -# use_address: mcu-fireplace.local - -packages: - common: !include common/common_esp8266.yaml - -one_wire: - - platform: gpio - pin: 4 - -binary_sensor: - - platform: template - name: "${name} Fire" - lambda: |- - if (id(heating_fireplace_temperature).state > 37.5) { - return true; - } else { - return false; - } - -sensor: - - platform: dallas_temp - address: 0x6203168B32A7FF28 - # index: 0 - name: "${name}" - id: 'heating_fireplace_temperature' - - platform: dht - pin: 14 - temperature: - name: "Kitchen Temperature" - id: 'kitchen_temperature' - humidity: - name: "Kitchen Humidity" - id: 'kitchen_humidity' - update_interval: 60s - model: si7021 diff --git a/mcu-irrigation-1.yaml b/mcu-irrigation-1.yaml deleted file mode 100644 index c00f03f..0000000 --- a/mcu-irrigation-1.yaml +++ /dev/null @@ -1,226 +0,0 @@ -substitutions: - device: irrigation-1 - name: Irrigation A - comment: "OBSOLETE | Outside, Well: Irrigation system" - -esphome: - name: mcu-${device} - comment: ${comment} - # on_boot: - # priority: -10 - # then: - # - switch.turn_off: relay_1 - # - delay: 2s - # - switch.turn_off: relay_2 - # - delay: 2s - # - switch.turn_off: relay_3 - # - delay: 2s - # - switch.turn_off: relay_4 - # - delay: 2s - # - switch.turn_off: relay_5 - -esp8266: - board: esp01_1m - -packages: - common: !include common/common_esp8266.yaml - -# api: -# services: -# - service: program_morning -# then: -# - switch.turn_on: relay_1 -# - delay: 10minutes -# - switch.turn_off: relay_1 -# - delay: 1minutes -# - switch.turn_on: relay_2 -# - delay: 10minutes -# - switch.turn_off: relay_2 -# - delay: 1minutes -# - switch.turn_on: relay_3 -# - delay: 5minutes -# # - switch.turn_on: relay_4 -# # - delay: 40minutes -# - switch.turn_off: relay_3 -# - delay: 1minutes -# - switch.turn_on: relay_1 -# - delay: 10minutes -# - switch.turn_off: relay_1 -# - delay: 1minutes -# - switch.turn_on: relay_2 -# - delay: 10minutes -# - switch.turn_off: relay_2 -# - delay: 1minutes -# - switch.turn_on: relay_3 -# - delay: 5minutes -# # - switch.turn_on: relay_4 -# # - delay: 40minutes -# - switch.turn_off: relay_3 -# - service: program_grass -# then: -# - switch.turn_on: relay_1 -# - delay: 5minutes -# - switch.turn_off: relay_1 -# - delay: 1minutes -# - switch.turn_on: relay_2 -# - delay: 5minutes -# - switch.turn_off: relay_2 -# - service: patio -# then: -# - switch.turn_on: relay_5 -# - delay: 30sec -# - switch.turn_off: relay_5 - -i2c: - sda: 3 - scl: 1 - scan: true #false - -# mcp23017: -# - id: 'mcp23017_hub' -# address: 0x20 - -pcf8574: - - id: 'relay_module' - address: 0x20 - pcf8575: false - -# SONOFF 4ch Pro! Not R2! -# GPIO_KEY1, // GPIO00 Button 1 -# GPIO_USER, // GPIO01 Serial RXD and Optional sensor -# GPIO_USER, // GPIO02 Optional sensor -# GPIO_USER, // GPIO03 Serial TXD and Optional sensor -# GPIO_REL3, // GPIO04 Sonoff 4CH Red Led and Relay 3 (0 = Off, 1 = On) -# GPIO_REL2, // GPIO05 Sonoff 4CH Red Led and Relay 2 (0 = Off, 1 = On) -# // GPIO06 (SD_CLK Flash) -# // GPIO07 (SD_DATA0 Flash QIO/DIO/DOUT) -# // GPIO08 (SD_DATA1 Flash QIO/DIO/DOUT) -# GPIO_KEY2, // GPIO09 Button 2 -# GPIO_KEY3, // GPIO10 Button 3 -# // GPIO11 (SD_CMD Flash) -# GPIO_REL1, // GPIO12 Red Led and Relay 1 (0 = Off, 1 = On) -# GPIO_LED1_INV, // GPIO13 Blue Led (0 = On, 1 = Off) - Link and Power status -# GPIO_KEY4, // GPIO14 Button 4 -# GPIO_REL4, // GPIO15 Red Led and Relay 4 (0 = Off, 1 = On) - -# binary_sensor: - # - platform: gpio - # pin: - # number: GPIO0 - # mode: INPUT_PULLUP - # inverted: True - # name: "Irrigation Button A1" - # id: button_1 - # on_press: - # - switch.toggle: relay_1 - # - platform: gpio - # pin: - # number: GPIO9 - # mode: INPUT_PULLUP - # inverted: True - # name: "Irrigation Button A2" - # id: button_2 - # on_press: - # - switch.toggle: relay_2 - # - platform: gpio - # pin: - # number: GPIO10 - # mode: INPUT_PULLUP - # inverted: True - # name: "Irrigation Button A3" - # id: button_3 - # on_press: - # - switch.toggle: relay_3 - # - platform: gpio - # pin: - # number: GPIO14 - # mode: INPUT_PULLUP - # inverted: True - # name: "Irrigation Button A4" - # id: button_4 - # on_press: - # - switch.toggle: relay_4 - -# sensor: - # - platform: dht - # pin: GPIO2 - # temperature: - # name: "Well Shaft Temperature" - # id: 'well_temperature' - # humidity: - # name: "Well Shaft Humidity" - # id: 'well_humidity' - # model: 'DHT22' - # update_interval: 60s - -# switch: -# - platform: gpio -# name: "Irrigation Valve A1" -# pin: GPIO12 -# id: relay_1 -# interlock: &interlock_group [relay_1, relay_2, relay_3, relay_4, relay_5, relay_6, relay_7, relay_8] -# - platform: gpio -# name: "Irrigation Valve A2" -# pin: GPIO5 -# id: relay_2 -# interlock: *interlock_group -# - platform: gpio -# name: "Irrigation Valve A3" -# pin: GPIO4 -# id: relay_3 -# interlock: *interlock_group -# - platform: gpio -# name: "Irrigation Valve A4" -# pin: GPIO15 -# id: relay_4 -# interlock: *interlock_group -# - platform: gpio -# name: "Irrigation Valve A5" -# id: relay_5 -# interlock: *interlock_group -# pin: -# pcf8574: relay_module -# number: 0 -# mode: OUTPUT -# inverted: true -# - platform: gpio -# name: "Irrigation Valve A6" -# id: relay_6 -# interlock: *interlock_group -# pin: -# pcf8574: relay_module -# number: 1 -# mode: OUTPUT -# inverted: true -# - platform: gpio -# name: "Irrigation Valve A7" -# id: relay_7 -# interlock: *interlock_group -# pin: -# pcf8574: relay_module -# number: 2 -# mode: OUTPUT -# inverted: true -# - platform: gpio -# name: "Irrigation Valve A8" -# id: relay_8 -# interlock: *interlock_group -# pin: -# pcf8574: relay_module -# number: 3 -# mode: OUTPUT -# inverted: true - -# output: -# - platform: esp8266_pwm -# id: led_blue -# pin: GPIO13 -# inverted: True - -# light: -# - platform: monochromatic -# name: "Irrigation A Blue LED" -# output: led_blue - -time: - - !include common/time/homeassistant.yaml \ No newline at end of file