From 5b016887fe86413403326ebc17371c7997a33523 Mon Sep 17 00:00:00 2001 From: Robert Wolterman Date: Mon, 7 Aug 2017 21:23:11 -0500 Subject: [PATCH] finishing servo api docs --- docs/servo.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/docs/servo.md b/docs/servo.md index b486ff6..1fa8a98 100644 --- a/docs/servo.md +++ b/docs/servo.md @@ -18,4 +18,21 @@ Enable/Disable the Debug SERVO.toggle_debug() ``` +### is_chip_pro() +Function to report to the calling script if the SBC is a CHIP or a CHIP Pro + +* Parameters + + None + +* Returns + + int - 1 for CHIP Pro, 0 for CHIP + +* Examples + + ```python + is_chip_pro = UT.is_chip_pro() + ``` + [home](./index.md)