* Add support to incomming SMS via polling * Update dependencies * Only send notification for unread messages * Only inform if callback is not getting used * Update gateway.py * Apply PR feedback * Update homeassistant/components/sms/gateway.py Co-authored-by: Martin Hjelmare <marhje52@gmail.com> * Apply PR comments * Make black happy Co-authored-by: Martin Hjelmare <marhje52@gmail.com>
5 lines
107 B
Python
5 lines
107 B
Python
"""Constants for sms Component."""
|
|
|
|
DOMAIN = "sms"
|
|
SMS_GATEWAY = "SMS_GATEWAY"
|
|
SMS_STATE_UNREAD = "UnRead"
|