You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12345678910111213141516 |
- #include <stdio.h>
- #include <wiringPiSPI.h>
-
-
- class SPI_DMX
- {
- private:
- int uart_filestream;
- unsigned char serial_port;
- unsigned char message[5000];
- public:
- SPI_DMX(unsigned char serial_port);
- ~SPI_DMX();
- void TX_Bytes(unsigned char* tx_buffer, unsigned char tx_size);
- void nice() {printf("nice\n");};
- };
|