You can connect to and exchange data with an SPI device.
Create a connection from the MATLAB software to
the Raspberry Pi board.
r =
raspi with properties:
DeviceAddress: '172.18.188.249'
Port: 18734
BoardName: 'Raspberry Pi 3 Model B+'
AvailableLEDs: {'led0'}
AvailableDigitalPins: [4,5,6,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27]
AvailableSPIChannels: {'CE0','CE1'}
AvailableI2CBuses: {'i2c-1'}
AvailableWebcams: {}
I2CBusSpeed: 100000
Supported peripheralsBy default, SPI is enabled. If SPI is disabled, AvailableSPIChannels does
not show any channels.
Enable SPI and get the channels by using enableSPI.
Show the location of the SPI pins, GPIO 10 (SPI0_MOSI),
GPIO 9 (SPI0_MISO), and GPIO 11 (SPI0_SCLK), on the GPIO header.
After physically connecting your SPI device to the three
SPI pins, connect to the SPI device.
myspidevice =
Spidev with Properties:
Channel: 'CE1'
Mode: 0
BitsPerWord: 8
Speed: 500000
Write data to, and read data from, the SPI device.
If you are not using SPI, disable SPI to make additional
GPIO pins available.