Skip to content

Releases: arhi/gcodestat

gcodestat v0.9

30 Jun 03:29
Compare
Choose a tag to compare

few bugfixes and some modifications in Makefile

to build on linux (rpi for e.g.) without curl:

make NOCURL=1 STATIC=0

gcodestat v0.8

17 Jun 16:46
Compare
Choose a tag to compare

you can now format M117 code to your liking (solves #5 )

V0.7

21 Feb 19:48
Compare
Choose a tag to compare

fixes the problem of wrong parsing after comment marker (;)

gcodestat 0.6

20 Jan 00:25
Compare
Choose a tag to compare

everything linked statically into single exe (libstdc and curl) so libgcc_s_dw2-1.dll and libcurl.dll are no longer needed

gcodestat 0.5

02 Jan 13:14
Compare
Choose a tag to compare

fixes a bug reading M204 and M205 codes

gcodestat 0.4

27 Dec 21:29
Compare
Choose a tag to compare
  • added --alert (-w) option to display message box showing total time (this works only on windows!)
  • added libcurl so it can upload file directly to octoprint, use --api_key and --api_url to define key and url for octoprint (url should be http://ip_address_of_your_octoprint/api/files/local )

libcurl.dll is in the archive just keep it in the same directory as the gcodestat.exe

note that if you define output file (to add M117 progress report) that output file will be sent to octoprint, if you don't define output file, the input file will be sent to octoprint

gcodestat 0.2

26 Dec 16:16
Compare
Choose a tag to compare

added

  • heatup time (just a constant time added to the calculation)
  • if output file is selected, write output stat to the end of the file

Calculate time + generate M117 to show real progress on LCD

24 Dec 02:10
Compare
Choose a tag to compare

Initial release,
The app is able to

  • calculate real time it takes to print G-Code
  • the calculation is ideal for G-Code printed on smoothieware or any other firmware that uses junction-deviation settings with acceleration
  • there's no support for jerk yet (marlin and co use that) but default junction deviation settings give timing very similar to jerk settings of 20
  • if give option to store output g-code the app will add M117 lines into code so LCD of your printer will display the real progress every X % of the print (step is also configurable)