# Access platform functionality This module provides access to platform-specific functionality of the Crazyflie, like various system information and power management features. ## Show platform information This command shows you firmware/CRTP protocol version and platform type of the connected Crazyflie. ```bash cfcli platform info ``` This will show something like this: ```text Platform : Crazyflie 2.1 Firmware : 2025.09.1 +100 CRTP protocol : 10 ``` ## Power management The following commands are available for power management of the Crazyflie: This will reboot the Crazyflie (by power-cycling the STM32 power domain): ```bash cfcli platform reboot ``` This will put the Crazyflie to sleep and wake it up again (powering off the STM32 and decks): ```bash cfcli platform sleep cfcli platform wakeup ``` This will power off the Crazyflie (same as pressing the power button): ```bash cfcli platform power-off ```