-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
22 lines (18 loc) · 834 Bytes
/
.env.example
File metadata and controls
22 lines (18 loc) · 834 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Tapo Chatter Configuration Example
# Copy this file to .env and update with your values
# Required Authentication (always required)
TAPO_USERNAME="your_tapo_email@example.com"
TAPO_PASSWORD="your_tapo_password"
# Single Device Mode Configuration
# Required when using monitor-one or probe-one modes
# Example: Your H100 Hub's IP address
TAPO_IP_ADDRESS="192.168.1.?"
# Multi-Device Mode Configuration
# Required when using monitor-all or probe-all modes
# You can specify IP ranges in several formats:
# - Single IP: "192.168.1.100"
# - IP range: "192.168.1.100-192.168.1.110"
# - CIDR notation: "192.168.1.0/24"
# - Comma-separated combination: "192.168.1.100,192.168.1.200-192.168.1.210,192.168.1.0/24"
TAPO_IP_RANGE="192.168.1.?-192.168.1.?"
# --------------------------------------------------------------------------------