|
1 | 1 |
|
| 2 | +Various Arduino Examples that don't have a place in some of my other repositories. |
2 | 3 |
|
3 | 4 | * [6-channel-LED]({{site.codeurl}}/6-channel-LED) - fades 6 channels of LEDs with a for loop |
| 5 | +* [bitMasking]({{site.codeurl}}/bitMasking) - Bit masking to determine which bits of a byte are set. |
| 6 | +* [bitShifting]({{site.codeurl}}/bitShifting) - Bit shifting to move a bit through the positions in a byte |
4 | 7 | * [DACAnalogWrite]({{site.codeurl}}/DACAnalogWrite) - Reads an analog input, uses it to set the voltage attached to the DAC on pin A0 of the SAMD-based boards. |
5 | | -* [EmicAnalogReadSerial]({{site.codeurl}}/EmicAnalogReadSerial) - Reads an analog input on pin 0 and sends it to an [Emic 2 Text-to-speech module](https://www.sparkfun.com/products/11711) via Serial1 |
6 | | -* [EmicSoftwareSerial]({{site.codeurl}}/ EmicSoftwareSerial) |
7 | | -* [EncoderAndButtonExample]({{site.codeurl}}/EncoderAndButtonExample) |
8 | | -* [EncoderExample]({{site.codeurl}}/EncoderExample) |
9 | | -* [EncoderLEDControl]({{site.codeurl}}/EncoderLEDControl) |
| 8 | +* [EmicAnalogReadSerial]({{site.codeurl}}/EmicAnalogReadSerial) - Reads an analog input on pin 0 and sends it to an [Emic 2 Text-to-speech module](https://www.sparkfun.com/products/11711) via Serial1 (works only on boards with a second hardware serial port: SAMD, 32U4, etc) |
| 9 | +* [EmicSoftwareSerial]({{site.codeurl}}/ EmicSoftwareSerial) - Emic 2 example on SoftwareSerial, for the Uno and other boards with only one hardware serial port. |
| 10 | +* [EncoderAndButtonExample]({{site.codeurl}}/EncoderAndButtonExample) - reading a rotary encoder and its included pushbutton using Paul Stoffregen's Encoder library. |
| 11 | +* [EncoderExample]({{site.codeurl}}/EncoderExample) - Many encoders change 4 steps per detent step. This sketch reads an encoder and prints the direction of change when it's been turned one detent step using Paul Stoffregen's Encoder library. |
| 12 | +* [EncoderLEDControl]({{site.codeurl}}/EncoderLEDControl) - Reads an encoder and its pushbutton and uses the changes to control an LED. |
10 | 13 | * [EnergyTests]({{site.codeurl}}/EnergyTests) |
11 | 14 | * [InterruptibleFadeInterval]({{site.codeurl}}/InterruptibleFadeInterval) |
12 | 15 | * [InterruptibleFadeScheduler]({{site.codeurl}}/InterruptibleFadeScheduler) |
|
24 | 27 | * [UnitTests]({{site.codeurl}}/UnitTests) |
25 | 28 | * [VS1053_Sound_examples]({{site.codeurl}}/VS1053_Sound_examples) |
26 | 29 | * [WeightedAverage]({{site.codeurl}}/WeightedAverage) |
27 | | -* [bitMasking]({{site.codeurl}}/bitMasking) |
28 | | -* [bitShifting]({{site.codeurl}}/bitShifting) |
29 | 30 | * [joystick]({{site.codeurl}}/joystick)-imu |
0 commit comments