We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 152485d commit dd41644Copy full SHA for dd41644
content/components/wifi.md
@@ -472,6 +472,22 @@ on_...:
472
473
The lambda equivalent for this is `!id(wifi_id).is_disabled()`.
474
475
+{{< anchor "wifi-ap-active_condition" >}}
476
+
477
+### `wifi.ap_active` Condition
478
479
+This [Condition](/automations/actions#all-conditions) checks if WiFi AP is currently active or not.
480
481
+```yaml
482
+on_...:
483
+ - if:
484
+ condition: wifi.ap_active
485
+ then:
486
+ - logger.log: WiFi AP is active!
487
+```
488
489
+The lambda equivalent for this is `id(wifi_id).is_ap_active()`.
490
491
## See Also
492
493
- {{< docref "captive_portal/" >}}
0 commit comments