diff --git a/gpiozero/__init__.py b/gpiozero/__init__.py index f0a6f97..ae35522 100644 --- a/gpiozero/__init__.py +++ b/gpiozero/__init__.py @@ -40,4 +40,5 @@ from .boards import ( TrafficHat, Robot, RyanteckRobot, + CamJamKitRobot, ) diff --git a/gpiozero/boards.py b/gpiozero/boards.py index 8be6ea9..349a8f0 100644 --- a/gpiozero/boards.py +++ b/gpiozero/boards.py @@ -409,4 +409,13 @@ class RyanteckRobot(Robot): RTK MCB Robot. Generic robot controller with pre-configured pin numbers. """ def __init__(self): - super(RyanteckRobot, self).__init__((17, 18), (22, 23)) + super(RyanteckRobot, self).__init__(left=(17, 18), right=(22, 23)) + + +class CamJamKitRobot(Robot): + """ + CamJam EduKit 3 Robot. Generic robot controller with pre-configured pin + numbers. + """ + def __init__(self): + super(CamJamKitRobot, self).__init__(left=(9, 10), right=(7, 8))