Skip to content

Commit

Permalink
Add new codeowners (esphome#1335)
Browse files Browse the repository at this point in the history
* Add codeowner for tmp102

* Add codeowner for mcp9808
  • Loading branch information
jesserockz authored Oct 27, 2020
1 parent 59cdc32 commit 22e1758
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ esphome/components/json/* @OttoWinter
esphome/components/ledc/* @OttoWinter
esphome/components/light/* @esphome/core
esphome/components/logger/* @esphome/core
esphome/components/mcp9808/* @k7hpn
esphome/components/network/* @esphome/core
esphome/components/ota/* @esphome/core
esphome/components/output/* @esphome/core
Expand All @@ -59,6 +60,7 @@ esphome/components/switch/* @esphome/core
esphome/components/tcl112/* @glmnet
esphome/components/time/* @OttoWinter
esphome/components/tm1637/* @glmnet
esphome/components/tmp102/* @timsavage
esphome/components/tuya/binary_sensor/* @jesserockz
esphome/components/tuya/climate/* @jesserockz
esphome/components/tuya/sensor/* @jesserockz
Expand Down
1 change: 1 addition & 0 deletions esphome/components/mcp9808/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from esphome.components import i2c, sensor
from esphome.const import CONF_ID, ICON_THERMOMETER, UNIT_CELSIUS

CODEOWNERS = ['@k7hpn']
DEPENDENCIES = ['i2c']

mcp9808_ns = cg.esphome_ns.namespace('mcp9808')
Expand Down
1 change: 1 addition & 0 deletions esphome/components/tmp102/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
from esphome.components import i2c, sensor
from esphome.const import CONF_ID, UNIT_CELSIUS, ICON_THERMOMETER

CODEOWNERS = ['@timsavage']
DEPENDENCIES = ['i2c']

tmp102_ns = cg.esphome_ns.namespace('tmp102')
Expand Down

0 comments on commit 22e1758

Please sign in to comment.