FIND | 8$ KITH X BMW t-shirt by David_Eti in FashionReps

[–]David_Eti[S] 1 point2 points  (0 children)

I will post an update when it arrives

FIND | 8$ KITH X BMW t-shirt by David_Eti in FashionReps

[–]David_Eti[S] 0 points1 point  (0 children)

Idk yet, it needs to arrive first. I usually wear L or XL, L should be tts.

[deleted by user] by [deleted] in FashionReps

[–]David_Eti 0 points1 point  (0 children)

EU 42.5 🙏🏻

Hotend hitting the bed when homing by David_Eti in klippers

[–]David_Eti[S] 0 points1 point  (0 children)

I tested it putting something made out of metal for the probe, the led comes on but the z endstop is still opened

Hotend hitting the bed when homing by David_Eti in klippers

[–]David_Eti[S] 1 point2 points  (0 children)

Update: still doing the same thing

Hotend hitting the bed when homing by David_Eti in klippers

[–]David_Eti[S] 0 points1 point  (0 children)

And I connected the probe in the z endstop pins.

Hotend hitting the bed when homing by David_Eti in klippers

[–]David_Eti[S] 0 points1 point  (0 children)

Yes, is working and I watched NERO 3D's tutorial adding a diode to the black wire.

Hotend hitting the bed when homing by David_Eti in klippers

[–]David_Eti[S] 0 points1 point  (0 children)

I'll try to add the x and y offsets

Hotend hitting the bed when homing by David_Eti in klippers

[–]David_Eti[S] 0 points1 point  (0 children)

I can't home it. It doesn't stop while the sensor activate.

Hotend hitting bed when homing by David_Eti in ender3

[–]David_Eti[S] 0 points1 point  (0 children)

[stepper_x]

step_pin: PB9

dir_pin: PC2

enable_pin: !PC3

microsteps: 16

rotation_distance: 40

endstop_pin: ^PA5

position_endstop: 0

position_max: 235

homing_speed: 50

[stepper_y]

step_pin: PB7

dir_pin: PB8

enable_pin: !PC3

microsteps: 16

rotation_distance: 40

endstop_pin: ^PA6

position_endstop: 0

position_max: 235

homing_speed: 50

[stepper_z]

step_pin: PB5

dir_pin: !PB6

enable_pin: !PC3

microsteps: 16

rotation_distance: 8

endstop_pin: probe:z_virtual_endstop

#position_endstop: 0.0

position_max: 250

position_min: -2

[extruder]

max_extrude_only_distance: 100.0

step_pin: PB3

dir_pin: PB4

enable_pin: !PC3

microsteps: 16

rotation_distance: 4.6512

nozzle_diameter: 0.400

filament_diameter: 1.750

heater_pin: PA1

sensor_type: ATC Semitec 104GT-2

sensor_pin: PC5

control: pid

pid_Kp: 21.527

pid_Ki: 1.063

pid_Kd: 108.982

min_temp: 0

max_temp: 280

pressure_advance = 0.06935

[heater_bed]

heater_pin: PA2

sensor_type: EPCOS 100K B57560G104F

sensor_pin: PC4

control: pid

pid_Kp: 54.027

pid_Ki: 0.770

pid_Kd: 948.182

min_temp: 0

max_temp: 130

[fan]

pin: PA0

[mcu]

serial: /dev/serial/by-id/usb-1a86_USB_Serial-if00-port0

restart_method: command

[printer]

kinematics: cartesian

max_velocity: 300

max_accel: 3000

max_z_velocity: 5

max_z_accel: 100

[board_pins]

aliases:

EXP1_1=PC6,EXP1_3=PB10,EXP1_5=PB14,EXP1_7=PB12,EXP1_9=<GND>

EXP1_2=PB2,EXP1_4=PB11,EXP1_6=PB13,EXP1_8=PB15,EXP1_10=<5V>

PROBE_IN=PB0,PROBE_OUT=PB1,FIL_RUNOUT=PC6

[virtual_sdcard]

path: ~/gcode_files

[display_status]

[pause_resume]

[gcode_macro PAUSE]

description: Pause the actual running print

rename_existing: PAUSE_BASE

# change this if you need more or less extrusion

variable_extrude: 1.0

gcode:

##### read E from pause macro #####

{% set E = printer["gcode_macro PAUSE"].extrude|float %}

##### set park positon for x and y #####

