Skip to content

Instantly share code, notes, and snippets.

@joe714
joe714 / Hub75_V1.md
Created September 18, 2024 13:55
Hub75 V1 BOM

Summary

V1 Hub75 driver board.

Order from OSH Park: https://oshpark.com/shared_projects/DTnHhcQ1 Firmware: https://github.com/joe714/pixelclient

The USB port on this board is for power only for cost reasons. You will need a USB to TTL serial adapter connected to J2 to do the initial firmware load.

J3 is the data connector for the HUB 75 panel. There isn't enough clearance to use a keyed shrouded header,

@joe714
joe714 / cura-end.gcode
Created June 12, 2022 18:40
Kobra Max Gcode
M104 S0
M140 S0
;Retract the filament
G92 E1
G1 E-1 F300
G91 ; Relative Mode
G0 F100 Z3 ; Move Z up
G90 ; Absolute Mode
G0 F1000 X20 Y399 ; Bring bed forward
M18 ; Disable Steppers
@joe714
joe714 / cura-end.gcode
Created June 12, 2022 18:38
Ender Gcode 3v2 Gcode
G91 ;Relative positioning
G1 E-2 F2700 ;Retract a bit
G1 E-2 Z0.2 F2400 ;Retract and raise Z
G1 X5 Y5 F3000 ;Wipe out
G1 Z10 ;Raise Z more
G90 ;Absolute positionning
G1 X0 Y{machine_depth} ;Present print
M106 S0 ;Turn-off fan
M104 S0 ;Turn-off hotend
#include <iostream>
class A {
public:
virtual int get_foo() = 0;
};
class B {
public:
virtual int get_foo() { return 3; }