github.com/e154/smart-home@v0.17.2-0.20240311175135-e530a6e5cd45/doc/content/en/docs/dashboard/automation/actions.md (about) 1 2 --- 3 title: "Actions" 4 linkTitle: "Actions" 5 date: 2021-10-20 6 description: > 7 8 --- 9 10 {{< figure src="/smart-home/actions_window1.png" >}} 11 12 13 14 15 16 Actions define the tasks that need to be performed when the scenario is executed. This can include changing the state of devices, sending commands to other devices, executing an HTTP request, sending notifications, and other actions. 17 18 Example implementation of an action handler: 19 ```coffeescript 20 automationAction = (entityId)-> 21 EntityCallAction(entityId, 'ON', {}) 22 ```