diff --git a/docs/index.md b/docs/index.md index a08f17e..9f59117 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,6 +1,4 @@ ## CHIP_IO.GPIO - -### Importing Import the GPIO module as follows ```python @@ -20,11 +18,100 @@ Enable/Disable the Debug ``` ## CHIP_IO.PWM +Import the PWM module as follows + + ```python + import CHIP_IO.PWM as PWM + ``` + +### toggle_debug() +Enable/Disable the Debug + +* Parameters + None + +* Examples + + ```python + PWM.toggle_debug() + ``` + ## CHIP_IO.SOFTPWM +Import the SOFTPWM module as follows + + ```python + import CHIP_IO.SOFTPWM as SPWM + ``` + +### toggle_debug() +Enable/Disable the Debug + +* Parameters + None + +* Examples + + ```python + SPWM.toggle_debug() + ``` + ## CHIP_IO.SERVO +Import the SERVO module as follows + + ```python + import CHIP_IO.SERVO as SERVO + ``` + +### toggle_debug() +Enable/Disable the Debug + +* Parameters + None + +* Examples + + ```python + SERVO.toggle_debug() + ``` + ## CHIP_IO.LRADC +Import the LRADC module as follows + + ```python + import CHIP_IO.LRADC as LRADC + ``` + +### toggle_debug() +Enable/Disable the Debug + +* Parameters + None + +* Examples + + ```python + LRADC.toggle_debug() + ``` ## CHIP_IO.Utilities +Import the Utilities module as follows + + ```python + import CHIP_IO.Utilities as UT + ``` + +### toggle_debug() +Enable/Disable the Debug + +* Parameters + None + +* Examples + + ```python + UT.toggle_debug() + ``` +