Skip to content

Disable mow motor at obstacle  #142

@Boilevin

Description

@Boilevin

Disable mow motor at obstacle don't always work.
After the lift detection the mowmotor is always set to mow and reset the last info.

if (detectLift()) mow = false; // in any case, turn off mower motor if lifted
motor.setMowState(mow);

need to change to this to only stop mow when lift is detected

if (detectLift()) {
mow = false; // in any case, turn off mower motor if lifted
motor.setMowState(mow);
}`

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions