RAyWB
About
- Username
- RAyWB
- Joined
- Visits
- 2,123
- Last Active
- Roles
- Member
Comments
-
refer https://docfirmwarev2.repetier.com/config/pins 5 is oversampling rate, not pin number
-
https://www.repetier-server.com/version-comparison/ steht direkt unterm Preis ;-) Du kannst mit einer Lizenz 5 Pi´s betreiben
-
what´s your firmware setting for uart3?do you use the bluetooth setting?
-
why don´t you use serial2 or serial3 for your display?as i guess you have communication to repetier host via esp3d on serial one so you can use serial2 or 3 for your display.seems you don´t use native usb and programming port. simply add #define RFS…
-
RX0 TX0 is occupied by Programming port, that´s the reason.
-
Raspberry is well known for power sensitivity.1st as power sensitive itself2nd limited usb output power. you can solve the problem by external powered usb hub or by cutting respectively masking the +5V connectionin usb connection cable so the printe…
-
https://www.tomshardware.com/how-to/boot-raspberry-pi-4-usb
-
arduino seems to be different to platformio version. in the platformio version it is as i wrote above . I'm running on win10
-
pi phongshader said: I don't see a pin 4 in variants.h, that is the pin defined in the delta rumba32 bltouch example: IO_OUTPUT(Servo1Pin, 4) see C:\Users\yourusername\.platformio\packages\framework-arduinoststm32\variants\RUMBA32_F446VE …
-
its defined in variants.h #define PA3 3 //D3#define PA4 4 //D4#define PA5 5 //D5#define PA6 6 //D6#define PA7 7 //D7 etc.
-
-1 Das Licht kannst Du mit blossem Auge nicht sehen , normalerweise kannst Du das aber über die Handykamera sichtbar machen, die sind in der regel IR-empfindlich.-2 soweit ich das gelesen habe ist das IR-Sperrfilter herausnehmbar und das muss für…
-
following the changelog : Version 0.60 07-04-2012 https://github.com/repetier/Repetier-Firmware/tree/41393cd6c07b5fce690aeaeaf2aec330f17033eb
-
Guess your endstop wiring is not correct.if it´s mechanical endstops , normally open connected with two wires you have to connect 1 wire to S(Signal),the other one to GND. +5V is not connected in this case.
-
Blank is added automatically
-
Go to due/boards/ultratronics.h line 131 // Ultronics has no eeprom for storing changeable data // as a solution you can use sd card. But this requires always // the same sd card when powering up the printer //#define EEPROM_AVAILABLE EEPROM_NONE #…
-
see here:https://all3dp.com/2/extruder-calibration-6-easy-steps-2/
-
schau mal ob sich der USB-Port geändert hat (macht windows ganz gerne)oder die baudrate nicht mehr übereinstimmt.
-
as i´m busy for the next 2days i´ll try your config on january 2nd.best wishes for 2020 !
-
from your log before :endstops hit: x_min:L y_max:L z_max:H a_max:Hseems that z endstop and a endstop don´t untrigger, so check that values( in configuration.h): #define ENDSTOP_X_BACK_MOVE 3 #define ENDSTOP_Y_BACK_MOVE 3 #define ENDSTOP_Z_BACK_MOVE…
-
from my setup configuration_io.h : ENDSTOP_SWITCH_HW(endstopZMin, IOEndstopZMin, Z_AXIS, false) has to be defined and in configuration.h there should be // Define ZProbe by referencing a endstop defined CONFIG_VARIABLE_EQ(EndstopDriver, *ZProbe,…
-
you have to adjust it in configuration_io.h , extruder is handled as tool search for TOOL_EXTRUDER // TOOL_EXTRUDER(name, offx, offy, offz, heater, stepper, resolution, yank, maxSpeed, acceleration, advance, startScript, endScript) (resolution…
-
*deleted* wrong comment
-
Host sends relative moves for extruder (in the case you use the extrusion buttons), so the sequence looks like: G91G1 E10G90 you also can do it by G92 E0G1 E10 if you just send G1 E10 you dont know Extruder position and in best case it works once , …
-
zum thema Stromunterbrechung/ausfall : https://www.raspberrypi.org/forums/viewtopic.php?t=219032
-
if you mean repetier host , it´s not a minus sign but simply a hyphen followed by a space.
-
no, seems like sensor is defect : > 8:05:26.990: T:203.90 /233 B:100.00 /100 B@:128 @:255> 8:05:29.112: T:-444.00 /0 B:100.03 /0 B@:0 @:0 D0:2 watch T : 8:05:29.112: T:-444.00 should show a valid temperature
-
TMC library is already integrated in V2 :-)Refer Manual to use V2https://docfirmwarev2.repetier.com/ to compile you need to install Visual Studio Code and PlatformIO
-
The ones i have are around 20mA@5V
-
simple way to drive the 3.3-> 5V stuff is using 74HCT541, it can handle up to 35mA per Output , no further parts except a decoupling capacitor for powersupply necessary.Thats what i use for my tb6600 drivers
-
seems a strange setup....in Laser Mode laser is enabled with M3 command and disabled with M5 command.Laser is then on during G1 moves and off during G0 Moves or without move. Using M42 to control laser is absolute nogo from safety side.... sweeper …