This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
blueprint: | |
name: Send a camera snapshot when OctoPrint Printer is Finsihed | |
description: > | |
This automation blueprint creates a camera snapshot if OctoPrint Status turns off | |
and sends a notification to your phone with the picture. | |
domain: automation | |
input: | |
printer: | |
name: 3D Printer | |
description: The Printer Device to monitor |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
########### Main Dashboard ############### | |
- badges: [] | |
cards: | |
- cards: | |
- content: | | |
{% if now().month in (1,) %} | |
## January {{ now().day -}} , | |
{% elif now().month in (2,) %} | |
## February {{ now().day -}}, | |
{% elif now().month in (3,) %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<script src="https://unpkg.com/btca-client/lib/btca.min.js"></script> | |
<script type="module" src="app.js"></script> | |
</head> | |
<body></body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
2020 Vinyl Development, LLC d/b/a Zudy | |
@author Zack Arnett <[email protected]> | |
*/ | |
import config from "./config.js"; | |
var BTCA = new BTCAClient({ | |
handle: "VINYL_REQUEST_LAUNCHER", | |
cache: true, |
NewerOlder