mirror of
https://github.com/paradizelost/Linux-Scripts.git
synced 2024-11-24 18:34:45 -06:00
58e8601d4c
Moved mac lookups to python and google sheet tab added additional button actions added tracking for sleep time on multiple buttons, feedings on multiple buttons, and dirty vs wet diapers.
8 lines
228 B
Python
8 lines
228 B
Python
#!/usr/bin/python
|
|
from __future__ import print_function
|
|
import time
|
|
import pychromecast
|
|
home=pychromecast.Chromecast('192.168.1.103')
|
|
home.media_controller.play_media("http://192.168.1.14/doorbell.mp3",'audio/mpeg')
|
|
home.wait()
|