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
[{"id":"defa50dd.ba16d","type":"subflow","name":"Dimmer","info":"**On**\n\nKnap ID for at tænde (f.eks. 3 for knap 3002)\n\n**Off**\n\nKnap ID for at slukke (f.eks. 3 for knap 3002)\n\n**Up**\n\nKnap ID for at påbegynde skrue op for lysstyrken (f.eks. 3 for knap 3001)\n\n**Up_Stop**\n\nKnap ID for at stoppe skrue op for lysstyrken (f.eks. 3 for knap 3003)\n\n**Down**\n\nKnap ID for at påbegynde skrue ned for lysstyrken (f.eks. 3 for knap 3001)\n\n**Down_Stop**\n\nKnap ID for at stoppe skrue ned for lysstyrken (f.eks. 3 for knap 3003)\n\n**Step**\n\nAntal steps for hver gang der skrues op og ned\n\n**Entity_id**\n\nEntity ID\n","category":"","in":[{"x":50,"y":30,"wires":[{"id":"df1e841b.354bb8"}]}],"out":[],"env":[{"name":"On","type":"str","value":""},{"name":"Off","type":"str","value":""},{"name":"Up","type":"str","value":""},{"name":"Up_Stop","type":"str","value":""},{"name":"Down","type":"str","value":""},{"name":"Down_Stop","type":"str","value":""},{"name":"Step","type":"num","value":"10"},{"name":"Entity_ |
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
#!/usr/bin/env python | |
""" | |
Gcode cleaner to work around prusa slic3r annoyances for multi-filament | |
single-tool printing on non-Prusa printers. | |
This gist can be found here: | |
* https://gist.github.com/ex-nerd/22d0a9796f4f5df7080f9ac5a07a381f | |
Bugs this attempts to work around: | |
* https://github.com/prusa3d/Slic3r/issues/557 |
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
import asyncio | |
import pyworxcloud | |
import time | |
from sys import exit | |
from pprint import pprint | |
EMAIL = "MY@EMAIL" | |
PASS = "P455w0rd-H3r3" |