lightlapreset

Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • in reply to: Travel per revolution Settings #9360

    The changes of the parameters were made one by one in CP using the console. I double-checked the settings today and they still are correct.

    The implementation of changes via Matlab works with a serial port object. I do not really know how to submit Matlab-code here, so I just write down the most important lines of my code:

    obj = serial(‘COM’,’BaudRate’,115200,’Parity’,’none’,’FlowControl’,’software’,’DataBits’,8); % Create a serial port object with the specified settings (these have to be the same ones as the settings of your tinyg). As ‘COM’ you have to write the COM-Port your tinyg is connected to.

    fopen(obj) % opens the com-port

    From now on you can send lines of gcode in json-syntax directly to the tying using fprintf. The changes of Motor 1 settings (in nested code) as example:

    fprintf(obj,'{“1”:{“”ma”:0,”pm”:3,”po”:0,”tr”:50,”mi”:8,”sa”:1.8}}’);

    You also can send the settings individually like:
    fprintf(obj,'{“1ma”:0}’);
    fprintf(obj,'{“1pm”:3}’);
    … and so on

    With fscanf(obj) you will read out the tinyg line per line.

    Don’t forget to close and delete the created serial object at the end with fclose(obj) and delete(obj) or you will get a complete mess trying to set up a new connection 😉

    in reply to: Travel per revolution Settings #9353

    Hey Guys, there somehow was a mistake in the shown settings before I did my changes. So the reset to the values we have seen in our screenshots were already incorrect. I quickly calibrated the movement of all axes to a precision of +-1mm which should be adequate enough for some testing.

    –> Problem solved

Viewing 2 posts - 1 through 2 (of 2 total)