Entropy Reduction

Personal log of yet another digital native.


Project maintained by andre-abadi Hosted on GitHub Pages — Theme by mattgraham

Purpose

Reference

Actions

Pictures

garage-camera

Code

# https://www.esphome-devices.com/devices/ESP32-CAM
esp32_camera:
  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
  # image quality settings
  # https://sequr.be/blog/2021/03/home-automation-esp32-cam-and-esphome/
  #
  resolution: 800x600
  name: "${friendly_name}"
  max_framerate: 5 fps
  idle_framerate: 0.2fps
  jpeg_quality: 10
  vertical_flip: false
  horizontal_mirror: false

Observations