├── Connect_screen_s2m_connected.png ├── LICENSE ├── README.md ├── SerialMoonrakerBridge ├── SerialMoonrakerBridge.py ├── app.py ├── static │ └── css │ │ └── style.css └── templates │ ├── base.html │ ├── connected.html │ └── disconnected.html ├── doc_images ├── Connect_screen_s2m.png ├── Connect_screen_s2m_connected.png ├── Connect_screen_s2m_connected_clear.png ├── RPiZero2WLayout_803x442.webp └── dietpi_download.png ├── serial_moonraker_bridge.service └── tools └── serial_moonraker_bridge ├── README.md ├── RemotePrint.gcode ├── SerialConnect.png ├── StartMacro.png ├── install_macro.sh ├── serial_moonraker_bridge.cfg ├── serial_moonraker_bridge.py └── start_serial_moonraker_bridge.sh /Connect_screen_s2m_connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shishu94/Klipperotchy/HEAD/Connect_screen_s2m_connected.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shishu94/Klipperotchy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shishu94/Klipperotchy/HEAD/README.md -------------------------------------------------------------------------------- /SerialMoonrakerBridge/SerialMoonrakerBridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shishu94/Klipperotchy/HEAD/SerialMoonrakerBridge/SerialMoonrakerBridge.py -------------------------------------------------------------------------------- /SerialMoonrakerBridge/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shishu94/Klipperotchy/HEAD/SerialMoonrakerBridge/app.py -------------------------------------------------------------------------------- /SerialMoonrakerBridge/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shishu94/Klipperotchy/HEAD/SerialMoonrakerBridge/static/css/style.css -------------------------------------------------------------------------------- /SerialMoonrakerBridge/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shishu94/Klipperotchy/HEAD/SerialMoonrakerBridge/templates/base.html -------------------------------------------------------------------------------- /SerialMoonrakerBridge/templates/connected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shishu94/Klipperotchy/HEAD/SerialMoonrakerBridge/templates/connected.html -------------------------------------------------------------------------------- /SerialMoonrakerBridge/templates/disconnected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shishu94/Klipperotchy/HEAD/SerialMoonrakerBridge/templates/disconnected.html -------------------------------------------------------------------------------- /doc_images/Connect_screen_s2m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shishu94/Klipperotchy/HEAD/doc_images/Connect_screen_s2m.png -------------------------------------------------------------------------------- /doc_images/Connect_screen_s2m_connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shishu94/Klipperotchy/HEAD/doc_images/Connect_screen_s2m_connected.png -------------------------------------------------------------------------------- /doc_images/Connect_screen_s2m_connected_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shishu94/Klipperotchy/HEAD/doc_images/Connect_screen_s2m_connected_clear.png -------------------------------------------------------------------------------- /doc_images/RPiZero2WLayout_803x442.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shishu94/Klipperotchy/HEAD/doc_images/RPiZero2WLayout_803x442.webp -------------------------------------------------------------------------------- /doc_images/dietpi_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shishu94/Klipperotchy/HEAD/doc_images/dietpi_download.png -------------------------------------------------------------------------------- /serial_moonraker_bridge.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shishu94/Klipperotchy/HEAD/serial_moonraker_bridge.service -------------------------------------------------------------------------------- /tools/serial_moonraker_bridge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shishu94/Klipperotchy/HEAD/tools/serial_moonraker_bridge/README.md -------------------------------------------------------------------------------- /tools/serial_moonraker_bridge/RemotePrint.gcode: -------------------------------------------------------------------------------- 1 | PAUSE 2 | END_PRINT 3 | -------------------------------------------------------------------------------- /tools/serial_moonraker_bridge/SerialConnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shishu94/Klipperotchy/HEAD/tools/serial_moonraker_bridge/SerialConnect.png -------------------------------------------------------------------------------- /tools/serial_moonraker_bridge/StartMacro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shishu94/Klipperotchy/HEAD/tools/serial_moonraker_bridge/StartMacro.png -------------------------------------------------------------------------------- /tools/serial_moonraker_bridge/install_macro.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shishu94/Klipperotchy/HEAD/tools/serial_moonraker_bridge/install_macro.sh -------------------------------------------------------------------------------- /tools/serial_moonraker_bridge/serial_moonraker_bridge.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shishu94/Klipperotchy/HEAD/tools/serial_moonraker_bridge/serial_moonraker_bridge.cfg -------------------------------------------------------------------------------- /tools/serial_moonraker_bridge/serial_moonraker_bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shishu94/Klipperotchy/HEAD/tools/serial_moonraker_bridge/serial_moonraker_bridge.py -------------------------------------------------------------------------------- /tools/serial_moonraker_bridge/start_serial_moonraker_bridge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shishu94/Klipperotchy/HEAD/tools/serial_moonraker_bridge/start_serial_moonraker_bridge.sh --------------------------------------------------------------------------------