Tutorial by Topics: pico

Chip select signals Most slaves have an active low chip select input. So proper code to initialize and use a chip select pin is this: #define CSPIN 1 // or whatever else your CS pin is // init: pinMode(CSPIN, OUTPUT); digitalWrite(CSPIN, 1); // deselect // use: digitalWrite(CSPIN, 0); /...
The PICO-8 is a fantasy console programmed in embedded Lua. It already has good documentation. Use this topic to demonstrate undocumented or under-documented features.

Page 1 of 1