diff options
Diffstat (limited to 'teensy/servo.h')
-rw-r--r-- | teensy/servo.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/teensy/servo.h b/teensy/servo.h index c4a5bd49b1..5dad041138 100644 --- a/teensy/servo.h +++ b/teensy/servo.h @@ -1,2 +1,7 @@ -mp_obj_t pyb_Servo(void); +void servo_init(void); + +extern const mp_obj_type_t pyb_servo_type; + +MP_DECLARE_CONST_FUN_OBJ(pyb_servo_set_obj); +MP_DECLARE_CONST_FUN_OBJ(pyb_pwm_set_obj); |