Compare commits
No commits in common. "392e8508d3abf8b0e4cf06b79d80c973072e881c" and "db6a6e9e3019509f40443e32d8c771c7e86c4325" have entirely different histories.
392e8508d3
...
db6a6e9e30
@ -1 +1 @@
|
|||||||
2024.1.4
|
2024.1.3
|
2
.gitignore
vendored
2
.gitignore
vendored
@ -11,4 +11,4 @@ media/
|
|||||||
home-assistant.log*
|
home-assistant.log*
|
||||||
.storage/
|
.storage/
|
||||||
zigbee.db*
|
zigbee.db*
|
||||||
*__pycache__*
|
|
||||||
|
@ -427,6 +427,10 @@
|
|||||||
- 32d15eec63fe68d5770813d47da53657
|
- 32d15eec63fe68d5770813d47da53657
|
||||||
- 53a27edf581fcf40f3bc8b253b1ee369
|
- 53a27edf581fcf40f3bc8b253b1ee369
|
||||||
data: {}
|
data: {}
|
||||||
|
- type: turn_on
|
||||||
|
device_id: c4ead7f6227e2ee4c43c4b0df829cd84
|
||||||
|
entity_id: 7f7284b11f2bf50ae2f0ebeeb35411c0
|
||||||
|
domain: switch
|
||||||
mode: single
|
mode: single
|
||||||
- id: '1648485179021'
|
- id: '1648485179021'
|
||||||
alias: Schalte den Fernseher mit WoL ein
|
alias: Schalte den Fernseher mit WoL ein
|
||||||
|
Binary file not shown.
Binary file not shown.
BIN
custom_components/picotts_remote/__pycache__/tts.cpython-310.pyc
Normal file
BIN
custom_components/picotts_remote/__pycache__/tts.cpython-310.pyc
Normal file
Binary file not shown.
BIN
custom_components/picotts_remote/__pycache__/tts.cpython-39.pyc
Normal file
BIN
custom_components/picotts_remote/__pycache__/tts.cpython-39.pyc
Normal file
Binary file not shown.
@ -158,11 +158,11 @@ sensor:
|
|||||||
id: humid_outdoor
|
id: humid_outdoor
|
||||||
|
|
||||||
- platform: homeassistant
|
- platform: homeassistant
|
||||||
entity_id: sensor.serverroom_luftdruck
|
entity_id: sensor.luftdruck
|
||||||
id: airpressure
|
id: airpressure
|
||||||
|
|
||||||
- platform: homeassistant
|
- platform: homeassistant
|
||||||
entity_id: sensor.serverroom_serveraum_temperatur
|
entity_id: sensor.serveraum_temperatur
|
||||||
id: temp_serverroom
|
id: temp_serverroom
|
||||||
|
|
||||||
- platform: homeassistant
|
- platform: homeassistant
|
||||||
@ -437,7 +437,7 @@ display:
|
|||||||
it.print(375, 130, id(mdi_small), TextAlign::BASELINE_CENTER, ""); // water percent icon
|
it.print(375, 130, id(mdi_small), TextAlign::BASELINE_CENTER, ""); // water percent icon
|
||||||
it.print(95, 80, id(mdi_small), TextAlign::BASELINE_LEFT, ""); // radioactive icon
|
it.print(95, 80, id(mdi_small), TextAlign::BASELINE_LEFT, ""); // radioactive icon
|
||||||
|
|
||||||
if(outdoor_radiation >= 0) {
|
if(outdoor_radiation > 0 && outdoor_radiation < 100) {
|
||||||
it.printf(200, 80, id(sub_sensor_font), TextAlign::BASELINE_RIGHT, "%2.2f", outdoor_radiation);
|
it.printf(200, 80, id(sub_sensor_font), TextAlign::BASELINE_RIGHT, "%2.2f", outdoor_radiation);
|
||||||
it.print(205, 80, id(sensor_unit), TextAlign::BASELINE_LEFT, "µS/h");
|
it.print(205, 80, id(sensor_unit), TextAlign::BASELINE_LEFT, "µS/h");
|
||||||
}
|
}
|
||||||
|
@ -1,77 +0,0 @@
|
|||||||
substitutions:
|
|
||||||
name: kamera-wohnzimmer
|
|
||||||
friendly_name: Kamera Wohnzimmer
|
|
||||||
|
|
||||||
esphome:
|
|
||||||
name: ${name}
|
|
||||||
friendly_name: ${friendly_name}
|
|
||||||
name_add_mac_suffix: false
|
|
||||||
project:
|
|
||||||
name: sensor.camera
|
|
||||||
version: "1.0"
|
|
||||||
min_version: 2022.1.0
|
|
||||||
|
|
||||||
esp32:
|
|
||||||
board: esp32dev
|
|
||||||
framework:
|
|
||||||
type: arduino
|
|
||||||
|
|
||||||
wifi:
|
|
||||||
ssid: "Voltage-legacy"
|
|
||||||
password: !secret voltage_legacy_psk
|
|
||||||
use_address: ${name}.home
|
|
||||||
power_save_mode: high
|
|
||||||
fast_connect: on
|
|
||||||
|
|
||||||
# Enable fallback hotspot (captive portal) in case wifi connection fails
|
|
||||||
ap:
|
|
||||||
ssid: "Cam Wohnzimmer Fallback Hotspot"
|
|
||||||
password: !secret fallback_psk
|
|
||||||
|
|
||||||
captive_portal:
|
|
||||||
|
|
||||||
# Enable logging
|
|
||||||
logger:
|
|
||||||
|
|
||||||
# Enable Home Assistant API
|
|
||||||
api:
|
|
||||||
encryption:
|
|
||||||
key: !secret apikey
|
|
||||||
|
|
||||||
ota:
|
|
||||||
password: !secret ota
|
|
||||||
|
|
||||||
# Camera
|
|
||||||
esp32_camera:
|
|
||||||
name: ${friendly_name}
|
|
||||||
external_clock:
|
|
||||||
pin: GPIO0
|
|
||||||
frequency: 20MHz
|
|
||||||
i2c_pins:
|
|
||||||
sda: GPIO26
|
|
||||||
scl: GPIO27
|
|
||||||
data_pins: [GPIO5, GPIO18, GPIO19, GPIO21, GPIO36, GPIO39, GPIO34, GPIO35]
|
|
||||||
vsync_pin: GPIO25
|
|
||||||
href_pin: GPIO23
|
|
||||||
pixel_clock_pin: GPIO22
|
|
||||||
power_down_pin: GPIO32
|
|
||||||
resolution: SVGA
|
|
||||||
max_framerate: 24 fps
|
|
||||||
idle_framerate: 0.2 fps
|
|
||||||
jpeg_quality: 30
|
|
||||||
vertical_flip: true
|
|
||||||
horizontal_mirror: true
|
|
||||||
|
|
||||||
# Flash LED
|
|
||||||
output:
|
|
||||||
- platform: ledc
|
|
||||||
pin: GPIO4
|
|
||||||
id: flash
|
|
||||||
channel: 2
|
|
||||||
|
|
||||||
# Define RGB mode for LED
|
|
||||||
light:
|
|
||||||
- platform: monochromatic
|
|
||||||
id: flashlight
|
|
||||||
name: "Blitzlicht"
|
|
||||||
output: flash
|
|
@ -1,20 +1,8 @@
|
|||||||
substitutions:
|
|
||||||
name: "serverroom"
|
|
||||||
friendly_name: "Serverraum Luft"
|
|
||||||
|
|
||||||
esphome:
|
esphome:
|
||||||
name: ${name}
|
name: serverroom
|
||||||
friendly_name: ${friendly_name}
|
friendly_name: "Serverraum Luft"
|
||||||
name_add_mac_suffix: false
|
platform: ESP32
|
||||||
project:
|
board: nodemcu-32s
|
||||||
name: sensor.outdoor
|
|
||||||
version: "0.8"
|
|
||||||
min_version: 2022.1.0
|
|
||||||
|
|
||||||
esp32:
|
|
||||||
board: esp32-c3-devkitm-1
|
|
||||||
framework:
|
|
||||||
type: arduino
|
|
||||||
|
|
||||||
wifi:
|
wifi:
|
||||||
ssid: "Voltage-legacy"
|
ssid: "Voltage-legacy"
|
||||||
@ -35,6 +23,7 @@ logger:
|
|||||||
|
|
||||||
# Enable Home Assistant API
|
# Enable Home Assistant API
|
||||||
api:
|
api:
|
||||||
|
password: !secret api
|
||||||
encryption:
|
encryption:
|
||||||
key: !secret apikey
|
key: !secret apikey
|
||||||
|
|
||||||
@ -44,11 +33,11 @@ ota:
|
|||||||
# Initialize I²C
|
# Initialize I²C
|
||||||
i2c:
|
i2c:
|
||||||
- id: bus_a
|
- id: bus_a
|
||||||
sda: 4
|
sda: 32
|
||||||
scl: 3
|
scl: 25
|
||||||
scan: true
|
scan: true
|
||||||
|
|
||||||
# BMP280 sensor
|
# DHT22 sensor
|
||||||
sensor:
|
sensor:
|
||||||
- platform: bmp280
|
- platform: bmp280
|
||||||
i2c_id: bus_a
|
i2c_id: bus_a
|
||||||
|
Loading…
Reference in New Issue
Block a user