blob: fda1911e6abe3fa5acd649e971ae7e28ee33d7fd [file] [log] [blame]
# Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
from fuzzy_check import FuzzyCheck
from validators import *
def Validate(raw, events, gestures):
fuzzy = FuzzyCheck()
fuzzy.expected = [
ButtonDownValidator(1),
ButtonUpValidator(1),
ButtonDownValidator(4),
ButtonUpValidator(4)
]
fuzzy.unexpected = [
FlingStopValidator("<10"),
MotionValidator("<10", merge=True)
]
return fuzzy.Check(gestures)
def UserInstructions():
return "Do a 1 finger click, then a 2-finger click"
@CustomFinger
def InstructRobot(robot):
robot.Click((0.5, 0.9, -45, 25), (1, 0, 0, 0))
robot.Click((0.5, 0.9, -45, 25), (1, 0, 1, 0))