You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.0 KiB
32 lines
1.0 KiB
# Configure the variables below that will be used in the script
|
|
$HAToken = "<Insert token>" # Example: eyJ0eXAiOiJKV1...
|
|
$UserName = "<UserName>" # When not sure, open a command prompt and type: echo %USERNAME%
|
|
$HAUrl = "<HAUrl>" # Example: https://yourha.duckdns.org
|
|
|
|
# Set language variables below
|
|
$lgAvailable = "Available"
|
|
$lgBusy = "Busy"
|
|
$lgOnThePhone = "On the phone"
|
|
$lgAway = "Away"
|
|
$lgBeRightBack = "Be right back"
|
|
$lgDoNotDisturb = "Do not disturb"
|
|
$lgPresenting = "Presenting"
|
|
$lgFocusing = "Focusing"
|
|
$lgInAMeeting = "In a meeting"
|
|
$lgOffline = "Offline"
|
|
$lgNotInACall = "Not in a call"
|
|
$lgInACall = "In a call"
|
|
|
|
# Set icons to use for call activity
|
|
$iconInACall = "mdi:phone-in-talk-outline"
|
|
$iconNotInACall = "mdi:phone-off"
|
|
$iconMonitoring = "mdi:api"
|
|
|
|
# Set entities to post to
|
|
$entityStatus = "sensor.teams_status"
|
|
$entityStatusName = "Microsoft Teams status"
|
|
$entityActivity = "sensor.teams_activity"
|
|
$entityActivityName = "Microsoft Teams activity"
|
|
$entityHeartbeat = "binary_sensor.teams_monitoring"
|
|
$entityHeartbeatName = "Microsoft Teams monitoring"
|