@rl_at_berk good to know
BTW, END_STOP_PINS are define in Duet_Pins.h line 67 ( for 9 axis )
Posts made by hareshPrajapati
-
RE: Code for Endstop Pinout?
-
RE: Code for Endstop Pinout?
@rl_at_berk You can read the state of each endstop that your printer supports by using the
IoPort::ReadPin(endStopPins[axisOrExtruder])
function. -
RE: Files sorting by date ?
@dc42 Currently M20 Provides only file names
I know there were some methods for timestamps also.But all I need to know is that how we can sort those files using timestamp ?
have you any idea ? how to implement it in paneldue firmware side?
-
Files sorting by date ?
Is that any way to display Gcode files (sort by date) from sd card in PanelDue ?????
-
RE: Custom Font for my panel due
@dc42 Exactly , when I add
glcd20x30
array into src > Fonts , binary becomes too large to fit in flash memoryI also try to Optimized code by Setting
basic compiler flags
in CmakeLists.txt file
have a look at :
But still getting complier errors regarding to file size.
-
Custom Font for my panel due
Hello,
I am trying to add custom font with custom size for my paneldue , Currently there is only two font supported
glcd19x21 and glcd38x32
.
I added some old fonts from2.05.1
but there is a size issue while compiling.
there is any possible way to add other fonts? -
RE: Method for text input in paneldue UI
@dc42
I want to add 4 Text box for input
1 for G/Mcode
2 for X
3 for Y
4 for X
Generally use for G0 or G1 command
I want GUI something like
I Hope you understand.
thanks. -
Method for text input in paneldue UI
I want to add text input from user .
How to add it in paneldue UI? -
RE: Music in my PanelDue 5i with Duet2 Ethernet and reprap 3.4.1
@phaedrux PanelDue 3.4.0 (latest)
Reprap (latest) -
RE: Music in my PanelDue 5i with Duet2 Ethernet and reprap 3.4.1
I changed baud rate to 115200 on the PanelDue and also in PanelDue command in config.g but same results !!!
-
RE: Music in my PanelDue 5i with Duet2 Ethernet and reprap 3.4.1
@phaedrux when I try I didn't
get musical toneFirst I try simple mario.g ringtone but buzzer only beep , it didn't produce what exactly i send.
I think tools are not producing correct Gcodes for reprap 3.4.1
look at my mario.g file and recording files of music
-
Music in my PanelDue 5i with Duet2 Ethernet and reprap 3.4.1
I found post related to my topic
https://forum.duet3d.com/topic/15722/turn-your-printer-into-a-juke-boxI tried given steps in the link to generate music using
M300
Command But somehow
my panleDue 5i didn't playing music tones properly .I am using duet2 ethernet board connected with panelDue 5i with latest version
3.4.1
Is that any way to generate proper Gcode file for my problem??
-
RE: How can i add macro that run same movement
@jay_s_uk Can you please explain in short
How we do iterations using
R.R.F 3.4
? -
How can i add macro that run same movement
I need macro or Gcode that run same movement for particular time
i mean if i send command like
M98 P''mymacro.g" S30
than command
can run for 30 seconds repeatedly (approx. 15 time in 30 seconds) .mymacro.g file contains :
G1 X75
G1 X50I m using old version of reprap and that doesn't support
meta commands
and also I don't need it
please, help as I new in the forum. -
RE: state.time what Meta Command object model property type is it?
@dc42 said in state.time what Meta Command object model property type is it?:
I guess I need to support adding/subtracting integers to/from times, and subtracting one time from another too.
Is that any support for adding/subtracting integers to/from times
or any method to do it?