donovan6000
donovan6000
M33 Fio isn't compatible with Micro+ or M3D Pro printers.
I don't own or plan on buying a Micro+ printer, so I probably won't add support for it in M33 Fio. [Here's](https://github.com/donovan6000/M33-Fio/issues/236#issuecomment-338368481) a general overview of what needs to be...
@ktrolin The Micro 3D and Micro+ printers use [repetier host protocol](https://github.com/repetier/Repetier-Firmware/blob/master/repetier%20communication%20protocol.txt) to receive G-code commands, so they won't work in OctoPrint by default. It is possible to use the Micro...
iMe will [prevent you from setting the extruder's temperature](https://github.com/donovan6000/iMe/blob/master/main.cpp#L1274) above [285](https://github.com/donovan6000/iMe/blob/master/heater.h#L10) degrees Celsius. It will also [turn off the fan, led, heater, and motors after 10 minutes of inactivity](https://github.com/donovan6000/iMe/blob/master/main.cpp#L227-L234). The...
Ok, then I agree that iMe should be in the list if insecure firmwares. Can you provide this M115 response to foosel so that she can add it to the...
What do you think is a good way to detect thermal runaway? It seems like detecting this on the Micro 3D printer is kinda tricky since the printer's heating element...
Can you send me the G-code file that you were printing when this happened. And can you also send me your printer's settings. You can get the settings by clicking...
For some reason the Mir display library that Ubuntu 17.10 comes with doesn't like that I statically linked some libraries. If you remove the `-static-libgcc -static-libstdc++` in [M33 Manager's Makefile](https://github.com/donovan6000/iMe/blob/master/M33%20Manager/Makefile#L87)...
iMe doesn't have the M400 command implemented, and that's what's causing the problem.. It used to not send that command back when we were testing iMe with MatterControl, so it...
iMe will always finish the command that it's currently processing before running the next command, so sending an M400 command to it wont change it's behaviour. I added support for...