1
0
mirror of https://github.com/xtacocorex/CHIP_IO synced 2025-07-20 04:43:21 +00:00
Files
CHIP_IO/docs/overlaymanager.md
2017-07-04 15:10:35 -05:00

827 B

CHIP_IO.OverlayManager

Import the OverlayManager module as follows

import CHIP_IO.OverlayManager as OM

toggle_debug()

Enable/Disable the Debug

  • Parameters

    None

  • Returns

    None

  • Examples

    OM.toggle_debug()
    

get_spi_loaded()

Check to see if the SPI DTBO is loaded

  • Parameters

    None

  • Returns

    boolean

  • Examples

    is_spi_loaded = OM.get_spi_loaded()
    

get_pwm_loaded()

Check to see if the PWM0 DTBO is loaded

  • Parameters

    None

  • Returns

    boolean

  • Examples

    is_pwm_loaded = OM.get_pwm_loaded()
    

get_custom_loaded()

Check to see if the Custom DTBO is loaded

  • Parameters

    None

  • Returns

    boolean

  • Examples

    is_custom_loaded = OM.get_custom_loaded()
    

home