Something went wrong on our end
Select Git revision
calib_board_hacks.py
-
m-guberina authored
some calibration is being done. math is correct, but there are some errors coming from god knows where. right now i am blaming the curvature of the board. next step is to move while having force in the z direction. to do the calib, start in top left corner.
m-guberina authoredsome calibration is being done. math is correct, but there are some errors coming from god knows where. right now i am blaming the curvature of the board. next step is to move while having force in the z direction. to do the calib, start in top left corner.
UpdateListener.java NaN GiB
package gui;
/*
* NOTE: TWO INTERFACES ARE NEEDED SUCH THAT THE UI ISN'T UPDATED WHEN MARKED.
*/
public interface UpdateListener {
/*
* The function to be performed when the observable class is updated.
* Object obj is the object calling the update;
*/
public void update(Object Obj);
// or null
public default void update() { this.update(null); }
}