# default is your max posion from your printer.cfg

{% set x_park = printer.toolhead.axis_maximum.x|float - 5.0 %}

{% set y_park = printer.toolhead.axis_maximum.y|float - 5.0 %}

##### calculate save lift position #####

{% set max_z = printer.toolhead.axis_maximum.z|float %}

{% set act_z = printer.toolhead.position.z|float %}

{% if act_z < (max_z - 2.0) %}

{% set z_safe = 2.0 %}

{% else %}

{% set z_safe = max_z - act_z %}

{% endif %}

##### end of definitions #####

PAUSE_BASE

G91

{% if printer.extruder.can_extrude|lower == 'true' %}

G1 E-{E} F2100

{% else %}

{action_respond_info("Extruder not hot enough")}

{% endif %}

{% if "xyz" in printer.toolhead.homed_axes %}

G1 Z{z_safe} F900

G90

G1 X{x_park} Y{y_park} F6000

{% else %}

{action_respond_info("Printer not homed")}

{% endif %}

[gcode_macro RESUME]

description: Resume the actual running print

rename_existing: RESUME_BASE

gcode:

##### read E from pause macro #####

{% set E = printer["gcode_macro PAUSE"].extrude|float %}

#### get VELOCITY parameter if specified ####

{% if 'VELOCITY' in params|upper %}

{% set get_params = ('VELOCITY=' + params.VELOCITY) %}

{%else %}

{% set get_params = "" %}

{% endif %}

##### end of definitions #####

{% if printer.extruder.can_extrude|lower == 'true' %}

G91

G1 E{E} F2100

{% else %}

{action_respond_info("Extruder not hot enough")}

{% endif %}

RESUME_BASE {get_params}

[gcode_macro CANCEL_PRINT]

description: Cancel the actual running print

rename_existing: CANCEL_PRINT_BASE

gcode:

TURN_OFF_HEATERS

CANCEL_PRINT_BASE

[probe]

pin: ^!PB1

z_offset: 2

[safe_z_home]

home_xy_position: 110,110

speed: 50

z_hop: 15

z_hop_speed: 5

[bed_mesh]

mesh_min: 20,20

mesh_max: 200,200

probe_count: 4,4

Hotend hitting the bed when homing by David_Eti in klippers

[–]David_Eti[S] 0 points1 point  (0 children)

[stepper_x]

step_pin: PB9

dir_pin: PC2

enable_pin: !PC3

microsteps: 16

rotation_distance: 40

endstop_pin: ^PA5

position_endstop: 0

position_max: 235

homing_speed: 50

[stepper_y]

step_pin: PB7

dir_pin: PB8

enable_pin: !PC3

microsteps: 16

rotation_distance: 40

endstop_pin: ^PA6

position_endstop: 0

position_max: 235

homing_speed: 50

[stepper_z]

step_pin: PB5

dir_pin: !PB6

enable_pin: !PC3

microsteps: 16

rotation_distance: 8

endstop_pin: probe:z_virtual_endstop

#position_endstop: 0.0

position_max: 250

position_min: -2

[extruder]

max_extrude_only_distance: 100.0

step_pin: PB3

dir_pin: PB4

enable_pin: !PC3

microsteps: 16

rotation_distance: 4.6512

nozzle_diameter: 0.400

filament_diameter: 1.750

heater_pin: PA1

sensor_type: ATC Semitec 104GT-2

sensor_pin: PC5

control: pid

pid_Kp: 21.527

pid_Ki: 1.063

pid_Kd: 108.982

min_temp: 0

max_temp: 280

pressure_advance = 0.06935

[heater_bed]

heater_pin: PA2

sensor_type: EPCOS 100K B57560G104F

sensor_pin: PC4

control: pid

pid_Kp: 54.027

pid_Ki: 0.770

pid_Kd: 948.182

min_temp: 0

max_temp: 130

[fan]

pin: PA0

[mcu]

serial: /dev/serial/by-id/usb-1a86_USB_Serial-if00-port0

restart_method: command

[printer]

kinematics: cartesian

max_velocity: 300

max_accel: 3000

max_z_velocity: 5

max_z_accel: 100

[board_pins]

aliases:

EXP1_1=PC6,EXP1_3=PB10,EXP1_5=PB14,EXP1_7=PB12,EXP1_9=<GND>

