In this video we will go over how to add Google Home to Samsung SmartThings as smart devices so that SmartThings can actually make Google Speak. Setting up this capability is a big game changer for your home automation rules, and can really add another dimension to SmartThings. This video will go over what needs to be done in order to use cast-web-api in the Samsung SmartThings NEW App.
Starting cast-web-api on boot:
You can use any of your favorite options to have programs start on boot for raspberry pi. To get cast-web-api to run on bootup I used systemd. There is a startup command you can run for cast-web-api but I was not able to get it to work.
You can use the below service file if you would like to use systemd:
[Unit]
Description=Start cast-web-api
After=network.target
[Service]
Type=forking
ExecStart=/usr/bin/cast-web-api-cli start
ExecStop=/usr/bin/cast-web-api-cli stop
[Install]
WantedBy=multi-user.target
A great resource on using systemd on raspberry pi can be found here
cast-web-api resources:
- Main page: https://vervallsweg.github.io/cast-web/
- Instillation instructions: https://vervallsweg.github.io/cast-web/installation/
- How to update cast-web-api: https://vervallsweg.github.io/cast-web/updating/
- Help: https://vervallsweg.github.io/cast-web/help/
- How to support the creator: https://vervallsweg.github.io/cast-web/donate/
- Preset information: https://vervallsweg.github.io/smartthings/cast-web-preset-generator/preset-generator.html
Nice post. I learn something new and challenging on sites I stumbleupon everyday.
Yes! Finally someone writes about how to setup cast-web-api!