You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
LoRaGateway_BTS2A/SPI_M0/SPI_M0_SEND/SPI_M0_SEND.ino

19 lines
346 B
Arduino

7 years ago
#include<SPI.h>
//SPIClass maSPI (&PERIPH_SPI, PIN_SPI_MISO, PIN_SPI_SCK, PIN_SPI_MOSI, PAD_SPI_TX, PAD_SPI_RX);
void setup() {
// put your setup code here, to run once:
SPI.begin();
SerialUSB.begin(9600);
}
void loop() {
// put your main code here, to run repeatedly:
SerialUSB.println("hello");
delay(1000);
SPI.transfer(0x07);
}