Main Content

getRunOnBoot

Get name of MATLAB function added to Run-on-boot

Since R2019b

Add-On Required: This feature requires the MATLAB Support Package for Raspberry Pi Hardware add-on.

Description

getRunOnBoot(raspPiObj) returns the name of the MATLAB® function added to Run-on-boot.

Examples

collapse all

To get the name of the function available in Run-on-boot:

  1. Create a connection to the Raspberry Pi® hardware.

    raspPiObj = raspberrypi('192.168.1.5','pi','raspberrypi')
    rasPiObj = 
    
      raspberrypi with properties:
    
        DeviceAddress: '192.168.1.5'
                 Port: 22

    For more information on creating a connection to the Raspberry Pi hardware, see raspberrypi (Simulink).

  2. Use the getRunOnBoot function. This returns the name of the function available in Run-on-boot. If no function is available in Run-on-boot, it returns an empty cell.

    getRunOnBoot(raspPiObj)
    ans = 
    
         1×1 cell array 
         {'raspberrypi_gettingstarted'} 
    

Input Arguments

collapse all

The object that represents the connection to the Raspberry Pi hardware.

Example: raspPiObj

Version History

Introduced in R2019b