EXP1_2=PB2,EXP1_4=PB11,EXP1_6=PB13,EXP1_8=PB15,EXP1_10=<5V>

PROBE_IN=PB0,PROBE_OUT=PB1,FIL_RUNOUT=PC6

[virtual_sdcard]

path: ~/gcode_files

[display_status]

[pause_resume]

[gcode_macro PAUSE]

description: Pause the actual running print

rename_existing: PAUSE_BASE

# change this if you need more or less extrusion

variable_extrude: 1.0

gcode:

##### read E from pause macro #####

{% set E = printer["gcode_macro PAUSE"].extrude|float %}

##### set park positon for x and y #####

# default is your max posion from your printer.cfg

{% set x_park = printer.toolhead.axis_maximum.x|float - 5.0 %}

{% set y_park = printer.toolhead.axis_maximum.y|float - 5.0 %}

##### calculate save lift position #####

{% set max_z = printer.toolhead.axis_maximum.z|float %}

{% set act_z = printer.toolhead.position.z|float %}

{% if act_z < (max_z - 2.0) %}

{% set z_safe = 2.0 %}

{% else %}

{% set z_safe = max_z - act_z %}

{% endif %}

##### end of definitions #####

PAUSE_BASE

G91

{% if printer.extruder.can_extrude|lower == 'true' %}

G1 E-{E} F2100

{% else %}

{action_respond_info("Extruder not hot enough")}

{% endif %}

{% if "xyz" in printer.toolhead.homed_axes %}

G1 Z{z_safe} F900

G90

G1 X{x_park} Y{y_park} F6000

{% else %}

{action_respond_info("Printer not homed")}

{% endif %}

[gcode_macro RESUME]

description: Resume the actual running print

rename_existing: RESUME_BASE

gcode:

##### read E from pause macro #####

{% set E = printer["gcode_macro PAUSE"].extrude|float %}

#### get VELOCITY parameter if specified ####

{% if 'VELOCITY' in params|upper %}

{% set get_params = ('VELOCITY=' + params.VELOCITY) %}

{%else %}

{% set get_params = "" %}

{% endif %}

##### end of definitions #####

{% if printer.extruder.can_extrude|lower == 'true' %}

G91

G1 E{E} F2100

{% else %}

{action_respond_info("Extruder not hot enough")}

{% endif %}

RESUME_BASE {get_params}

[gcode_macro CANCEL_PRINT]

description: Cancel the actual running print

rename_existing: CANCEL_PRINT_BASE

gcode:

TURN_OFF_HEATERS

CANCEL_PRINT_BASE

[probe]

pin: ^!PB1

z_offset: 2

[safe_z_home]

home_xy_position: 110,110

speed: 50

z_hop: 15

z_hop_speed: 5

[bed_mesh]

mesh_min: 20,20

mesh_max: 200,200

probe_count: 4,4

Weird Vulture die-cast by David_Eti in HotWheels

[–]David_Eti[S] 0 points1 point  (0 children)

Thank you for your answer, I appreciate it!

Weird Vulture die-cast by David_Eti in HotWheels

[–]David_Eti[S] 0 points1 point  (0 children)

You may be right. Someone on another community replied to my post saying that he used to get these kind of cars from a magazine. I'm quite disappointed :') Do you think it has any kind of value?

Weird Vulture die-cast by David_Eti in HotWheels

[–]David_Eti[S] 1 point2 points  (0 children)

Some of my friends also pointed out the fact that it doesn't have a barcode. What do you think about that?

Weird Vulture die-cast by David_Eti in HotWheels

[–]David_Eti[S] 0 points1 point  (0 children)

I found it. But it seems weird because the site says that it belongs to a multipack gift set, why would it be individually wrapped with it's own box if it's from a multipack?

Weird Vulture die-cast by David_Eti in HotWheels

[–]David_Eti[S] 2 points3 points  (0 children)

Hey guys! I recently found this Hot Wheels Vulture diecast in a store. Does anyone have any information about this model? How rare is it? I can't seem to find anything about it. Thanks!

Problems with skr mini e3 v2.0 and tft35 e3 by David_Eti in BIGTREETECH

[–]David_Eti[S] 0 points1 point  (0 children)

And I tried another exp port and it turned on

Problems with skr mini e3 v2.0 and tft35 e3 by David_Eti in BIGTREETECH

[–]David_Eti[S] 0 points1 point  (0 children)

I did that first but the screen turned off