3D_Le
About
- Username
- 3D_Le
- Joined
- Visits
- 4
- Last Active
- Roles
- Member
Comments
-
Right after connecting to the extruder, the log shows 'busy: processing'. I always get this, regardless of whether I send signals or not. For the log, see below. I suspect something might be wrong with the buffers, but I couldn't find anything. I'v…
-
thanks again for the fast reply. Yes, ive already definde pin 28 in setup as input. I've tried a program that counted incoming signals, and everything worked fine there. So, TriggerState = digitalRead(28); is working, but I'll give it a try the way…
-
The code above got a bit messy in terms of formatting, so here it is again. void Commands::commandLoop() { TriggerState = digitalRead(28); delay (5); // while(true) {#ifdef DEBUG_PRINT debugWaitLoop = 1;#endif Printer::breakLongComma…
-
Thanks for the quick answer. The G-Code im sending via Repetier Host looks like this: M104 S200 ;Set temperature M109 S200 G28 ;Home all axis or named axis. M82 ;use absolute distance for extrusion G90 ;Use absolute coordinates G92 E0 …