我一直试图让我的 Raspberry Pi 3 服务器通过Epiphany
通过Chromium
或PHP
打开网站。
此 Pi 充当闹钟,当闹钟响起时,它将播放webstream
上的音乐。
我知道脚本是必要的,因为简单地写exec('epiphany www.examplewebsite.com');
将不会做任何事情。
所以我的问题是,解决这个问题最聪明,最简单的方法是什么?
?php
$hour = $_GET["hour"];
$mins = $_GET["mins"];
// this basically controls GPIO pins but I want it to open a Website or do other stuff
//exec('echo "'.$mins.' '.$hour.' * * * sudo gpio -g write 18 1; sudo /home/pi/raspberry-remote/./send 11010 1 1" | crontab -'); ?>