Reporting Object Model Properties
-
I'm trying to diagnose a first layer Z height problem which could be a BLTouch fault.
In doing so I wanted to report various variables. By way of example...
echo "sensors.probes[0].lastStopHeight=",sensors.probes[0].lastStopHeight
echo "heat.heaters[0].current=",heat.heaters[0].current
echo "move.axis[0].babystep=",move.axis[0].babystep
The first two above report OK. However the babystep property fails with...
Error: in file macro line 31 column 31: meta command: unknown value 'axis^.babystep'Can anyone suggest what the problem is.
Thanks -
@St-Taw You've got a mistake in there, it should be
echo "move.axes[0].babystep=",move.axes[0].babystep
PS: You probably want
move.axes[2].babystep
for Z. -
I was struggling to even see the difference you suggested but eventually spotted it.
Always have had trouble with spellingMany thanks.