This file contains 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
# -*- coding: utf-8 -*- | |
from __future__ import absolute_import, unicode_literals | |
import re | |
import octoprint.plugin | |
TIME_REMAINING_THRESHOLD = 2 # mins | |
COOLDOWN_COMMAND = "M140 S0" | |
M73_R_REGEX = re.compile(r"R(\d*)") |
This file contains 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
// Agent Code | |
function getForm(msg){ | |
local effects = ["glow","random","looper","larson","awaiting command"]; | |
// HTML output | |
local returnValue = @"<!DOCTYPE html> | |
<html> | |
<head> | |
<title>RGB Tail Light Show</title> |