├── .gitattributes ├── AT24Cxx-gyver ├── AT24Cxx.cpp ├── AT24Cxx.h ├── README.md ├── examples │ ├── i2c_eeprom_clear │ │ └── i2c_eeprom_clear.ino │ └── i2c_eeprom_read │ │ └── i2c_eeprom_read.ino └── keywords.txt ├── AccelStepper ├── AccelStepper.cpp ├── AccelStepper.h ├── LICENSE ├── MANIFEST ├── Makefile ├── MultiStepper.cpp ├── MultiStepper.h ├── doc │ ├── AccelStepper_8h-source.html │ ├── annotated.html │ ├── classAccelStepper-members.html │ ├── classAccelStepper.html │ ├── doxygen.css │ ├── doxygen.png │ ├── files.html │ ├── functions.html │ ├── functions_func.html │ ├── index.html │ ├── tab_b.gif │ ├── tab_l.gif │ ├── tab_r.gif │ └── tabs.css ├── examples │ ├── AFMotor_ConstantSpeed │ │ └── AFMotor_ConstantSpeed.pde │ ├── AFMotor_MultiStepper │ │ └── AFMotor_MultiStepper.pde │ ├── Blocking │ │ └── Blocking.pde │ ├── Bounce │ │ └── Bounce.pde │ ├── ConstantSpeed │ │ └── ConstantSpeed.pde │ ├── DualMotorShield │ │ └── DualMotorShield.pde │ ├── MotorShield │ │ └── MotorShield.pde │ ├── MultiStepper │ │ └── MultiStepper.pde │ ├── MultipleSteppers │ │ └── MultipleSteppers.pde │ ├── Overshoot │ │ └── Overshoot.pde │ ├── ProportionalControl │ │ └── ProportionalControl.pde │ ├── Quickstop │ │ └── Quickstop.pde │ └── Random │ │ └── Random.pde ├── keywords.txt └── project.cfg ├── Adafruit-BMP085-Library-master ├── .github │ ├── ISSUE_TEMPLATE.md │ └── PULL_REQUEST_TEMPLATE.md ├── Adafruit_BMP085.cpp ├── Adafruit_BMP085.h ├── README.txt ├── examples │ └── BMP085test │ │ └── BMP085test.ino └── library.properties ├── Adafruit-GFX-Library-master ├── .gitignore ├── Adafruit_GFX.cpp ├── Adafruit_GFX.h ├── Adafruit_SPITFT.cpp ├── Adafruit_SPITFT.h ├── Adafruit_SPITFT_Macros.h ├── Fonts │ ├── FreeMono12pt7b.h │ ├── FreeMono18pt7b.h │ ├── FreeMono24pt7b.h │ ├── FreeMono9pt7b.h │ ├── FreeMonoBold12pt7b.h │ ├── FreeMonoBold18pt7b.h │ ├── FreeMonoBold24pt7b.h │ ├── FreeMonoBold9pt7b.h │ ├── FreeMonoBoldOblique12pt7b.h │ ├── FreeMonoBoldOblique18pt7b.h │ ├── FreeMonoBoldOblique24pt7b.h │ ├── FreeMonoBoldOblique9pt7b.h │ ├── FreeMonoOblique12pt7b.h │ ├── FreeMonoOblique18pt7b.h │ ├── FreeMonoOblique24pt7b.h │ ├── FreeMonoOblique9pt7b.h │ ├── FreeSans12pt7b.h │ ├── FreeSans18pt7b.h │ ├── FreeSans24pt7b.h │ ├── FreeSans9pt7b.h │ ├── FreeSansBold12pt7b.h │ ├── FreeSansBold18pt7b.h │ ├── FreeSansBold24pt7b.h │ ├── FreeSansBold9pt7b.h │ ├── FreeSansBoldOblique12pt7b.h │ ├── FreeSansBoldOblique18pt7b.h │ ├── FreeSansBoldOblique24pt7b.h │ ├── FreeSansBoldOblique9pt7b.h │ ├── FreeSansOblique12pt7b.h │ ├── FreeSansOblique18pt7b.h │ ├── FreeSansOblique24pt7b.h │ ├── FreeSansOblique9pt7b.h │ ├── FreeSerif12pt7b.h │ ├── FreeSerif18pt7b.h │ ├── FreeSerif24pt7b.h │ ├── FreeSerif9pt7b.h │ ├── FreeSerifBold12pt7b.h │ ├── FreeSerifBold18pt7b.h │ ├── FreeSerifBold24pt7b.h │ ├── FreeSerifBold9pt7b.h │ ├── FreeSerifBoldItalic12pt7b.h │ ├── FreeSerifBoldItalic18pt7b.h │ ├── FreeSerifBoldItalic24pt7b.h │ ├── FreeSerifBoldItalic9pt7b.h │ ├── FreeSerifItalic12pt7b.h │ ├── FreeSerifItalic18pt7b.h │ ├── FreeSerifItalic24pt7b.h │ ├── FreeSerifItalic9pt7b.h │ ├── Org_01.h │ ├── Picopixel.h │ ├── Tiny3x3a2pt7b │ └── TomThumb.h ├── Img2Code │ ├── .gitignore │ ├── README.md │ ├── build.gradle │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle │ └── src │ │ └── main │ │ ├── java │ │ └── Image2Code.java │ │ └── resources │ │ └── Adafruit.png ├── README.md ├── fontconvert │ ├── Makefile │ ├── fontconvert.c │ ├── fontconvert_win.md │ └── makefonts.sh ├── gfxfont.h ├── glcdfont.c ├── library.properties └── license.txt ├── Adafruit_BMP280_Library-master ├── .github │ ├── ISSUE_TEMPLATE.md │ └── PULL_REQUEST_TEMPLATE.md ├── Adafruit_BMP280.cpp ├── Adafruit_BMP280.h ├── README.md ├── examples │ └── bmp280test │ │ └── bmp280test.ino └── library.properties ├── Adafruit_CircuitPlayground ├── .github │ ├── ISSUE_TEMPLATE.md │ └── PULL_REQUEST_TEMPLATE.md ├── Adafruit_CircuitPlayground.cpp ├── Adafruit_CircuitPlayground.h ├── examples │ ├── CircuitPlaygroundFirmata │ │ └── CircuitPlaygroundFirmata.ino │ ├── Hello_CircuitPlayground │ │ ├── Hello_Accelerometer │ │ │ └── Hello_Accelerometer.ino │ │ ├── Hello_Blink │ │ │ └── Hello_Blink.ino │ │ ├── Hello_Buttons │ │ │ └── Hello_Buttons.ino │ │ ├── Hello_LightSensor │ │ │ └── Hello_LightSensor.ino │ │ ├── Hello_NeoPixels │ │ │ └── Hello_NeoPixels.ino │ │ ├── Hello_SlideSwitch │ │ │ └── Hello_SlideSwitch.ino │ │ ├── Hello_SoundSensor │ │ │ └── Hello_SoundSensor.ino │ │ ├── Hello_Speaker │ │ │ └── Hello_Speaker.ino │ │ ├── Hello_Temperature │ │ │ └── Hello_Temperature.ino │ │ └── README.md │ ├── Microphone │ │ ├── mic_fft │ │ │ └── mic_fft.ino │ │ └── mic_meter │ │ │ └── mic_meter.ino │ ├── ScatchSensorBoard │ │ └── ScratchSensorBoard.ino │ ├── Speech │ │ ├── Talk_UK_Acorn │ │ │ └── Talk_UK_Acorn.ino │ │ ├── Talk_US_Clock │ │ │ └── Talk_US_Clock.ino │ │ ├── Talk_US_Large │ │ │ └── Talk_US_Large.ino │ │ ├── Talk_US_Male │ │ │ └── Talk_US_Male.ino │ │ └── Talk_US_TI99 │ │ │ └── Talk_US_TI99.ino │ ├── accelTap │ │ └── accelTap.ino │ ├── accel_mouse │ │ └── accel_mouse.ino │ ├── analog_sensors │ │ └── analog_sensors.ino │ ├── color_sense │ │ └── color_sense.ino │ ├── comm_badge │ │ ├── coin.h │ │ ├── comm_badge.ino │ │ └── trek.h │ ├── demo │ │ └── demo.ino │ ├── mega_demo │ │ ├── CapTouchDemo.h │ │ ├── Demo.h │ │ ├── RainbowCycleDemo.h │ │ ├── SensorDemo.h │ │ ├── TiltDemo.h │ │ ├── VUMeterDemo.h │ │ └── mega_demo.ino │ └── vu_meter │ │ └── vu_meter.ino ├── library.properties └── utility │ ├── Adafruit_CPlay_LIS3DH.cpp │ ├── Adafruit_CPlay_LIS3DH.h │ ├── Adafruit_CPlay_Mic.cpp │ ├── Adafruit_CPlay_Mic.h │ ├── Adafruit_CPlay_NeoPixel.cpp │ ├── Adafruit_CPlay_NeoPixel.h │ ├── Adafruit_CPlay_Sensor.h │ ├── Adafruit_CPlay_Speaker.cpp │ ├── Adafruit_CPlay_Speaker.h │ ├── CP_Boards.h │ ├── CP_Firmata.cpp │ ├── CP_Firmata.h │ ├── CPlay_CapacitiveSensor.cpp │ ├── CPlay_CapacitiveSensor.h │ ├── README.md │ ├── esp8266.c │ ├── ffft.S │ └── talkie.cpp ├── Adafruit_Circuit_Playground ├── .github │ ├── ISSUE_TEMPLATE.md │ └── PULL_REQUEST_TEMPLATE.md ├── Adafruit_CircuitPlayground.cpp ├── Adafruit_CircuitPlayground.h ├── Adafruit_Circuit_Playground.h ├── examples │ ├── CircuitPlaygroundFirmata │ │ └── CircuitPlaygroundFirmata.ino │ ├── FidgetSpinner │ │ ├── FidgetSpinner.h │ │ ├── FidgetSpinner.ino │ │ └── PeakDetector.h │ ├── Hello_CircuitPlayground │ │ ├── Hello_Accelerometer │ │ │ └── Hello_Accelerometer.ino │ │ ├── Hello_Blink │ │ │ └── Hello_Blink.ino │ │ ├── Hello_Buttons │ │ │ └── Hello_Buttons.ino │ │ ├── Hello_LightSensor │ │ │ └── Hello_LightSensor.ino │ │ ├── Hello_NeoPixels │ │ │ └── Hello_NeoPixels.ino │ │ ├── Hello_SlideSwitch │ │ │ └── Hello_SlideSwitch.ino │ │ ├── Hello_SoundSensor │ │ │ └── Hello_SoundSensor.ino │ │ ├── Hello_Speaker │ │ │ └── Hello_Speaker.ino │ │ ├── Hello_Temperature │ │ │ └── Hello_Temperature.ino │ │ └── README.md │ ├── Infrared_NeoPixel │ │ ├── Infrared_NeoPixel.ino │ │ └── adafruit_mini_codes.h │ ├── Infrared_Read │ │ └── Infrared_read.ino │ ├── Infrared_Record │ │ └── Infrared_Record.ino │ ├── Infrared_Send │ │ └── Infrared_Send.ino │ ├── Infrared_Testpattern │ │ └── Infrared_Testpattern.ino │ ├── Microphone │ │ ├── mic_fft │ │ │ └── mic_fft.ino │ │ └── mic_meter │ │ │ └── mic_meter.ino │ ├── ScatchSensorBoard │ │ └── ScratchSensorBoard.ino │ ├── Speech │ │ ├── Talk_UK_Acorn │ │ │ └── Talk_UK_Acorn.ino │ │ ├── Talk_US_Clock │ │ │ └── Talk_US_Clock.ino │ │ ├── Talk_US_Large │ │ │ └── Talk_US_Large.ino │ │ ├── Talk_US_Male │ │ │ └── Talk_US_Male.ino │ │ └── Talk_US_TI99 │ │ │ └── Talk_US_TI99.ino │ ├── accelTap │ │ └── accelTap.ino │ ├── accel_mouse │ │ └── accel_mouse.ino │ ├── analog_sensors │ │ └── analog_sensors.ino │ ├── color_sense │ │ └── color_sense.ino │ ├── comm_badge │ │ ├── coin.h │ │ ├── comm_badge.ino │ │ └── trek.h │ ├── demo │ │ └── demo.ino │ ├── mega_demo │ │ ├── CapTouchDemo.h │ │ ├── Demo.h │ │ ├── RainbowCycleDemo.h │ │ ├── SensorDemo.h │ │ ├── TiltDemo.h │ │ ├── VUMeterDemo.h │ │ └── mega_demo.ino │ ├── tachometer │ │ └── tachometer.ino │ ├── tachometer_led_display │ │ └── tachometer_led_display.ino │ └── vu_meter │ │ └── vu_meter.ino ├── library.properties └── utility │ ├── Adafruit_CPlay_FreeTouch.cpp │ ├── Adafruit_CPlay_FreeTouch.h │ ├── Adafruit_CPlay_LIS3DH.cpp │ ├── Adafruit_CPlay_LIS3DH.h │ ├── Adafruit_CPlay_Mic.cpp │ ├── Adafruit_CPlay_Mic.h │ ├── Adafruit_CPlay_NeoPixel.cpp │ ├── Adafruit_CPlay_NeoPixel.h │ ├── Adafruit_CPlay_Sensor.h │ ├── Adafruit_CPlay_Speaker.cpp │ ├── Adafruit_CPlay_Speaker.h │ ├── CP_Boards.h │ ├── CP_Firmata.cpp │ ├── CP_Firmata.h │ ├── CPlay_CapacitiveSensor.cpp │ ├── CPlay_CapacitiveSensor.h │ ├── IRLibCPE.h │ ├── IRLibCombo.h │ ├── IRLibDecodeBase.cpp │ ├── IRLibDecodeBase.h │ ├── IRLibGlobals.h │ ├── IRLibHardware.cpp │ ├── IRLibHardware.h │ ├── IRLibProtocols.cpp │ ├── IRLibProtocols.h │ ├── IRLibRecvBase.cpp │ ├── IRLibRecvBase.h │ ├── IRLibRecvPCI.cpp │ ├── IRLibRecvPCI.h │ ├── IRLibSAMD21.cpp │ ├── IRLibSAMD21.h │ ├── IRLibSendBase.cpp │ ├── IRLibSendBase.h │ ├── IRLib_COPYRIGHT.txt │ ├── IRLib_HashRaw.h │ ├── IRLib_P01_NEC.h │ ├── IRLib_P02_Sony.h │ ├── IRLib_P03_RC5.h │ ├── IRLib_P04_RC6.h │ ├── IRLib_P05_Panasonic_Old.h │ ├── IRLib_P06_JVC.h │ ├── IRLib_P07_NECx.h │ ├── IRLib_P08_Samsung36.h │ ├── IRLib_P09_GICable.h │ ├── IRLib_P10_DirecTV.h │ ├── IRLib_P11_RCMM.h │ ├── IRLib_P12_CYKM.h │ ├── IRLib_P99_Additional.h │ ├── IRLib_readme.md │ ├── README.md │ ├── ffft.S │ └── talkie.cpp ├── Adafruit_NeoMatrix-master ├── .github │ ├── ISSUE_TEMPLATE.md │ └── PULL_REQUEST_TEMPLATE.md ├── Adafruit_NeoMatrix.cpp ├── Adafruit_NeoMatrix.h ├── COPYING ├── README.md ├── examples │ ├── MatrixGFXDemo │ │ ├── MatrixGFXDemo.ino │ │ ├── bluesmiley24.h │ │ ├── heart24.h │ │ ├── smileytongue24.h │ │ └── yellowsmiley24.h │ ├── matrixtest │ │ └── matrixtest.pde │ └── tiletest │ │ └── tiletest.pde ├── extras │ └── gamma.c ├── gamma.h └── library.properties ├── Adafruit_NeoPixel-master ├── .github │ ├── ISSUE_TEMPLATE.md │ └── PULL_REQUEST_TEMPLATE.md ├── .travis.yml ├── Adafruit_NeoPixel.cpp ├── Adafruit_NeoPixel.h ├── COPYING ├── README.md ├── esp8266.c ├── examples │ ├── RGBWstrandtest │ │ ├── .esp8266.test.skip │ │ ├── .trinket.test.skip │ │ └── RGBWstrandtest.ino │ ├── StrandtestBLE │ │ ├── .test.skip │ │ ├── BLESerial.cpp │ │ ├── BLESerial.h │ │ └── StrandtestBLE.ino │ ├── buttoncycler │ │ ├── .esp8266.test.skip │ │ └── buttoncycler.ino │ ├── simple │ │ ├── .esp8266.test.skip │ │ └── simple.ino │ └── strandtest │ │ ├── .esp8266.test.skip │ │ └── strandtest.ino ├── keywords.txt └── library.properties ├── Adafruit_SSD1306-master ├── .github │ ├── ISSUE_TEMPLATE.md │ └── PULL_REQUEST_TEMPLATE.md ├── Adafruit_SSD1306.cpp ├── Adafruit_SSD1306.h ├── README.md ├── README.txt ├── examples │ ├── ssd1306_128x32_i2c │ │ └── ssd1306_128x32_i2c.ino │ ├── ssd1306_128x32_spi │ │ └── ssd1306_128x32_spi.ino │ ├── ssd1306_128x64_i2c │ │ └── ssd1306_128x64_i2c.ino │ └── ssd1306_128x64_spi │ │ └── ssd1306_128x64_spi.ino ├── library.properties └── license.txt ├── AnalogTouch-master ├── AnalogTouch.h ├── LICENSE ├── Readme.md ├── examples │ └── AnalogTouch │ │ └── AnalogTouch.ino ├── keywords.txt └── library.properties ├── Arduino-PID-Library-master ├── PID_v1.cpp ├── PID_v1.h ├── README.txt ├── examples │ ├── PID_AdaptiveTunings │ │ └── PID_AdaptiveTunings.ino │ ├── PID_Basic │ │ └── PID_Basic.ino │ ├── PID_PonM │ │ └── PID_PonM.ino │ └── PID_RelayOutput │ │ └── PID_RelayOutput.ino ├── keywords.txt ├── library.json └── library.properties ├── Arduino-SerialCommand-master ├── SerialCommand.cpp ├── SerialCommand.h ├── examples │ └── SerialCommandExample │ │ └── SerialCommandExample.pde ├── keywords.txt ├── library.json └── readme.md ├── Bridge ├── README.adoc ├── examples │ ├── Bridge │ │ └── Bridge.ino │ ├── ConsoleAsciiTable │ │ └── ConsoleAsciiTable.ino │ ├── ConsolePixel │ │ └── ConsolePixel.ino │ ├── ConsoleRead │ │ └── ConsoleRead.ino │ ├── Datalogger │ │ └── Datalogger.ino │ ├── FileWriteScript │ │ └── FileWriteScript.ino │ ├── HttpClient │ │ └── HttpClient.ino │ ├── HttpClientConsole │ │ └── HttpClientConsole.ino │ ├── MailboxReadMessage │ │ └── MailboxReadMessage.ino │ ├── Process │ │ └── Process.ino │ ├── RemoteDueBlink │ │ └── RemoteDueBlink.ino │ ├── ShellCommands │ │ └── ShellCommands.ino │ ├── TemperatureWebPanel │ │ ├── TemperatureWebPanel.ino │ │ └── www │ │ │ ├── index.html │ │ │ └── zepto.min.js │ ├── TimeCheck │ │ └── TimeCheck.ino │ ├── WiFiStatus │ │ └── WiFiStatus.ino │ ├── YunFirstConfig │ │ └── YunFirstConfig.ino │ └── YunSerialTerminal │ │ └── YunSerialTerminal.ino ├── keywords.txt ├── library.properties └── src │ ├── Bridge.cpp │ ├── Bridge.h │ ├── BridgeClient.cpp │ ├── BridgeClient.h │ ├── BridgeSSLClient.cpp │ ├── BridgeSSLClient.h │ ├── BridgeServer.cpp │ ├── BridgeServer.h │ ├── BridgeUdp.cpp │ ├── BridgeUdp.h │ ├── Console.cpp │ ├── Console.h │ ├── FileIO.cpp │ ├── FileIO.h │ ├── HttpClient.cpp │ ├── HttpClient.h │ ├── Mailbox.cpp │ ├── Mailbox.h │ ├── Process.cpp │ ├── Process.h │ ├── YunClient.h │ └── YunServer.h ├── Cayenne-MQTT-ESP-master ├── LICENSE.dat ├── README.md ├── examples │ ├── ESP32 │ │ └── ESP32.ino │ └── ESP8266 │ │ └── ESP8266.ino ├── library.properties └── src │ ├── CayenneArduinoDefines.h │ ├── CayenneArduinoMQTTClient.h │ ├── CayenneHandlers.cpp │ ├── CayenneHandlers.h │ ├── CayenneMQTTClient │ ├── CayenneMQTTClient.c │ ├── CayenneMQTTClient.h │ ├── MQTTClient.c │ ├── MQTTClient.h │ └── PlatformHeader.h │ ├── CayenneMQTTESP32.h │ ├── CayenneMQTTESP8266.h │ ├── CayenneMQTTWiFiClient.h │ ├── CayenneMessage.h │ ├── CayenneUtils │ ├── CayenneDataArray.c │ ├── CayenneDataArray.h │ ├── CayenneDefines.h │ ├── CayenneTopics.h │ ├── CayenneTypes.h │ ├── CayenneUtils.c │ └── CayenneUtils.h │ ├── DetectDevice.h │ ├── MQTTCommon │ ├── MQTTConnect.h │ ├── MQTTConnectClient.c │ ├── MQTTDeserializePublish.c │ ├── MQTTPacket.c │ ├── MQTTPacket.h │ ├── MQTTPublish.h │ ├── MQTTSerializePublish.c │ ├── MQTTSubscribe.h │ ├── MQTTSubscribeClient.c │ ├── MQTTUnsubscribe.h │ ├── MQTTUnsubscribeClient.c │ ├── edl-v10 │ └── epl-v10 │ └── Platform │ └── Arduino │ ├── MQTTArduino.cpp │ └── MQTTArduino.h ├── CyberLib-master ├── CyberLib.cpp ├── CyberLib.h ├── README.md ├── examples │ └── Blink │ │ └── Blink.ino └── keywords.txt ├── DFPlayer_Mini_Mp3 ├── DFPlayer_Mini_Mp3.cpp ├── DFPlayer_Mini_Mp3.h ├── examples │ ├── DFPlayer_Mini_Test │ │ └── DFPlayer_Mini_Test.ino │ ├── DFPlayer_SoftwareSerial │ │ └── DFPlayer_SoftwareSerial.ino │ └── DFPlayer_sample │ │ └── DFPlayer_sample.ino ├── keywords.txt └── license.txt ├── DHT-sensor-library-master ├── .github │ ├── ISSUE_TEMPLATE.md │ └── PULL_REQUEST_TEMPLATE.md ├── Adafruit_Sensor.h ├── DHT.cpp ├── DHT.h ├── DHT_U.cpp ├── DHT_U.h ├── README.md ├── examples │ ├── DHT_Unified_Sensor │ │ └── DHT_Unified_Sensor.ino │ └── DHTtester │ │ └── DHTtester.ino ├── keywords.txt └── library.properties ├── Dallas_temperature ├── .gitignore ├── DallasTemperature.cpp ├── DallasTemperature.h ├── README.md ├── examples │ ├── Alarm │ │ └── Alarm.pde │ ├── AlarmHandler │ │ └── AlarmHandler.pde │ ├── Multibus_simple │ │ └── Multibus_simple.ino │ ├── Multiple │ │ └── Multiple.pde │ ├── Simple │ │ └── Simple.pde │ ├── Single │ │ └── Single.pde │ ├── Tester │ │ └── Tester.pde │ ├── TwoPin_DS18B20 │ │ └── TwoPin_DS18B20.ino │ ├── WaitForConversion │ │ └── WaitForConversion.pde │ ├── WaitForConversion2 │ │ └── WaitForConversion2.pde │ ├── oneWireSearch │ │ └── oneWireSearch.ino │ └── setUserData │ │ └── SetUserData.ino ├── keywords.txt ├── library.json └── library.properties ├── Debug ├── MotoUnit.elf ├── MotoUnit.hex ├── MotoUnit.lss ├── MotoUnit.map ├── i2chw │ ├── subdir.mk │ ├── twimastertimeout.d │ └── twimastertimeout.o ├── main.d ├── main.o ├── makefile ├── mpu6050 │ ├── mpu6050.d │ ├── mpu6050.o │ ├── mpu6050dmp6.d │ ├── mpu6050dmp6.o │ └── subdir.mk ├── objects.mk ├── sources.mk └── subdir.mk ├── EEPROMex ├── EEPROMVar.h ├── EEPROMex.cpp └── EEPROMex.h ├── ESP8266HTTPClient ├── examples │ ├── Authorization │ │ └── Authorization.ino │ ├── BasicHttpClient │ │ └── BasicHttpClient.ino │ ├── ReuseConnection │ │ └── ReuseConnection.ino │ └── StreamHttpClient │ │ └── StreamHttpClient.ino ├── library.properties └── src │ ├── ESP8266HTTPClient.cpp │ └── ESP8266HTTPClient.h ├── Esplora ├── README.adoc ├── examples │ ├── Beginners │ │ ├── EsploraAccelerometer │ │ │ └── EsploraAccelerometer.ino │ │ ├── EsploraBlink │ │ │ └── EsploraBlink.ino │ │ ├── EsploraJoystickMouse │ │ │ └── EsploraJoystickMouse.ino │ │ ├── EsploraLedShow │ │ │ └── EsploraLedShow.ino │ │ ├── EsploraLedShow2 │ │ │ └── EsploraLedShow2.ino │ │ ├── EsploraLightCalibrator │ │ │ └── EsploraLightCalibrator.ino │ │ ├── EsploraMusic │ │ │ └── EsploraMusic.ino │ │ ├── EsploraSoundSensor │ │ │ └── EsploraSoundSensor.ino │ │ └── EsploraTemperatureSensor │ │ │ └── EsploraTemperatureSensor.ino │ └── Experts │ │ ├── EsploraKart │ │ └── EsploraKart.ino │ │ ├── EsploraPong │ │ └── EsploraPong.ino │ │ ├── EsploraRemote │ │ └── EsploraRemote.ino │ │ └── EsploraTable │ │ └── EsploraTable.ino ├── keywords.txt ├── library.properties └── src │ ├── Esplora.cpp │ └── Esplora.h ├── Ethernet ├── AUTHORS ├── README.adoc ├── examples │ ├── AdvancedChatServer │ │ └── AdvancedChatServer.ino │ ├── BarometricPressureWebServer │ │ └── BarometricPressureWebServer.ino │ ├── ChatServer │ │ └── ChatServer.ino │ ├── DhcpAddressPrinter │ │ └── DhcpAddressPrinter.ino │ ├── DhcpChatServer │ │ └── DhcpChatServer.ino │ ├── TelnetClient │ │ └── TelnetClient.ino │ ├── UDPSendReceiveString │ │ └── UDPSendReceiveString.ino │ ├── UdpNtpClient │ │ └── UdpNtpClient.ino │ ├── WebClient │ │ └── WebClient.ino │ ├── WebClientRepeating │ │ └── WebClientRepeating.ino │ └── WebServer │ │ └── WebServer.ino ├── keywords.txt ├── library.properties └── src │ ├── Dhcp.cpp │ ├── Dhcp.h │ ├── Dns.cpp │ ├── Dns.h │ ├── Ethernet.cpp │ ├── Ethernet.h │ ├── EthernetClient.cpp │ ├── EthernetClient.h │ ├── EthernetServer.cpp │ ├── EthernetServer.h │ ├── EthernetUdp.cpp │ ├── EthernetUdp.h │ └── utility │ ├── socket.cpp │ ├── socket.h │ ├── util.h │ ├── w5100.cpp │ └── w5100.h ├── FHT ├── 128_reorder.inc ├── 16_reorder.inc ├── 256_reorder.inc ├── 32_reorder.inc ├── 64_reorder.inc ├── FHT.h ├── cas_lookup_128.inc ├── cas_lookup_16.inc ├── cas_lookup_256.inc ├── cas_lookup_32.inc ├── cas_lookup_64.inc ├── decibel.inc ├── examples │ ├── fht_adc │ │ └── fht_adc.pde │ ├── fht_adc_serial │ │ └── fht_adc_serial.pde │ └── fht_codec │ │ └── fht_codec.pde ├── fht_read_me.txt ├── hann_128.inc ├── hann_16.inc ├── hann_256.inc ├── hann_32.inc ├── hann_64.inc ├── hann_window.inc ├── keywords.txt ├── sqrtlookup16.inc └── sqrtlookup8.inc ├── FastLED-GFX-master ├── FastLED_GFX.cpp ├── FastLED_GFX.h ├── Fonts │ ├── FreeMono12pt7b.h │ ├── FreeMono18pt7b.h │ ├── FreeMono24pt7b.h │ ├── FreeMono9pt7b.h │ ├── FreeMonoBold12pt7b.h │ ├── FreeMonoBold18pt7b.h │ ├── FreeMonoBold24pt7b.h │ ├── FreeMonoBold9pt7b.h │ ├── FreeMonoBoldOblique12pt7b.h │ ├── FreeMonoBoldOblique18pt7b.h │ ├── FreeMonoBoldOblique24pt7b.h │ ├── FreeMonoBoldOblique9pt7b.h │ ├── FreeMonoOblique12pt7b.h │ ├── FreeMonoOblique18pt7b.h │ ├── FreeMonoOblique24pt7b.h │ ├── FreeMonoOblique9pt7b.h │ ├── FreeSans12pt7b.h │ ├── FreeSans18pt7b.h │ ├── FreeSans24pt7b.h │ ├── FreeSans9pt7b.h │ ├── FreeSansBold12pt7b.h │ ├── FreeSansBold18pt7b.h │ ├── FreeSansBold24pt7b.h │ ├── FreeSansBold9pt7b.h │ ├── FreeSansBoldOblique12pt7b.h │ ├── FreeSansBoldOblique18pt7b.h │ ├── FreeSansBoldOblique24pt7b.h │ ├── FreeSansBoldOblique9pt7b.h │ ├── FreeSansOblique12pt7b.h │ ├── FreeSansOblique18pt7b.h │ ├── FreeSansOblique24pt7b.h │ ├── FreeSansOblique9pt7b.h │ ├── FreeSerif12pt7b.h │ ├── FreeSerif18pt7b.h │ ├── FreeSerif24pt7b.h │ ├── FreeSerif9pt7b.h │ ├── FreeSerifBold12pt7b.h │ ├── FreeSerifBold18pt7b.h │ ├── FreeSerifBold24pt7b.h │ ├── FreeSerifBold9pt7b.h │ ├── FreeSerifBoldItalic12pt7b.h │ ├── FreeSerifBoldItalic18pt7b.h │ ├── FreeSerifBoldItalic24pt7b.h │ ├── FreeSerifBoldItalic9pt7b.h │ ├── FreeSerifItalic12pt7b.h │ ├── FreeSerifItalic18pt7b.h │ ├── FreeSerifItalic24pt7b.h │ └── FreeSerifItalic9pt7b.h ├── LICENSE ├── README.md ├── fontconvert │ ├── Makefile │ ├── fontconvert.c │ └── makefonts.sh ├── gfxfont.h ├── glcdfont.c ├── library.properties └── license.txt ├── FastLED-master ├── .gitignore ├── FastLED.cpp ├── FastLED.h ├── LICENSE ├── PORTING.md ├── README.md ├── bitswap.cpp ├── bitswap.h ├── chipsets.h ├── color.h ├── colorpalettes.cpp ├── colorpalettes.h ├── colorutils.cpp ├── colorutils.h ├── controller.h ├── cpp_compat.h ├── dmx.h ├── docs │ ├── Doxyfile │ └── mainpage.dox ├── examples │ ├── AnalogOutput │ │ └── AnalogOutput.ino │ ├── Blink │ │ └── Blink.ino │ ├── ColorPalette │ │ └── ColorPalette.ino │ ├── ColorTemperature │ │ └── ColorTemperature.ino │ ├── Cylon │ │ └── Cylon.ino │ ├── DemoReel100 │ │ └── DemoReel100.ino │ ├── DemoReelESP32 │ │ └── DemoReelESP32.ino │ ├── Fire2012 │ │ └── Fire2012.ino │ ├── Fire2012WithPalette │ │ └── Fire2012WithPalette.ino │ ├── FirstLight │ │ └── FirstLight.ino │ ├── Multiple │ │ ├── ArrayOfLedArrays │ │ │ └── ArrayOfLedArrays.ino │ │ ├── MirroringSample │ │ │ └── MirroringSample.ino │ │ ├── MultiArrays │ │ │ └── MultiArrays.ino │ │ ├── MultipleStripsInOneArray │ │ │ └── MultipleStripsInOneArray.ino │ │ ├── OctoWS2811Demo │ │ │ └── OctoWS2811Demo.ino │ │ └── ParallelOutputDemo │ │ │ └── ParallelOutputDemo.ino │ ├── Noise │ │ └── Noise.ino │ ├── NoisePlayground │ │ └── NoisePlayground.ino │ ├── NoisePlusPalette │ │ └── NoisePlusPalette.ino │ ├── Pintest │ │ └── Pintest.ino │ ├── Ports │ │ └── PJRCSpectrumAnalyzer │ │ │ └── PJRCSpectrumAnalyzer.ino │ ├── RGBCalibrate │ │ └── RGBCalibrate.ino │ ├── RGBSetDemo │ │ └── RGBSetDemo.ino │ ├── SmartMatrix │ │ └── SmartMatrix.ino │ └── XYMatrix │ │ └── XYMatrix.ino ├── extras │ ├── AppleII.s65 │ ├── FastLED6502.s65 │ ├── RainbowDemo.bin.zip │ └── RainbowDemo.s65 ├── fastled_config.h ├── fastled_delay.h ├── fastled_progmem.h ├── fastpin.h ├── fastspi.h ├── fastspi_bitbang.h ├── fastspi_dma.h ├── fastspi_nop.h ├── fastspi_ref.h ├── fastspi_types.h ├── hsv2rgb.cpp ├── hsv2rgb.h ├── keywords.txt ├── led_sysdefs.h ├── lib8tion.cpp ├── lib8tion.h ├── lib8tion │ ├── math8.h │ ├── random8.h │ ├── scale8.h │ └── trig8.h ├── library.json ├── library.properties ├── noise.cpp ├── noise.h ├── pixelset.h ├── pixeltypes.h ├── platforms.h ├── platforms │ ├── arm │ │ ├── common │ │ │ └── m0clockless.h │ │ ├── d21 │ │ │ ├── clockless_arm_d21.h │ │ │ ├── fastled_arm_d21.h │ │ │ ├── fastpin_arm_d21.h │ │ │ └── led_sysdefs_arm_d21.h │ │ ├── k20 │ │ │ ├── clockless_arm_k20.h │ │ │ ├── clockless_block_arm_k20.h │ │ │ ├── fastled_arm_k20.h │ │ │ ├── fastpin_arm_k20.h │ │ │ ├── fastspi_arm_k20.h │ │ │ ├── led_sysdefs_arm_k20.h │ │ │ ├── octows2811_controller.h │ │ │ ├── smartmatrix_t3.h │ │ │ └── ws2812serial_controller.h │ │ ├── k66 │ │ │ ├── clockless_arm_k66.h │ │ │ ├── clockless_block_arm_k66.h │ │ │ ├── fastled_arm_k66.h │ │ │ ├── fastpin_arm_k66.h │ │ │ ├── fastspi_arm_k66.h │ │ │ └── led_sysdefs_arm_k66.h │ │ ├── kl26 │ │ │ ├── clockless_arm_kl26.h │ │ │ ├── fastled_arm_kl26.h │ │ │ ├── fastpin_arm_kl26.h │ │ │ ├── fastspi_arm_kl26.h │ │ │ └── led_sysdefs_arm_kl26.h │ │ ├── nrf51 │ │ │ ├── clockless_arm_nrf51.h │ │ │ ├── fastled_arm_nrf51.h │ │ │ ├── fastpin_arm_nrf51.h │ │ │ ├── fastspi_arm_nrf51.h │ │ │ └── led_sysdefs_arm_nrf51.h │ │ ├── sam │ │ │ ├── clockless_arm_sam.h │ │ │ ├── clockless_block_arm_sam.h │ │ │ ├── fastled_arm_sam.h │ │ │ ├── fastpin_arm_sam.h │ │ │ ├── fastspi_arm_sam.h │ │ │ └── led_sysdefs_arm_sam.h │ │ └── stm32 │ │ │ ├── clockless_arm_stm32.h │ │ │ ├── fastled_arm_stm32.h │ │ │ ├── fastpin_arm_stm32.h │ │ │ └── led_sysdefs_arm_stm32.h │ ├── avr │ │ ├── clockless_trinket.h │ │ ├── fastled_avr.h │ │ ├── fastpin_avr.h │ │ ├── fastspi_avr.h │ │ └── led_sysdefs_avr.h │ └── esp │ │ ├── 32 │ │ ├── clockless_block_esp32.h │ │ ├── clockless_esp32.h │ │ ├── fastled_esp32.h │ │ ├── fastpin_esp32.h │ │ └── led_sysdefs_esp32.h │ │ └── 8266 │ │ ├── clockless_block_esp8266.h │ │ ├── clockless_esp8266.h │ │ ├── fastled_esp8266.h │ │ ├── fastpin_esp8266.h │ │ └── led_sysdefs_esp8266.h ├── power_mgt.cpp ├── power_mgt.h ├── preview_changes.txt ├── release_notes.md └── wiring.cpp ├── Firmata ├── Boards.h ├── Firmata.cpp ├── Firmata.h ├── FirmataConstants.h ├── FirmataDefines.h ├── FirmataMarshaller.cpp ├── FirmataMarshaller.h ├── FirmataParser.cpp ├── FirmataParser.h ├── LICENSE.txt ├── examples │ ├── AllInputsFirmata │ │ └── AllInputsFirmata.ino │ ├── AnalogFirmata │ │ └── AnalogFirmata.ino │ ├── EchoString │ │ └── EchoString.ino │ ├── OldStandardFirmata │ │ ├── LICENSE.txt │ │ └── OldStandardFirmata.ino │ ├── ServoFirmata │ │ └── ServoFirmata.ino │ ├── SimpleAnalogFirmata │ │ └── SimpleAnalogFirmata.ino │ ├── SimpleDigitalFirmata │ │ └── SimpleDigitalFirmata.ino │ ├── StandardFirmata │ │ ├── LICENSE.txt │ │ └── StandardFirmata.ino │ ├── StandardFirmataBLE │ │ ├── LICENSE.txt │ │ ├── StandardFirmataBLE.ino │ │ └── bleConfig.h │ ├── StandardFirmataChipKIT │ │ ├── LICENSE.txt │ │ └── StandardFirmataChipKIT.ino │ ├── StandardFirmataEthernet │ │ ├── LICENSE.txt │ │ ├── StandardFirmataEthernet.ino │ │ └── ethernetConfig.h │ ├── StandardFirmataPlus │ │ ├── LICENSE.txt │ │ └── StandardFirmataPlus.ino │ └── StandardFirmataWiFi │ │ ├── LICENSE.txt │ │ ├── StandardFirmataWiFi.ino │ │ └── wifiConfig.h ├── extras │ └── revisions.txt ├── keywords.txt ├── library.properties ├── readme.md ├── release.sh ├── test │ ├── firmata_test │ │ └── firmata_test.ino │ └── readme.md └── utility │ ├── BLEStream.cpp │ ├── BLEStream.h │ ├── EthernetClientStream.cpp │ ├── EthernetClientStream.h │ ├── FirmataFeature.h │ ├── SerialFirmata.cpp │ ├── SerialFirmata.h │ ├── WiFiClientStream.h │ ├── WiFiServerStream.h │ ├── WiFiStream.cpp │ ├── WiFiStream.h │ └── firmataDebug.h ├── GSM ├── README.adoc ├── examples │ ├── GsmWebClient │ │ └── GsmWebClient.ino │ ├── GsmWebServer │ │ └── GsmWebServer.ino │ ├── MakeVoiceCall │ │ └── MakeVoiceCall.ino │ ├── ReceiveSMS │ │ └── ReceiveSMS.ino │ ├── ReceiveVoiceCall │ │ └── ReceiveVoiceCall.ino │ ├── SendSMS │ │ └── SendSMS.ino │ └── Tools │ │ ├── BandManagement │ │ └── BandManagement.ino │ │ ├── GsmScanNetworks │ │ └── GsmScanNetworks.ino │ │ ├── PinManagement │ │ └── PinManagement.ino │ │ ├── TestGPRS │ │ └── TestGPRS.ino │ │ ├── TestModem │ │ └── TestModem.ino │ │ └── TestWebServer │ │ └── TestWebServer.ino ├── extras │ └── License.txt ├── keywords.txt ├── library.properties └── src │ ├── GSM.h │ ├── GSM3CircularBuffer.cpp │ ├── GSM3CircularBuffer.h │ ├── GSM3IO.h │ ├── GSM3MobileAccessProvider.cpp │ ├── GSM3MobileAccessProvider.h │ ├── GSM3MobileCellManagement.cpp │ ├── GSM3MobileCellManagement.h │ ├── GSM3MobileClientProvider.cpp │ ├── GSM3MobileClientProvider.h │ ├── GSM3MobileClientService.cpp │ ├── GSM3MobileClientService.h │ ├── GSM3MobileDataNetworkProvider.cpp │ ├── GSM3MobileDataNetworkProvider.h │ ├── GSM3MobileMockupProvider.cpp │ ├── GSM3MobileMockupProvider.h │ ├── GSM3MobileNetworkProvider.cpp │ ├── GSM3MobileNetworkProvider.h │ ├── GSM3MobileNetworkRegistry.cpp │ ├── GSM3MobileNetworkRegistry.h │ ├── GSM3MobileSMSProvider.cpp │ ├── GSM3MobileSMSProvider.h │ ├── GSM3MobileServerProvider.cpp │ ├── GSM3MobileServerProvider.h │ ├── GSM3MobileServerService.cpp │ ├── GSM3MobileServerService.h │ ├── GSM3MobileVoiceProvider.cpp │ ├── GSM3MobileVoiceProvider.h │ ├── GSM3SMSService.cpp │ ├── GSM3SMSService.h │ ├── GSM3ShieldV1.cpp │ ├── GSM3ShieldV1.h │ ├── GSM3ShieldV1AccessProvider.cpp │ ├── GSM3ShieldV1AccessProvider.h │ ├── GSM3ShieldV1BandManagement.cpp │ ├── GSM3ShieldV1BandManagement.h │ ├── GSM3ShieldV1BaseProvider.cpp │ ├── GSM3ShieldV1BaseProvider.h │ ├── GSM3ShieldV1CellManagement.cpp │ ├── GSM3ShieldV1CellManagement.h │ ├── GSM3ShieldV1ClientProvider.cpp │ ├── GSM3ShieldV1ClientProvider.h │ ├── GSM3ShieldV1DataNetworkProvider.cpp │ ├── GSM3ShieldV1DataNetworkProvider.h │ ├── GSM3ShieldV1DirectModemProvider.cpp │ ├── GSM3ShieldV1DirectModemProvider.h │ ├── GSM3ShieldV1ModemCore.cpp │ ├── GSM3ShieldV1ModemCore.h │ ├── GSM3ShieldV1ModemVerification.cpp │ ├── GSM3ShieldV1ModemVerification.h │ ├── GSM3ShieldV1MultiClientProvider.cpp │ ├── GSM3ShieldV1MultiClientProvider.h │ ├── GSM3ShieldV1MultiServerProvider.cpp │ ├── GSM3ShieldV1MultiServerProvider.h │ ├── GSM3ShieldV1PinManagement.cpp │ ├── GSM3ShieldV1PinManagement.h │ ├── GSM3ShieldV1SMSProvider.cpp │ ├── GSM3ShieldV1SMSProvider.h │ ├── GSM3ShieldV1ScanNetworks.cpp │ ├── GSM3ShieldV1ScanNetworks.h │ ├── GSM3ShieldV1ServerProvider.cpp │ ├── GSM3ShieldV1ServerProvider.h │ ├── GSM3ShieldV1VoiceProvider.cpp │ ├── GSM3ShieldV1VoiceProvider.h │ ├── GSM3SoftSerial.cpp │ ├── GSM3SoftSerial.h │ ├── GSM3VoiceCallService.cpp │ └── GSM3VoiceCallService.h ├── GSMSHIELD ├── GSM.cpp ├── GSM.h ├── HWSerial.cpp ├── HWSerial.h ├── LOG.cpp ├── LOG.h ├── README ├── SIM900.cpp ├── SIM900.h ├── Streaming.h ├── WideTextFinder.cpp ├── WideTextFinder.h ├── call.cpp ├── call.h ├── doc │ ├── Istructions.txt │ └── List.txt ├── examples │ ├── GSM_GPRSLibrary_AT │ │ └── GSM_GPRSLibrary_AT.ino │ ├── GSM_GPRSLibrary_Call │ │ └── GSM_GPRSLibrary_Call.ino │ ├── GSM_GPRSLibrary_Client │ │ └── GSM_GPRSLibrary_Client.ino │ ├── GSM_GPRSLibrary_GPS │ │ └── GSM_GPRSLibrary_GPS.ino │ ├── GSM_GPRSLibrary_SMS │ │ └── GSM_GPRSLibrary_SMS.ino │ └── GSM_GPRSLibrary_Server │ │ └── GSM_GPRSLibrary_Server.ino ├── gps.cpp ├── gps.h ├── inetGSM.cpp ├── inetGSM.h ├── sms.cpp └── sms.h ├── GyverButton ├── GyverButton.cpp ├── GyverButton.h ├── examples │ ├── Gbutton_example │ │ └── Gbutton_example.ino │ ├── Gbutton_timer_interrupt │ │ └── Gbutton_timer_interrupt.ino │ ├── _1-2-3-click │ │ └── _1-2-3-click.ino │ ├── _5_buttons │ │ └── _5_buttons.ino │ ├── increment │ │ └── increment.ino │ └── many_clicks │ │ └── many_clicks.ino └── keywords.txt ├── GyverEncoder ├── GyverEncoder.cpp ├── GyverEncoder.h ├── examples │ ├── encoder_w_Switch │ │ └── encoder_w_Switch.ino │ └── two_encoders │ │ └── two_encoders.ino └── keywords.txt ├── GyverHacks ├── GParsingStream.h ├── GyverHacks.cpp ├── GyverHacks.h ├── examples │ ├── GFilterRA │ │ └── GFilterRA.ino │ ├── GParsingStream │ │ └── GParsingStream.ino │ ├── GParsingStream_send │ │ └── GParsingStream_send.ino │ ├── GTimer │ │ └── GTimer.ino │ ├── GTimer_multiple │ │ └── GTimer_multiple.ino │ ├── PWMfreq │ │ └── PWMfreq.ino │ └── Screenshot_2.jpg └── keywords.txt ├── GyverMotor ├── GyverMotor.cpp ├── GyverMotor.h ├── examples │ ├── motor_control │ │ └── motor_control.ino │ ├── motor_control_10bit │ │ └── motor_control_10bit.ino │ └── motor_control_31kHz │ │ └── motor_control_31kHz.ino └── keywords.txt ├── GyverRC ├── GyverRC.cpp ├── GyverRC.h └── keywords.txt ├── GyverRGB ├── GyverRGB.cpp ├── GyverRGB.h ├── examples │ ├── HSV_LED_driver │ │ └── HSV_LED_driver.ino │ ├── HSV_led │ │ └── HSV_led.ino │ ├── RGB_led │ │ └── RGB_led.ino │ ├── colors │ │ └── colors.ino │ └── smooth_color │ │ └── smooth_color.ino └── keywords.txt ├── GyverRTOS ├── GyverRTOS.h ├── examples │ ├── multitaskComments │ │ └── multitaskComments.ino │ ├── multitaskNew │ │ └── multitaskNew.ino │ └── multitaskShort │ │ └── multitaskShort.ino └── keywords.txt ├── I2Cdev ├── I2Cdev.cpp ├── I2Cdev.h ├── keywords.txt └── library.json ├── IRLremote-master ├── Readme.md ├── dev │ └── Interpreting Decoded IR Signals (v2.43).htm ├── examples │ ├── Convert_Old_Nec │ │ └── Convert_Old_Nec.ino │ ├── NecAPI │ │ └── NecAPI.ino │ ├── Receive │ │ └── Receive.ino │ ├── Receive_Raw │ │ └── Receive_Raw.ino │ ├── Receive_fastled │ │ └── Receive_fastled.ino │ ├── Receive_neopix │ │ └── Receive_neopix.ino │ ├── Send_Button │ │ └── Send_Button.ino │ ├── Send_Serial │ │ └── Send_Serial.ino │ └── Transceive │ │ └── Transceive.ino ├── extra │ └── old │ │ ├── IRL_Hash.hpp │ │ ├── IRL_RawIR.hpp │ │ ├── IRL_Sony.hpp │ │ ├── IRLremote.cpp │ │ ├── IRLremoteReceive.hpp │ │ └── IRLremoteTransmit.hpp ├── header.jpg ├── keywords.txt ├── library.properties └── src │ ├── IRL_Decode.h │ ├── IRL_Hash.h │ ├── IRL_Keycodes.h │ ├── IRL_Nec.h │ ├── IRL_NecAPI.h │ ├── IRL_Panasonic.h │ ├── IRL_Platform.h │ ├── IRL_Protocol.h │ ├── IRL_Receive.h │ ├── IRL_Time.h │ ├── IRLremote.cpp │ └── IRLremote.h ├── IRremote ├── Contributing.md ├── Contributors.md ├── IRremote.cpp ├── IRremote.h ├── IRremoteInt.h ├── ISSUE_TEMPLATE.md ├── LICENSE.txt ├── README.md ├── boarddefs.h ├── changelog.md ├── esp32.cpp ├── examples │ ├── .DS_Store │ ├── AiwaRCT501SendDemo │ │ └── AiwaRCT501SendDemo.ino │ ├── IRrecord │ │ └── IRrecord.ino │ ├── IRrecvDemo │ │ └── IRrecvDemo.ino │ ├── IRrecvDump │ │ └── IRrecvDump.ino │ ├── IRrecvDumpV2 │ │ └── IRrecvDumpV2.ino │ ├── IRrelay │ │ └── IRrelay.ino │ ├── IRremoteInfo │ │ └── IRremoteInfo.ino │ ├── IRsendDemo │ │ └── IRsendDemo.ino │ ├── IRsendRawDemo │ │ └── IRsendRawDemo.ino │ ├── IRtest │ │ └── IRtest.ino │ ├── IRtest2 │ │ └── IRtest2.ino │ ├── JVCPanasonicSendDemo │ │ └── JVCPanasonicSendDemo.ino │ ├── LGACSendDemo │ │ ├── LGACSendDemo.ino │ │ └── LGACSendDemo.md │ ├── LegoPowerFunctionsSendDemo │ │ └── LegoPowerFunctionsSendDemo.ino │ └── LegoPowerFunctionsTests │ │ └── LegoPowerFunctionsTests.ino ├── irPronto.cpp ├── irRecv.cpp ├── irSend.cpp ├── ir_Aiwa.cpp ├── ir_Denon.cpp ├── ir_Dish.cpp ├── ir_JVC.cpp ├── ir_LG.cpp ├── ir_Lego_PF.cpp ├── ir_Lego_PF_BitStreamEncoder.h ├── ir_Mitsubishi.cpp ├── ir_NEC.cpp ├── ir_Panasonic.cpp ├── ir_RC5_RC6.cpp ├── ir_Samsung.cpp ├── ir_Sanyo.cpp ├── ir_Sharp.cpp ├── ir_Sony.cpp ├── ir_Template.cpp ├── ir_Whynter.cpp ├── keywords.txt ├── library.json ├── library.properties └── sam.cpp ├── Kalman_accel ├── Graph │ ├── Convert.pde │ ├── DrawAxis.pde │ └── Graph.pde ├── Kalman.h ├── MPU6050 │ └── MPU6050.ino ├── README └── examples │ └── kalmanprimer │ └── kalmanprimer.ino ├── Keyboard ├── README.adoc ├── keywords.txt ├── library.properties └── src │ ├── Keyboard.cpp │ └── Keyboard.h ├── Keypad-master ├── LICENSE ├── README.md ├── examples │ ├── CustomKeypad │ │ └── CustomKeypad.ino │ ├── DynamicKeypad │ │ └── DynamicKeypad.ino │ ├── EventKeypad │ │ └── EventKeypad.ino │ ├── HelloKeypad │ │ └── HelloKeypad.ino │ ├── HelloKeypad3 │ │ └── HelloKeypad3.ino │ ├── MultiKey │ │ └── MultiKey.ino │ └── loopCounter │ │ └── loopCounter.ino ├── keywords.txt ├── library.properties └── src │ ├── Key.cpp │ ├── Key.h │ ├── Keypad.cpp │ └── Keypad.h ├── LCD_1602_RUS ├── LCD_1602_RUS.cpp ├── LCD_1602_RUS.h ├── LICENSE ├── README.md ├── examples │ ├── HelloWorld │ │ └── HelloWorld.ino │ └── SerialToLCD │ │ └── SerialToLCD.ino └── library.properties ├── LedControl-master ├── LICENSE ├── README.md ├── examples │ ├── LCDemo7Segment │ │ └── LCDemo7Segment.ino │ ├── LCDemoCascadedDevices │ │ └── LCDemoCascadedDevices.ino │ └── LCDemoMatrix │ │ └── LCDemoMatrix.ino ├── keywords.txt ├── library.properties └── src │ ├── LedControl.cpp │ └── LedControl.h ├── LiquidCrystal ├── README.adoc ├── examples │ ├── Autoscroll │ │ └── Autoscroll.ino │ ├── Blink │ │ └── Blink.ino │ ├── Cursor │ │ └── Cursor.ino │ ├── CustomCharacter │ │ └── CustomCharacter.ino │ ├── Display │ │ └── Display.ino │ ├── HelloWorld │ │ └── HelloWorld.ino │ ├── Scroll │ │ └── Scroll.ino │ ├── SerialDisplay │ │ └── SerialDisplay.ino │ ├── TextDirection │ │ └── TextDirection.ino │ └── setCursor │ │ └── setCursor.ino ├── keywords.txt ├── library.properties └── src │ ├── LiquidCrystal.cpp │ └── LiquidCrystal.h ├── LiquidCrystalRus ├── COPYING ├── LiquidCrystalRus.cpp ├── LiquidCrystalRus.h ├── README ├── examples │ ├── AlphabetRus │ │ └── AlphabetRus.ino │ └── HelloWorldRus │ │ └── HelloWorldRus.ino └── keywords.txt ├── LiquidCrystal_I2C-master ├── LiquidCrystal_I2C.cpp ├── LiquidCrystal_I2C.h ├── LiquidCrystal_I2C.o ├── README.md ├── examples │ ├── CustomChars │ │ └── CustomChars.pde │ ├── HelloWorld │ │ └── HelloWorld.pde │ └── SerialDisplay │ │ └── SerialDisplay.pde ├── keywords.txt ├── library.json └── library.properties ├── Low-Power-master ├── Examples │ ├── idleWakePeriodic │ │ └── idleWakePeriodic.ino │ ├── powerDownWakeExternalInterrupt │ │ └── powerDownWakeExternalInterrupt.ino │ ├── powerDownWakePeriodic │ │ └── powerDownWakePeriodic.ino │ └── standbyExternalInterruptSAMD21 │ │ └── standbyExternalInterruptSAMD21.ino ├── LowPower.cpp ├── LowPower.h ├── README.md ├── keywords.txt └── library.properties ├── MPU6050 ├── MPU6050.cpp ├── MPU6050.h ├── MPU6050_6Axis_MotionApps20.h ├── MPU6050_9Axis_MotionApps41.h ├── examples │ ├── IMU_Zero │ │ └── IMU_Zero.ino │ ├── MPU6050_DMP6 │ │ ├── MPU6050_DMP6.ino │ │ └── Processing │ │ │ └── MPUTeapot │ │ │ └── MPUTeapot.pde │ ├── MPU6050_DMP6_Ethernet │ │ └── MPU6050_DMP6_Ethernet.ino │ └── MPU6050_raw │ │ └── MPU6050_raw.ino ├── helper_3dmath.h └── library.json ├── Mouse ├── README.adoc ├── keywords.txt ├── library.properties └── src │ ├── Mouse.cpp │ └── Mouse.h ├── MyMenu ├── MyMenu.cpp ├── MyMenu.h ├── README.md └── examples │ └── ShoppingList │ └── ShoppingList.ino ├── NewPing ├── NewPing.cpp ├── NewPing.h ├── examples │ ├── NewPing15Sensors │ │ └── NewPing15Sensors.pde │ ├── NewPingEventTimer │ │ └── NewPingEventTimer.pde │ ├── NewPingExample │ │ └── NewPingExample.pde │ └── TimerExample │ │ └── TimerExample.pde └── keywords.txt ├── OLED_I2C ├── DefaultFonts.c ├── Documentation │ ├── OLED_I2C.pdf │ └── version.txt ├── License │ ├── License - CC BY-NC-SA 3.0 - Legal.pdf │ └── License - CC BY-NC-SA 3.0 - Summary.pdf ├── OLED_I2C.cpp ├── OLED_I2C.h ├── examples │ ├── Arduino │ │ ├── OLED_I2C_3D_Cube │ │ │ └── OLED_I2C_3D_Cube.ino │ │ ├── OLED_I2C_Bitmap │ │ │ ├── OLED_I2C_Bitmap.ino │ │ │ └── graphics.c │ │ ├── OLED_I2C_Brightness │ │ │ └── OLED_I2C_Brightness.ino │ │ ├── OLED_I2C_Graph_Demo │ │ │ ├── OLED_I2C_Graph_Demo.ino │ │ │ └── graphics.c │ │ ├── OLED_I2C_NumberFonts │ │ │ └── OLED_I2C_NumberFonts.ino │ │ ├── OLED_I2C_Scrolling_Text │ │ │ └── OLED_I2C_Scrolling_Text.ino │ │ ├── OLED_I2C_TinyFont_View │ │ │ └── OLED_I2C_TinyFont_View.ino │ │ └── OLED_I2C_ViewFont │ │ │ └── OLED_I2C_ViewFont.ino │ └── chipKit │ │ ├── OLED_I2C_3D_Cube │ │ └── OLED_I2C_3D_Cube.ino │ │ ├── OLED_I2C_Bitmap │ │ ├── OLED_I2C_Bitmap.ino │ │ └── graphics.c │ │ ├── OLED_I2C_Brightness │ │ └── OLED_I2C_Brightness.ino │ │ ├── OLED_I2C_Graph_Demo │ │ ├── OLED_I2C_Graph_Demo.ino │ │ └── graphics.c │ │ ├── OLED_I2C_NumberFonts │ │ └── OLED_I2C_NumberFonts.ino │ │ ├── OLED_I2C_Scrolling_Text │ │ └── OLED_I2C_Scrolling_Text.ino │ │ ├── OLED_I2C_TinyFont_View │ │ └── OLED_I2C_TinyFont_View.ino │ │ └── OLED_I2C_ViewFont │ │ └── OLED_I2C_ViewFont.ino ├── hardware │ ├── arm │ │ ├── HW_ARM.h │ │ └── HW_ARM_defines.h │ ├── avr │ │ ├── HW_AVR.h │ │ └── HW_AVR_defines.h │ └── pic32 │ │ ├── HW_PIC32.h │ │ └── HW_PIC32_defines.h └── keywords.txt ├── OneButton-master ├── .gitignore ├── LICENSE ├── README.md ├── examples │ ├── BlinkMachine │ │ └── BlinkMachine.ino │ ├── InterruptOneButton │ │ └── InterruptOneButton.ino │ ├── SimpleOneButton │ │ └── SimpleOneButton.ino │ └── TwoButtons │ │ └── TwoButtons.ino ├── keywords.txt ├── library.json ├── library.properties └── src │ ├── OneButton.cpp │ └── OneButton.h ├── OneWire ├── OneWire.cpp └── OneWire.h ├── PWM ├── PWM.h ├── PWM_lib_RUS │ └── PWM_lib_RUS.ino ├── keywords.txt └── utility │ ├── ATimerDefs.cpp │ ├── ATimerDefs.h │ ├── BTimerDefs.cpp │ └── BTimerDefs.h ├── README.md ├── RF24-master ├── RF24.cpp ├── RF24.h ├── RF24_config.h ├── examples │ ├── GettingStarted │ │ └── GettingStarted.ino │ ├── Serial_Chat │ │ ├── nRF24_Serial_Chat.ino │ │ └── printf.h │ ├── Transfer │ │ └── Transfer.ino │ ├── TransferTimeouts │ │ └── TransferTimeouts.ino │ ├── Usage │ │ ├── led_remote │ │ │ ├── Jamfile │ │ │ └── led_remote.pde │ │ ├── nordic_fob │ │ │ ├── Jamfile │ │ │ └── nordic_fob.pde │ │ └── pingpair_maple │ │ │ ├── Jamfile │ │ │ ├── main.cpp │ │ │ └── pingpair_maple.pde │ ├── pingpair_ack │ │ └── pingpair_ack.ino │ ├── pingpair_dyn │ │ ├── pingpair_dyn.ino │ │ └── printf.h │ ├── pingpair_irq │ │ ├── pingpair_irq.ino │ │ ├── pingpair_irq.pde │ │ └── printf.h │ ├── pingpair_multi_dyn │ │ ├── Jamfile │ │ ├── pingpair_multi_dyn.pde │ │ └── printf.h │ ├── pingpair_sleepy │ │ ├── pingpair_sleepy.ino │ │ ├── pingpair_sleepy.pde │ │ └── printf.h │ ├── scanner │ │ ├── Jamfile │ │ ├── output │ │ │ ├── core.a │ │ │ ├── scanner.cpp │ │ │ ├── scanner.elf │ │ │ └── scanner.hex │ │ └── scanner.ino │ └── starping │ │ ├── Jamfile │ │ ├── printf.h │ │ └── starping.pde ├── keywords.txt ├── nRF24L01.h └── printf.h ├── RF24Audio-master ├── .gitattributes ├── .gitignore ├── README.md ├── RF24Audio.cpp ├── RF24Audio.h ├── bit-rate.png ├── examples │ ├── GettingStarted │ │ ├── GettingStarted.ino │ │ └── printf.h │ ├── Minimal │ │ ├── Minimal.ino │ │ └── printf.h │ ├── PrivateChannels │ │ ├── PrivateChannels.ino │ │ └── printf.h │ ├── PrivateGroups │ │ ├── PrivateGroups.ino │ │ └── printf.h │ ├── RPi-Linux │ │ ├── Makefile │ │ ├── README.md │ │ ├── audio.cpp │ │ ├── houston16.wav │ │ └── houston24.wav │ └── USB_Audio │ │ ├── USB_Audio.ino │ │ └── printf.h └── userConfig.h ├── RF24V ├── RF24V.cpp ├── RF24V.h ├── Screenshot_1.png ├── examples │ ├── reader │ │ └── reader.ino │ └── transfer │ │ └── transfer.ino └── settings.h ├── RF433_iarduino ├── examples │ └── check │ │ └── check.ino ├── keywords.txt ├── library.properties └── src │ ├── iarduino_RF433.cpp │ ├── iarduino_RF433.h │ ├── iarduino_RF433_Receiver.h │ └── iarduino_RF433_Transmitter.h ├── RTClib-master ├── README.md ├── RTClib.cpp ├── RTClib.h ├── examples │ ├── datecalc │ │ └── datecalc.ino │ ├── ds1307 │ │ └── ds1307.ino │ ├── ds1307SqwPin │ │ └── ds1307SqwPin.ino │ ├── ds1307nvram │ │ └── ds1307nvram.ino │ ├── ds3231 │ │ └── ds3231.ino │ ├── pcf8523 │ │ └── pcf8523.ino │ └── softrtc │ │ └── softrtc.ino ├── keywords.txt └── library.properties ├── RobotIRremote ├── README.adoc ├── extras │ ├── LICENSE.txt │ └── readme ├── keywords.txt ├── library.properties └── src │ ├── IRremote.cpp │ ├── IRremoteTools.cpp │ ├── RobotIRremote.h │ ├── RobotIRremoteInt.h │ └── RobotIRremoteTools.h ├── Robot_Control ├── README.adoc ├── examples │ ├── explore │ │ ├── R01_Logo │ │ │ └── R01_Logo.ino │ │ ├── R02_Line_Follow │ │ │ └── R02_Line_Follow.ino │ │ ├── R03_Disco_Bot │ │ │ └── R03_Disco_Bot.ino │ │ ├── R04_Compass │ │ │ └── R04_Compass.ino │ │ ├── R05_Inputs │ │ │ └── R05_Inputs.ino │ │ ├── R06_Wheel_Calibration │ │ │ ├── R06_Wheel_Calibration.ino │ │ │ └── scripts_library.h │ │ ├── R07_Runaway_Robot │ │ │ └── R07_Runaway_Robot.ino │ │ ├── R08_Remote_Control │ │ │ └── R08_Remote_Control.ino │ │ ├── R09_Picture_Browser │ │ │ └── R09_Picture_Browser.ino │ │ ├── R10_Rescue │ │ │ └── R10_Rescue.ino │ │ └── R11_Hello_User │ │ │ └── R11_Hello_User.ino │ └── learn │ │ ├── AllIOPorts │ │ └── AllIOPorts.ino │ │ ├── Beep │ │ └── Beep.ino │ │ ├── CleanEEPROM │ │ └── CleanEEPROM.ino │ │ ├── Compass │ │ └── Compass.ino │ │ ├── IRArray │ │ └── IRArray.ino │ │ ├── LCDDebugPrint │ │ └── LCDDebugPrint.ino │ │ ├── LCDPrint │ │ └── LCDPrint.ino │ │ ├── LCDWriteText │ │ └── LCDWriteText.ino │ │ ├── LineFollowWithPause │ │ └── LineFollowWithPause.ino │ │ ├── Melody │ │ └── Melody.ino │ │ ├── MotorTest │ │ └── MotorTest.ino │ │ ├── SpeedByPotentiometer │ │ └── SpeedByPotentiometer.ino │ │ ├── TurnTest │ │ └── TurnTest.ino │ │ └── keyboardTest │ │ └── keyboardTest.ino ├── library.properties └── src │ ├── ArduinoRobot.cpp │ ├── ArduinoRobot.h │ ├── Arduino_LCD.cpp │ ├── Arduino_LCD.h │ ├── Compass.cpp │ ├── Compass.h │ ├── EEPROM_I2C.cpp │ ├── EEPROM_I2C.h │ ├── EasyTransfer2.cpp │ ├── EasyTransfer2.h │ ├── Fat16.cpp │ ├── Fat16.h │ ├── Fat16Config.h │ ├── Fat16mainpage.h │ ├── Fat16util.h │ ├── FatStructs.h │ ├── Melody.cpp │ ├── Motors.cpp │ ├── Multiplexer.cpp │ ├── Multiplexer.h │ ├── RobotSdCard.cpp │ ├── SdCard.cpp │ ├── SdCard.h │ ├── SdInfo.h │ ├── Sensors.cpp │ ├── Squawk.cpp │ ├── Squawk.h │ ├── SquawkSD.cpp │ ├── SquawkSD.h │ ├── communication.cpp │ ├── glcdfont.c │ ├── helper.cpp │ ├── information.cpp │ ├── keyboard.cpp │ ├── lcd.cpp │ └── utility │ ├── Adafruit_GFX.cpp │ ├── Adafruit_GFX.h │ ├── RobotTextManager.cpp │ ├── RobotTextManager.h │ ├── VirtualKeyboard.cpp │ ├── VirtualKeyboard.h │ └── scripts_Hello_User.h ├── Robot_Motor ├── README.adoc ├── examples │ ├── Robot_IR_Array_Test │ │ └── Robot_IR_Array_Test.ino │ └── Robot_Motor_Core │ │ └── Robot_Motor_Core.ino ├── library.properties └── src │ ├── ArduinoRobotMotorBoard.cpp │ ├── ArduinoRobotMotorBoard.h │ ├── EasyTransfer2.cpp │ ├── EasyTransfer2.h │ ├── LineFollow.h │ ├── Multiplexer.cpp │ ├── Multiplexer.h │ └── lineFollow.cpp ├── SD ├── README.adoc ├── examples │ ├── CardInfo │ │ └── CardInfo.ino │ ├── Datalogger │ │ └── Datalogger.ino │ ├── DumpFile │ │ └── DumpFile.ino │ ├── Files │ │ └── Files.ino │ ├── ReadWrite │ │ └── ReadWrite.ino │ └── listfiles │ │ └── listfiles.ino ├── keywords.txt ├── library.properties └── src │ ├── File.cpp │ ├── README.txt │ ├── SD.cpp │ ├── SD.h │ └── utility │ ├── FatStructs.h │ ├── Sd2Card.cpp │ ├── Sd2Card.h │ ├── Sd2PinMap.h │ ├── SdFat.h │ ├── SdFatUtil.h │ ├── SdFatmainpage.h │ ├── SdFile.cpp │ ├── SdInfo.h │ └── SdVolume.cpp ├── SdFat-master ├── .gitattributes ├── .gitignore ├── LICENSE.md ├── README.md ├── examples │ ├── #attic │ │ ├── AnalogLogger │ │ │ └── AnalogLogger.ino │ │ ├── BaseExtCaseTest │ │ │ └── BaseExtCaseTest.ino │ │ ├── HelloWorld │ │ │ └── HelloWorld.ino │ │ ├── MiniSerial │ │ │ └── MiniSerial.ino │ │ ├── PrintBenchmarkSD │ │ │ └── PrintBenchmarkSD.ino │ │ ├── SD_Size │ │ │ └── SD_Size.ino │ │ ├── SdFatSize │ │ │ └── SdFatSize.ino │ │ ├── StreamParseInt │ │ │ └── StreamParseInt.ino │ │ ├── append │ │ │ └── append.ino │ │ ├── average │ │ │ └── average.ino │ │ ├── benchSD │ │ │ └── benchSD.ino │ │ ├── bufstream │ │ │ └── bufstream.ino │ │ ├── cin_cout │ │ │ └── cin_cout.ino │ │ ├── eventlog │ │ │ └── eventlog.ino │ │ ├── fgetsRewrite │ │ │ └── fgetsRewrite.ino │ │ ├── readlog │ │ │ └── readlog.ino │ │ └── readme.txt │ ├── AnalogBinLogger │ │ ├── AnalogBinLogger.h │ │ └── AnalogBinLogger.ino │ ├── DirectoryFunctions │ │ └── DirectoryFunctions.ino │ ├── LongFileName │ │ ├── LongFileName.ino │ │ └── testFiles │ │ │ ├── A long name can be 255 characters.txt │ │ │ ├── LFN,NAME.TXT │ │ │ ├── MIXCASE.txt │ │ │ ├── Not_8_3.txt │ │ │ ├── OK%83.TXT │ │ │ ├── STD_8_3.TXT │ │ │ ├── With Blank.txt │ │ │ ├── With.Two dots.txt │ │ │ ├── lower.txt │ │ │ └── mixed.TXT │ ├── LowLatencyLogger │ │ ├── LowLatencyLogger.ino │ │ ├── UserFunctions.cpp │ │ └── UserTypes.h │ ├── LowLatencyLoggerADXL345 │ │ ├── LowLatencyLogger.ino │ │ ├── LowLatencyLoggerADXL345.ino │ │ ├── UserFunctions.cpp │ │ ├── UserTypes.h │ │ └── readme.txt │ ├── LowLatencyLoggerMPU6050 │ │ ├── LowLatencyLogger.ino │ │ ├── LowLatencyLoggerMPU6050.ino │ │ ├── UserFunctions.cpp │ │ └── UserTypes.h │ ├── OpenNext │ │ └── OpenNext.ino │ ├── PrintBenchmark │ │ └── PrintBenchmark.ino │ ├── QuickStart │ │ └── QuickStart.ino │ ├── RawWrite │ │ └── RawWrite.ino │ ├── ReadCsv │ │ └── ReadCsv.ino │ ├── ReadCsvArray │ │ └── ReadCsvArray.ino │ ├── ReadCsvStream │ │ └── ReadCsvStream.ino │ ├── ReadWrite │ │ └── ReadWrite.ino │ ├── STM32Test │ │ └── STM32Test.ino │ ├── SdFormatter │ │ └── SdFormatter.ino │ ├── SdInfo │ │ └── SdInfo.ino │ ├── SoftwareSpi │ │ └── SoftwareSpi.ino │ ├── StdioBench │ │ └── StdioBench.ino │ ├── TeensySdioDemo │ │ └── TeensySdioDemo.ino │ ├── Timestamp │ │ └── Timestamp.ino │ ├── TwoCards │ │ └── TwoCards.ino │ ├── VolumeFreeSpace │ │ └── VolumeFreeSpace.ino │ ├── bench │ │ └── bench.ino │ ├── dataLogger │ │ └── dataLogger.ino │ ├── fgets │ │ └── fgets.ino │ ├── formatting │ │ └── formatting.ino │ ├── getline │ │ └── getline.ino │ ├── rename │ │ └── rename.ino │ └── wipe │ │ └── wipe.ino ├── extras │ ├── AnalogBinLoggerExtras │ │ ├── ADC_ENOB.PNG │ │ ├── ADCdocs │ │ │ ├── ATmegaADCAccuracy.pdf │ │ │ └── ExcelFFT.pdf │ │ ├── AdcErrorStudy.txt │ │ ├── DATA.png │ │ ├── FFT.png │ │ ├── RateTable.txt │ │ ├── bintocsv │ │ │ ├── AnalogBinLogger.h │ │ │ └── bintocsv.cpp │ │ └── readme.txt │ ├── MainPage │ │ └── SdFatmainpage.h │ ├── SdFat.html │ ├── SdFatTestSuite │ │ ├── SdFatTestSuite.cpp │ │ ├── SdFatTestSuite.h │ │ └── examples │ │ │ ├── ATS_SD_File │ │ │ └── ATS_SD_File.ino │ │ │ ├── ATS_SD_Files │ │ │ └── ATS_SD_Files.ino │ │ │ ├── ATS_SD_Seek │ │ │ └── ATS_SD_Seek.ino │ │ │ ├── StressTest │ │ │ └── StressTest.ino │ │ │ ├── TestMkdir │ │ │ └── TestMkdir.ino │ │ │ ├── TestRmdir │ │ │ └── TestRmdir.ino │ │ │ ├── fstreamTest │ │ │ └── fstreamTest.ino │ │ │ ├── istreamTest │ │ │ └── istreamTest.ino │ │ │ ├── lfnSize │ │ │ └── lfnSize.ino │ │ │ ├── lfnTest │ │ │ └── lfnTest.ino │ │ │ ├── lfnTestCout │ │ │ └── lfnTestCout.ino │ │ │ └── ostreamTest │ │ │ └── ostreamTest.ino │ ├── changes.txt │ └── html │ │ ├── _arduino_files_8h.html │ │ ├── _arduino_files_8h__dep__incl.png │ │ ├── _arduino_files_8h__incl.png │ │ ├── _arduino_stream_8h.html │ │ ├── _arduino_stream_8h__dep__incl.png │ │ ├── _arduino_stream_8h__incl.png │ │ ├── _block_driver_8h.html │ │ ├── _block_driver_8h__dep__incl.png │ │ ├── _block_driver_8h__incl.png │ │ ├── _fat_file_8h.html │ │ ├── _fat_file_8h__dep__incl.png │ │ ├── _fat_file_8h__incl.png │ │ ├── _fat_file_system_8h.html │ │ ├── _fat_file_system_8h__incl.png │ │ ├── _fat_lib_config_8h.html │ │ ├── _fat_lib_config_8h__dep__incl.png │ │ ├── _fat_lib_config_8h__incl.png │ │ ├── _fat_structs_8h.html │ │ ├── _fat_structs_8h__dep__incl.png │ │ ├── _fat_volume_8h.html │ │ ├── _fat_volume_8h__dep__incl.png │ │ ├── _fat_volume_8h__incl.png │ │ ├── _free_stack_8h.html │ │ ├── _minimum_serial_8h.html │ │ ├── _minimum_serial_8h__incl.png │ │ ├── _sd_fat_8h.html │ │ ├── _sd_fat_8h__incl.png │ │ ├── _sd_fat_config_8h.html │ │ ├── _sd_fat_config_8h__dep__incl.png │ │ ├── _sd_fat_config_8h__incl.png │ │ ├── _sd_spi_card_8h.html │ │ ├── _sd_spi_card_8h__dep__incl.png │ │ ├── _sd_spi_card_8h__incl.png │ │ ├── _stdio_stream_8h.html │ │ ├── _stdio_stream_8h__incl.png │ │ ├── _sys_call_8h.html │ │ ├── _sys_call_8h__dep__incl.png │ │ ├── annotated.html │ │ ├── arrowdown.png │ │ ├── arrowright.png │ │ ├── bc_s.png │ │ ├── bdwn.png │ │ ├── bufstream_8h.html │ │ ├── bufstream_8h__dep__incl.png │ │ ├── bufstream_8h__incl.png │ │ ├── class_arduino_in_stream-members.html │ │ ├── class_arduino_in_stream.html │ │ ├── class_arduino_in_stream__coll__graph.png │ │ ├── class_arduino_in_stream__inherit__graph.png │ │ ├── class_arduino_out_stream-members.html │ │ ├── class_arduino_out_stream.html │ │ ├── class_arduino_out_stream__coll__graph.png │ │ ├── class_arduino_out_stream__inherit__graph.png │ │ ├── class_base_block_driver-members.html │ │ ├── class_base_block_driver.html │ │ ├── class_base_block_driver__inherit__graph.png │ │ ├── class_fat_cache-members.html │ │ ├── class_fat_cache.html │ │ ├── class_fat_file-members.html │ │ ├── class_fat_file.html │ │ ├── class_fat_file__inherit__graph.png │ │ ├── class_fat_file_system-members.html │ │ ├── class_fat_file_system.html │ │ ├── class_fat_file_system__coll__graph.png │ │ ├── class_fat_file_system__inherit__graph.png │ │ ├── class_fat_stream_base-members.html │ │ ├── class_fat_stream_base.html │ │ ├── class_fat_stream_base__coll__graph.png │ │ ├── class_fat_stream_base__inherit__graph.png │ │ ├── class_fat_volume-members.html │ │ ├── class_fat_volume.html │ │ ├── class_fat_volume__inherit__graph.png │ │ ├── class_file-members.html │ │ ├── class_file.html │ │ ├── class_file__coll__graph.png │ │ ├── class_file__inherit__graph.png │ │ ├── class_minimum_serial-members.html │ │ ├── class_minimum_serial.html │ │ ├── class_minimum_serial__coll__graph.png │ │ ├── class_minimum_serial__inherit__graph.png │ │ ├── class_print_file-members.html │ │ ├── class_print_file.html │ │ ├── class_print_file__coll__graph.png │ │ ├── class_print_file__inherit__graph.png │ │ ├── class_sd2_card-members.html │ │ ├── class_sd2_card.html │ │ ├── class_sd2_card__coll__graph.png │ │ ├── class_sd2_card__inherit__graph.png │ │ ├── class_sd_base_file-members.html │ │ ├── class_sd_base_file.html │ │ ├── class_sd_base_file__coll__graph.png │ │ ├── class_sd_base_file__inherit__graph.png │ │ ├── class_sd_fat-members.html │ │ ├── class_sd_fat.html │ │ ├── class_sd_fat__coll__graph.png │ │ ├── class_sd_fat__inherit__graph.png │ │ ├── class_sd_fat_e_x-members.html │ │ ├── class_sd_fat_e_x.html │ │ ├── class_sd_fat_e_x__coll__graph.png │ │ ├── class_sd_fat_e_x__inherit__graph.png │ │ ├── class_sd_fat_sdio-members.html │ │ ├── class_sd_fat_sdio.html │ │ ├── class_sd_fat_sdio__coll__graph.png │ │ ├── class_sd_fat_sdio__inherit__graph.png │ │ ├── class_sd_fat_soft_spi-members.html │ │ ├── class_sd_fat_soft_spi.html │ │ ├── class_sd_fat_soft_spi__coll__graph.png │ │ ├── class_sd_fat_soft_spi__inherit__graph.png │ │ ├── class_sd_fat_soft_spi_e_x-members.html │ │ ├── class_sd_fat_soft_spi_e_x.html │ │ ├── class_sd_fat_soft_spi_e_x__coll__graph.png │ │ ├── class_sd_fat_soft_spi_e_x__inherit__graph.png │ │ ├── class_sd_file-members.html │ │ ├── class_sd_file.html │ │ ├── class_sd_file__coll__graph.png │ │ ├── class_sd_file__inherit__graph.png │ │ ├── class_sd_file_system-members.html │ │ ├── class_sd_file_system.html │ │ ├── class_sd_file_system__coll__graph.png │ │ ├── class_sd_file_system__inherit__graph.png │ │ ├── class_sd_spi_card-members.html │ │ ├── class_sd_spi_card.html │ │ ├── class_sd_spi_card__inherit__graph.png │ │ ├── class_sd_spi_card_e_x-members.html │ │ ├── class_sd_spi_card_e_x.html │ │ ├── class_sd_spi_card_e_x__coll__graph.png │ │ ├── class_sd_spi_card_e_x__inherit__graph.png │ │ ├── class_sdio_card-members.html │ │ ├── class_sdio_card.html │ │ ├── class_sdio_card__coll__graph.png │ │ ├── class_sdio_card__inherit__graph.png │ │ ├── class_stdio_stream-members.html │ │ ├── class_stdio_stream.html │ │ ├── class_stdio_stream__coll__graph.png │ │ ├── class_stdio_stream__inherit__graph.png │ │ ├── class_sys_call-members.html │ │ ├── class_sys_call.html │ │ ├── classes.html │ │ ├── classfstream-members.html │ │ ├── classfstream.html │ │ ├── classfstream__coll__graph.png │ │ ├── classfstream__inherit__graph.png │ │ ├── classibufstream-members.html │ │ ├── classibufstream.html │ │ ├── classibufstream__coll__graph.png │ │ ├── classibufstream__inherit__graph.png │ │ ├── classifstream-members.html │ │ ├── classifstream.html │ │ ├── classifstream__coll__graph.png │ │ ├── classifstream__inherit__graph.png │ │ ├── classios-members.html │ │ ├── classios.html │ │ ├── classios__base-members.html │ │ ├── classios__base.html │ │ ├── classios__base__inherit__graph.png │ │ ├── classios__coll__graph.png │ │ ├── classios__inherit__graph.png │ │ ├── classiostream-members.html │ │ ├── classiostream.html │ │ ├── classiostream__coll__graph.png │ │ ├── classiostream__inherit__graph.png │ │ ├── classistream-members.html │ │ ├── classistream.html │ │ ├── classistream__coll__graph.png │ │ ├── classistream__inherit__graph.png │ │ ├── classobufstream-members.html │ │ ├── classobufstream.html │ │ ├── classobufstream__coll__graph.png │ │ ├── classobufstream__inherit__graph.png │ │ ├── classofstream-members.html │ │ ├── classofstream.html │ │ ├── classofstream__coll__graph.png │ │ ├── classofstream__inherit__graph.png │ │ ├── classostream-members.html │ │ ├── classostream.html │ │ ├── classostream__coll__graph.png │ │ ├── classostream__inherit__graph.png │ │ ├── closed.png │ │ ├── dir_000004_000006.html │ │ ├── dir_1281b15c327061056ab3b326e90c50cf.html │ │ ├── dir_1281b15c327061056ab3b326e90c50cf_dep.png │ │ ├── dir_481cc946b8a81b8d9363a4aad6201160.html │ │ ├── dir_481cc946b8a81b8d9363a4aad6201160_dep.png │ │ ├── dir_63fabcaba1b3b939579f46003349a6c5.html │ │ ├── dir_63fabcaba1b3b939579f46003349a6c5_dep.png │ │ ├── dir_7e472674a7b7d2590a789f197241f95f.html │ │ ├── dir_7e472674a7b7d2590a789f197241f95f_dep.png │ │ ├── dir_a70af2fb8f1edf8b7124f41d82dbf480.html │ │ ├── dir_a70af2fb8f1edf8b7124f41d82dbf480_dep.png │ │ ├── dir_a991eec27578c865874ede3d8ec657c2.html │ │ ├── dir_a991eec27578c865874ede3d8ec657c2_dep.png │ │ ├── dir_c18d6c86f7b0afecac5c3a8a9885031e.html │ │ ├── dir_c18d6c86f7b0afecac5c3a8a9885031e_dep.png │ │ ├── doc.png │ │ ├── doxygen.css │ │ ├── doxygen.png │ │ ├── dynsections.js │ │ ├── files.html │ │ ├── folderclosed.png │ │ ├── folderopen.png │ │ ├── fstream_8h.html │ │ ├── fstream_8h__incl.png │ │ ├── functions.html │ │ ├── functions_b.html │ │ ├── functions_c.html │ │ ├── functions_d.html │ │ ├── functions_e.html │ │ ├── functions_enum.html │ │ ├── functions_eval.html │ │ ├── functions_f.html │ │ ├── functions_func.html │ │ ├── functions_func_b.html │ │ ├── functions_func_c.html │ │ ├── functions_func_d.html │ │ ├── functions_func_e.html │ │ ├── functions_func_f.html │ │ ├── functions_func_g.html │ │ ├── functions_func_h.html │ │ ├── functions_func_i.html │ │ ├── functions_func_l.html │ │ ├── functions_func_m.html │ │ ├── functions_func_n.html │ │ ├── functions_func_o.html │ │ ├── functions_func_p.html │ │ ├── functions_func_r.html │ │ ├── functions_func_s.html │ │ ├── functions_func_t.html │ │ ├── functions_func_u.html │ │ ├── functions_func_v.html │ │ ├── functions_func_w.html │ │ ├── functions_func_y.html │ │ ├── functions_g.html │ │ ├── functions_h.html │ │ ├── functions_i.html │ │ ├── functions_j.html │ │ ├── functions_l.html │ │ ├── functions_m.html │ │ ├── functions_n.html │ │ ├── functions_o.html │ │ ├── functions_p.html │ │ ├── functions_r.html │ │ ├── functions_s.html │ │ ├── functions_t.html │ │ ├── functions_type.html │ │ ├── functions_u.html │ │ ├── functions_v.html │ │ ├── functions_vars.html │ │ ├── functions_w.html │ │ ├── functions_y.html │ │ ├── globals.html │ │ ├── globals_defs.html │ │ ├── globals_func.html │ │ ├── globals_type.html │ │ ├── globals_vars.html │ │ ├── graph_legend.html │ │ ├── graph_legend.png │ │ ├── hierarchy.html │ │ ├── index.html │ │ ├── inherit_graph_0.png │ │ ├── inherit_graph_1.png │ │ ├── inherit_graph_10.png │ │ ├── inherit_graph_11.png │ │ ├── inherit_graph_12.png │ │ ├── inherit_graph_13.png │ │ ├── inherit_graph_14.png │ │ ├── inherit_graph_15.png │ │ ├── inherit_graph_16.png │ │ ├── inherit_graph_17.png │ │ ├── inherit_graph_18.png │ │ ├── inherit_graph_19.png │ │ ├── inherit_graph_2.png │ │ ├── inherit_graph_3.png │ │ ├── inherit_graph_4.png │ │ ├── inherit_graph_5.png │ │ ├── inherit_graph_6.png │ │ ├── inherit_graph_7.png │ │ ├── inherit_graph_8.png │ │ ├── inherit_graph_9.png │ │ ├── inherits.html │ │ ├── ios_8h.html │ │ ├── ios_8h__dep__incl.png │ │ ├── ios_8h__incl.png │ │ ├── iostream_8h.html │ │ ├── iostream_8h__dep__incl.png │ │ ├── iostream_8h__incl.png │ │ ├── istream_8h.html │ │ ├── istream_8h__dep__incl.png │ │ ├── istream_8h__incl.png │ │ ├── jquery.js │ │ ├── nav_f.png │ │ ├── nav_g.png │ │ ├── nav_h.png │ │ ├── open.png │ │ ├── ostream_8h.html │ │ ├── ostream_8h__dep__incl.png │ │ ├── ostream_8h__incl.png │ │ ├── search │ │ ├── all_0.html │ │ ├── all_0.js │ │ ├── all_1.html │ │ ├── all_1.js │ │ ├── all_10.html │ │ ├── all_10.js │ │ ├── all_11.html │ │ ├── all_11.js │ │ ├── all_12.html │ │ ├── all_12.js │ │ ├── all_13.html │ │ ├── all_13.js │ │ ├── all_14.html │ │ ├── all_14.js │ │ ├── all_15.html │ │ ├── all_15.js │ │ ├── all_16.html │ │ ├── all_16.js │ │ ├── all_2.html │ │ ├── all_2.js │ │ ├── all_3.html │ │ ├── all_3.js │ │ ├── all_4.html │ │ ├── all_4.js │ │ ├── all_5.html │ │ ├── all_5.js │ │ ├── all_6.html │ │ ├── all_6.js │ │ ├── all_7.html │ │ ├── all_7.js │ │ ├── all_8.html │ │ ├── all_8.js │ │ ├── all_9.html │ │ ├── all_9.js │ │ ├── all_a.html │ │ ├── all_a.js │ │ ├── all_b.html │ │ ├── all_b.js │ │ ├── all_c.html │ │ ├── all_c.js │ │ ├── all_d.html │ │ ├── all_d.js │ │ ├── all_e.html │ │ ├── all_e.js │ │ ├── all_f.html │ │ ├── all_f.js │ │ ├── classes_0.html │ │ ├── classes_0.js │ │ ├── classes_1.html │ │ ├── classes_1.js │ │ ├── classes_2.html │ │ ├── classes_2.js │ │ ├── classes_3.html │ │ ├── classes_3.js │ │ ├── classes_4.html │ │ ├── classes_4.js │ │ ├── classes_5.html │ │ ├── classes_5.js │ │ ├── classes_6.html │ │ ├── classes_6.js │ │ ├── classes_7.html │ │ ├── classes_7.js │ │ ├── classes_8.html │ │ ├── classes_8.js │ │ ├── classes_9.html │ │ ├── classes_9.js │ │ ├── classes_a.html │ │ ├── classes_a.js │ │ ├── close.png │ │ ├── defines_0.html │ │ ├── defines_0.js │ │ ├── defines_1.html │ │ ├── defines_1.js │ │ ├── defines_2.html │ │ ├── defines_2.js │ │ ├── defines_3.html │ │ ├── defines_3.js │ │ ├── defines_4.html │ │ ├── defines_4.js │ │ ├── defines_5.html │ │ ├── defines_5.js │ │ ├── defines_6.html │ │ ├── defines_6.js │ │ ├── defines_7.html │ │ ├── defines_7.js │ │ ├── defines_8.html │ │ ├── defines_8.js │ │ ├── defines_9.html │ │ ├── defines_9.js │ │ ├── enums_0.html │ │ ├── enums_0.js │ │ ├── enumvalues_0.html │ │ ├── enumvalues_0.js │ │ ├── enumvalues_1.html │ │ ├── enumvalues_1.js │ │ ├── enumvalues_2.html │ │ ├── enumvalues_2.js │ │ ├── files_0.html │ │ ├── files_0.js │ │ ├── files_1.html │ │ ├── files_1.js │ │ ├── files_2.html │ │ ├── files_2.js │ │ ├── files_3.html │ │ ├── files_3.js │ │ ├── files_4.html │ │ ├── files_4.js │ │ ├── files_5.html │ │ ├── files_5.js │ │ ├── files_6.html │ │ ├── files_6.js │ │ ├── functions_0.html │ │ ├── functions_0.js │ │ ├── functions_1.html │ │ ├── functions_1.js │ │ ├── functions_10.html │ │ ├── functions_10.js │ │ ├── functions_11.html │ │ ├── functions_11.js │ │ ├── functions_12.html │ │ ├── functions_12.js │ │ ├── functions_13.html │ │ ├── functions_13.js │ │ ├── functions_14.html │ │ ├── functions_14.js │ │ ├── functions_2.html │ │ ├── functions_2.js │ │ ├── functions_3.html │ │ ├── functions_3.js │ │ ├── functions_4.html │ │ ├── functions_4.js │ │ ├── functions_5.html │ │ ├── functions_5.js │ │ ├── functions_6.html │ │ ├── functions_6.js │ │ ├── functions_7.html │ │ ├── functions_7.js │ │ ├── functions_8.html │ │ ├── functions_8.js │ │ ├── functions_9.html │ │ ├── functions_9.js │ │ ├── functions_a.html │ │ ├── functions_a.js │ │ ├── functions_b.html │ │ ├── functions_b.js │ │ ├── functions_c.html │ │ ├── functions_c.js │ │ ├── functions_d.html │ │ ├── functions_d.js │ │ ├── functions_e.html │ │ ├── functions_e.js │ │ ├── functions_f.html │ │ ├── functions_f.js │ │ ├── mag_sel.png │ │ ├── nomatches.html │ │ ├── pages_0.html │ │ ├── pages_0.js │ │ ├── search.css │ │ ├── search.js │ │ ├── search_l.png │ │ ├── search_m.png │ │ ├── search_r.png │ │ ├── searchdata.js │ │ ├── typedefs_0.html │ │ ├── typedefs_0.js │ │ ├── typedefs_1.html │ │ ├── typedefs_1.js │ │ ├── typedefs_2.html │ │ ├── typedefs_2.js │ │ ├── typedefs_3.html │ │ ├── typedefs_3.js │ │ ├── typedefs_4.html │ │ ├── typedefs_4.js │ │ ├── typedefs_5.html │ │ ├── typedefs_5.js │ │ ├── typedefs_6.html │ │ ├── typedefs_6.js │ │ ├── typedefs_7.html │ │ ├── typedefs_7.js │ │ ├── typedefs_8.html │ │ ├── typedefs_8.js │ │ ├── variables_0.html │ │ ├── variables_0.js │ │ ├── variables_1.html │ │ ├── variables_1.js │ │ ├── variables_10.html │ │ ├── variables_10.js │ │ ├── variables_11.html │ │ ├── variables_11.js │ │ ├── variables_12.html │ │ ├── variables_12.js │ │ ├── variables_13.html │ │ ├── variables_13.js │ │ ├── variables_14.html │ │ ├── variables_14.js │ │ ├── variables_15.html │ │ ├── variables_15.js │ │ ├── variables_2.html │ │ ├── variables_2.js │ │ ├── variables_3.html │ │ ├── variables_3.js │ │ ├── variables_4.html │ │ ├── variables_4.js │ │ ├── variables_5.html │ │ ├── variables_5.js │ │ ├── variables_6.html │ │ ├── variables_6.js │ │ ├── variables_7.html │ │ ├── variables_7.js │ │ ├── variables_8.html │ │ ├── variables_8.js │ │ ├── variables_9.html │ │ ├── variables_9.js │ │ ├── variables_a.html │ │ ├── variables_a.js │ │ ├── variables_b.html │ │ ├── variables_b.js │ │ ├── variables_c.html │ │ ├── variables_c.js │ │ ├── variables_d.html │ │ ├── variables_d.js │ │ ├── variables_e.html │ │ ├── variables_e.js │ │ ├── variables_f.html │ │ └── variables_f.js │ │ ├── splitbar.png │ │ ├── struct_fat_pos__t-members.html │ │ ├── struct_fat_pos__t.html │ │ ├── structbios_parm_block-members.html │ │ ├── structbios_parm_block.html │ │ ├── structdirectory_entry-members.html │ │ ├── structdirectory_entry.html │ │ ├── structfat32__boot-members.html │ │ ├── structfat32__boot.html │ │ ├── structfat32__fsinfo-members.html │ │ ├── structfat32__fsinfo.html │ │ ├── structfat__boot-members.html │ │ ├── structfat__boot.html │ │ ├── structfname__t-members.html │ │ ├── structfname__t.html │ │ ├── structlong_directory_entry-members.html │ │ ├── structlong_directory_entry.html │ │ ├── structmaster_boot_record-members.html │ │ ├── structmaster_boot_record.html │ │ ├── structmaster_boot_record__coll__graph.png │ │ ├── structpartition_table-members.html │ │ ├── structpartition_table.html │ │ ├── structsetfill-members.html │ │ ├── structsetfill.html │ │ ├── structsetprecision-members.html │ │ ├── structsetprecision.html │ │ ├── structsetw-members.html │ │ ├── structsetw.html │ │ ├── sync_off.png │ │ ├── sync_on.png │ │ ├── tab_a.png │ │ ├── tab_b.png │ │ ├── tab_h.png │ │ ├── tab_s.png │ │ ├── tabs.css │ │ ├── unioncache__t-members.html │ │ ├── unioncache__t.html │ │ └── unioncache__t__coll__graph.png ├── library.properties └── src │ ├── BlockDriver.h │ ├── FatLib │ ├── ArduinoFiles.h │ ├── ArduinoStream.h │ ├── BaseBlockDriver.h │ ├── FatApiConstants.h │ ├── FatFile.cpp │ ├── FatFile.h │ ├── FatFileLFN.cpp │ ├── FatFilePrint.cpp │ ├── FatFileSFN.cpp │ ├── FatFileSystem.h │ ├── FatLib.h │ ├── FatLibConfig.h │ ├── FatStructs.h │ ├── FatVolume.cpp │ ├── FatVolume.h │ ├── FmtNumber.cpp │ ├── FmtNumber.h │ ├── StdioStream.cpp │ ├── StdioStream.h │ ├── bufstream.h │ ├── fstream.cpp │ ├── fstream.h │ ├── ios.h │ ├── iostream.h │ ├── istream.cpp │ ├── istream.h │ ├── ostream.cpp │ └── ostream.h │ ├── FreeStack.h │ ├── MinimumSerial.cpp │ ├── MinimumSerial.h │ ├── SdCard │ ├── SdInfo.h │ ├── SdSpiCard.cpp │ ├── SdSpiCard.h │ ├── SdSpiCardEX.cpp │ ├── SdioCard.h │ ├── SdioCardEX.cpp │ └── SdioTeensy.cpp │ ├── SdFat.h │ ├── SdFatConfig.h │ ├── SpiDriver │ ├── DigitalPin.h │ ├── SdSpiBaseDriver.h │ ├── SdSpiDriver.h │ ├── SdSpiESP8266.cpp │ ├── SdSpiSAM3X.cpp │ ├── SdSpiSTM32.cpp │ ├── SdSpiTeensy3.cpp │ ├── SoftSPI.h │ └── boards │ │ ├── AvrDevelopersGpioPinMap.h │ │ ├── BobuinoGpioPinMap.h │ │ ├── GpioPinMap.h │ │ ├── LeonardoGpioPinMap.h │ │ ├── MegaGpioPinMap.h │ │ ├── SleepingBeautyGpioPinMap.h │ │ ├── Standard1284GpioPinMap.h │ │ ├── Teensy2GpioPinMap.h │ │ ├── Teensy2ppGpioPinMap.h │ │ └── UnoGpioPinMap.h │ └── SysCall.h ├── Servo ├── README.adoc ├── examples │ ├── Knob │ │ └── Knob.ino │ └── Sweep │ │ └── Sweep.ino ├── keywords.txt ├── library.properties └── src │ ├── Servo.h │ ├── avr │ ├── Servo.cpp │ └── ServoTimers.h │ ├── nrf52 │ ├── Servo.cpp │ └── ServoTimers.h │ ├── sam │ ├── Servo.cpp │ └── ServoTimers.h │ ├── samd │ ├── Servo.cpp │ └── ServoTimers.h │ └── stm32f4 │ ├── Servo.cpp │ └── ServoTimers.h ├── SpacebrewYun ├── README.adoc ├── examples │ ├── inputOutput │ │ └── inputOutput.ino │ ├── spacebrewBoolean │ │ └── spacebrewBoolean.ino │ ├── spacebrewRange │ │ └── spacebrewRange.ino │ └── spacebrewString │ │ └── spacebrewString.ino ├── keywords.txt ├── library.properties └── src │ ├── SpacebrewYun.cpp │ └── SpacebrewYun.h ├── Stepper ├── README.adoc ├── examples │ ├── MotorKnob │ │ └── MotorKnob.ino │ ├── stepper_oneRevolution │ │ └── stepper_oneRevolution.ino │ ├── stepper_oneStepAtATime │ │ └── stepper_oneStepAtATime.ino │ └── stepper_speedControl │ │ └── stepper_speedControl.ino ├── keywords.txt ├── library.properties └── src │ ├── Stepper.cpp │ └── Stepper.h ├── TFT ├── README.adoc ├── examples │ ├── Arduino │ │ ├── TFTBitmapLogo │ │ │ ├── TFTBitmapLogo.ino │ │ │ └── arduino.bmp │ │ ├── TFTColorPicker │ │ │ └── TFTColorPicker.ino │ │ ├── TFTDisplayText │ │ │ └── TFTDisplayText.ino │ │ ├── TFTEtchASketch │ │ │ └── TFTEtchASketch.ino │ │ ├── TFTGraph │ │ │ └── TFTGraph.ino │ │ └── TFTPong │ │ │ └── TFTPong.ino │ └── Esplora │ │ ├── EsploraTFTBitmapLogo │ │ ├── EsploraTFTBitmapLogo.ino │ │ └── arduino.bmp │ │ ├── EsploraTFTColorPicker │ │ └── EsploraTFTColorPicker.ino │ │ ├── EsploraTFTEtchASketch │ │ └── EsploraTFTEtchASketch.ino │ │ ├── EsploraTFTGraph │ │ └── EsploraTFTGraph.ino │ │ ├── EsploraTFTHorizon │ │ └── EsploraTFTHorizon.ino │ │ ├── EsploraTFTPong │ │ └── EsploraTFTPong.ino │ │ └── EsploraTFTTemp │ │ └── EsploraTFTTemp.ino ├── extras │ ├── Adafruit-README.txt │ ├── Adafruit-license.txt │ └── README.md ├── keywords.txt ├── library.properties └── src │ ├── TFT.cpp │ ├── TFT.h │ └── utility │ ├── Adafruit_GFX.cpp │ ├── Adafruit_GFX.h │ ├── Adafruit_ST7735.cpp │ ├── Adafruit_ST7735.h │ ├── PImage.h │ ├── glcdfont.c │ └── keywords.txt ├── TM1637_Gyver ├── TM1637.cpp ├── TM1637.h └── examples │ ├── ClockDisplay │ └── ClockDisplay.ino │ ├── NumberFlow │ └── NumberFlow.ino │ ├── Stopwatch │ └── Stopwatch.ino │ └── TM1637_example_gyver │ └── TM1637_example_gyver.ino ├── TM74HC595_Gyver ├── README.md ├── TM74HC595Display.cpp ├── TM74HC595Display.h ├── examples │ ├── TM74HC595_timer1 │ │ └── TM74HC595_timer1.ino │ └── TM74HC595_timer_micros │ │ └── TM74HC595_timer_micros.ino └── keywords.txt ├── TMRpcm-master ├── .gitattributes ├── .gitignore ├── README ├── RF_AddOn │ └── README.txt ├── TMRpcm.cpp ├── TMRpcm.h ├── audio_samples │ ├── Fireproof_Babies_-_Baked_Chicken_Heat │ │ ├── CREDITS.txt │ │ ├── Fireproof_Babies_-_Baked_Chicken_Heat.mp3 │ │ ├── music │ │ └── recorded.ogg │ └── texasradiofish_-_Slow_Cooker │ │ ├── CREDITS.txt │ │ ├── music │ │ ├── recorded.ogg │ │ └── texasradiofish_-_Slow_Cooker.mp3 ├── examples │ ├── basic │ │ └── basic.ino │ ├── music │ │ └── music.ino │ ├── progmem │ │ └── progmem.ino │ └── xtraFeatures │ │ ├── MultiTrack_2Pins │ │ └── MultiTrack_2Pins.ino │ │ ├── MultiTrack_4Pins │ │ └── MultiTrack_4Pins.ino │ │ ├── Recording │ │ └── Recording.ino │ │ ├── Stereo_2Pins │ │ └── Stereo_2Pins.ino │ │ ├── sdfat │ │ └── sdfat.ino │ │ ├── streamingExamples │ │ ├── README.txt │ │ ├── musicStreamerComplex │ │ │ ├── musicStreamerComplex.ino │ │ │ └── printf.h │ │ └── musicStreamerSimple │ │ │ ├── musicStreamerSimple.ino │ │ │ └── printf.h │ │ └── wavGeneration │ │ └── wavGeneration.ino ├── keywords.txt ├── library.json ├── library.properties ├── pcmConfig.h ├── pcmRF.cpp └── pcmRF.h ├── Temboo ├── README.adoc ├── examples │ ├── ArduinoYun │ │ ├── GetYahooWeatherReport │ │ │ ├── GetYahooWeatherReport.ino │ │ │ └── TembooAccount.h │ │ ├── ReadATweet │ │ │ ├── ReadATweet.ino │ │ │ └── TembooAccount.h │ │ ├── SendATweet │ │ │ ├── SendATweet.ino │ │ │ └── TembooAccount.h │ │ ├── SendAnEmail │ │ │ ├── SendAnEmail.ino │ │ │ └── TembooAccount.h │ │ ├── SendAnSMS │ │ │ ├── SendAnSMS.ino │ │ │ └── TembooAccount.h │ │ ├── SendDataToGoogleSpreadsheet │ │ │ ├── SendDataToGoogleSpreadsheet.ino │ │ │ └── TembooAccount.h │ │ ├── TembooDeviceConfig │ │ │ └── TembooDeviceConfig.ino │ │ ├── ToxicFacilitiesSearch │ │ │ ├── TembooAccount.h │ │ │ └── ToxicFacilitiesSearch.ino │ │ ├── UpdateFacebookStatus │ │ │ ├── TembooAccount.h │ │ │ └── UpdateFacebookStatus.ino │ │ └── UploadToDropbox │ │ │ ├── TembooAccount.h │ │ │ └── UploadToDropbox.ino │ └── YunShield │ │ └── TembooDeviceConfig │ │ └── TembooDeviceConfig.ino ├── keywords.txt ├── library.properties └── src │ ├── Temboo.cpp │ ├── Temboo.h │ ├── TembooCoAPEdgeDevice.cpp │ ├── TembooCoAPEdgeDevice.h │ ├── TembooMQTTEdgeDevice.cpp │ ├── TembooMQTTEdgeDevice.h │ ├── TembooMonitoring.cpp │ ├── TembooMonitoring.h │ ├── TembooSSL.cpp │ ├── TembooSSL.h │ ├── TembooYunShield.h │ └── utility │ ├── ArduinoTimer.h │ ├── BaseFormatter.cpp │ ├── BaseFormatter.h │ ├── ChoreoDevice.cpp │ ├── ChoreoDevice.h │ ├── ChoreoDeviceFormatter.cpp │ ├── ChoreoDeviceFormatter.h │ ├── ChoreoInput.cpp │ ├── ChoreoInput.h │ ├── ChoreoInputExpression.cpp │ ├── ChoreoInputExpression.h │ ├── ChoreoInputExpressionFormatter.cpp │ ├── ChoreoInputExpressionFormatter.h │ ├── ChoreoInputExpressionSet.cpp │ ├── ChoreoInputExpressionSet.h │ ├── ChoreoInputFormatter.cpp │ ├── ChoreoInputFormatter.h │ ├── ChoreoInputSet.cpp │ ├── ChoreoInputSet.h │ ├── ChoreoOutput.cpp │ ├── ChoreoOutput.h │ ├── ChoreoOutputFormatter.cpp │ ├── ChoreoOutputFormatter.h │ ├── ChoreoOutputSet.cpp │ ├── ChoreoOutputSet.h │ ├── ChoreoPreset.cpp │ ├── ChoreoPreset.h │ ├── ChoreoPresetFormatter.cpp │ ├── ChoreoPresetFormatter.h │ ├── ChoreoSensorInput.cpp │ ├── ChoreoSensorInput.h │ ├── ChoreoSensorInputFormatter.cpp │ ├── ChoreoSensorInputFormatter.h │ ├── ChoreoSensorInputSet.cpp │ ├── ChoreoSensorInputSet.h │ ├── CoapMessageLayer.cpp │ ├── CoapMessageLayer.h │ ├── CoapMsg.cpp │ ├── CoapMsg.h │ ├── CoapRRLayer.cpp │ ├── CoapRRLayer.h │ ├── DataFormatter.cpp │ ├── DataFormatter.h │ ├── FP.h │ ├── MQTTClient.h │ ├── MQTTConnect.h │ ├── MQTTConnectClient.c │ ├── MQTTConnectServer.c │ ├── MQTTDeserializePublish.c │ ├── MQTTFormat.c │ ├── MQTTFormat.h │ ├── MQTTLogging.h │ ├── MQTTPacket.c │ ├── MQTTPacket.h │ ├── MQTTPublish.h │ ├── MQTTSerializePublish.c │ ├── MQTTSubscribe.h │ ├── MQTTSubscribeClient.c │ ├── MQTTSubscribeServer.c │ ├── MQTTUnsubscribe.h │ ├── MQTTUnsubscribeClient.c │ ├── MQTTUnsubscribeServer.c │ ├── StackTrace.h │ ├── TembooCoAPIPStack.h │ ├── TembooCoAPSession.cpp │ ├── TembooCoAPSession.h │ ├── TembooDS18B20.cpp │ ├── TembooDS18B20.h │ ├── TembooGPIO.c │ ├── TembooGPIO.h │ ├── TembooGlobal.c │ ├── TembooGlobal.h │ ├── TembooMQTTIPStack.h │ ├── TembooMQTTSession.cpp │ ├── TembooMQTTSession.h │ ├── TembooOneWire.cpp │ ├── TembooOneWire.h │ ├── TembooSession.cpp │ ├── TembooSession.h │ ├── TembooTags.h │ ├── TembooTimer.h │ ├── TembooWebSocketRequestHandles.c │ ├── TembooWebSocketRequestHandles.h │ ├── tmbhmac.cpp │ ├── tmbhmac.h │ ├── tmbmd5.cpp │ └── tmbmd5.h ├── TimerOne-master ├── README.md ├── TimerOne.cpp ├── TimerOne.h ├── config │ └── known_16bit_timers.h ├── examples │ ├── ATTiny85 │ │ └── ATTiny85.ino │ ├── FanSpeed │ │ └── FanSpeed.pde │ └── Interrupt │ │ └── Interrupt.pde ├── keywords.txt ├── library.json └── library.properties ├── WiFi ├── README.adoc ├── examples │ ├── ConnectNoEncryption │ │ └── ConnectNoEncryption.ino │ ├── ConnectWithWEP │ │ └── ConnectWithWEP.ino │ ├── ConnectWithWPA │ │ └── ConnectWithWPA.ino │ ├── ScanNetworks │ │ └── ScanNetworks.ino │ ├── SimpleWebServerWiFi │ │ └── SimpleWebServerWiFi.ino │ ├── WiFiChatServer │ │ └── WiFiChatServer.ino │ ├── WiFiUdpNtpClient │ │ └── WiFiUdpNtpClient.ino │ ├── WiFiUdpSendReceiveString │ │ └── WiFiUdpSendReceiveString.ino │ ├── WiFiWebClient │ │ └── WiFiWebClient.ino │ ├── WiFiWebClientRepeating │ │ └── WiFiWebClientRepeating.ino │ └── WiFiWebServer │ │ └── WiFiWebServer.ino ├── extras │ ├── binary │ │ ├── wifiHD.elf │ │ ├── wifiHD.hex │ │ ├── wifiHD_2_1.elf │ │ ├── wifi_dnld.elf │ │ ├── wifi_dnld.hex │ │ └── wifi_dnld_2_1.elf │ ├── scripts │ │ └── ArduinoWifiShield_upgrade.sh │ ├── wifiHD │ │ ├── .cproject │ │ ├── .project │ │ ├── Release │ │ │ ├── wifiHD.elf │ │ │ └── wifiHD.hex │ │ ├── src │ │ │ ├── CONFIG │ │ │ │ ├── conf_access.h │ │ │ │ ├── conf_at45dbx.h │ │ │ │ ├── conf_ebi.h │ │ │ │ └── conf_sd_mmc_spi.h │ │ │ ├── SOFTWARE_FRAMEWORK │ │ │ │ ├── ASM │ │ │ │ │ └── trampoline.x │ │ │ │ ├── BOARDS │ │ │ │ │ ├── ARDUINO │ │ │ │ │ │ ├── arduino.h │ │ │ │ │ │ ├── led.c │ │ │ │ │ │ └── led.h │ │ │ │ │ ├── EVK1105 │ │ │ │ │ │ ├── evk1105.h │ │ │ │ │ │ ├── led.c │ │ │ │ │ │ └── led.h │ │ │ │ │ ├── board.h │ │ │ │ │ └── board.h.my │ │ │ │ ├── COMPONENTS │ │ │ │ │ ├── MEMORY │ │ │ │ │ │ └── DATA_FLASH │ │ │ │ │ │ │ └── AT45DBX │ │ │ │ │ │ │ ├── at45dbx.c │ │ │ │ │ │ │ ├── at45dbx.h │ │ │ │ │ │ │ ├── at45dbx_mem.c │ │ │ │ │ │ │ └── at45dbx_mem.h │ │ │ │ │ └── WIFI │ │ │ │ │ │ └── HD │ │ │ │ │ │ ├── v2.7.0 │ │ │ │ │ │ ├── UCR1 │ │ │ │ │ │ │ └── GCC │ │ │ │ │ │ │ │ ├── lib_ucr1_hd_sdio_v2.7.0.a │ │ │ │ │ │ │ │ ├── lib_ucr1_hd_spi_v2.7.0.a │ │ │ │ │ │ │ │ └── lib_ucr1_hd_wl_sta_intwpa_v2.7.0.a │ │ │ │ │ │ ├── UCR2 │ │ │ │ │ │ │ └── GCC │ │ │ │ │ │ │ │ ├── lib_ucr2_hd_sdio_v2.7.0.a │ │ │ │ │ │ │ │ ├── lib_ucr2_hd_spi_v2.7.0.a │ │ │ │ │ │ │ │ └── lib_ucr2_hd_wl_sta_intwpa_v2.7.0.a │ │ │ │ │ │ └── revision.txt │ │ │ │ │ │ ├── wl_api.h │ │ │ │ │ │ ├── wl_fw.h │ │ │ │ │ │ ├── wl_os.h │ │ │ │ │ │ ├── wl_sdio.h │ │ │ │ │ │ ├── wl_spi.h │ │ │ │ │ │ └── wlap_api.h │ │ │ │ ├── DRIVERS │ │ │ │ │ ├── CPU │ │ │ │ │ │ └── CYCLE_COUNTER │ │ │ │ │ │ │ └── cycle_counter.h │ │ │ │ │ ├── EBI │ │ │ │ │ │ └── SMC │ │ │ │ │ │ │ ├── smc.c │ │ │ │ │ │ │ └── smc.h │ │ │ │ │ ├── EIC │ │ │ │ │ │ ├── eic.c │ │ │ │ │ │ └── eic.h │ │ │ │ │ ├── FLASHC │ │ │ │ │ │ ├── flashc.c │ │ │ │ │ │ └── flashc.h │ │ │ │ │ ├── GPIO │ │ │ │ │ │ ├── gpio.c │ │ │ │ │ │ └── gpio.h │ │ │ │ │ ├── INTC │ │ │ │ │ │ ├── exception.x │ │ │ │ │ │ ├── intc.c │ │ │ │ │ │ └── intc.h │ │ │ │ │ ├── PDCA │ │ │ │ │ │ ├── pdca.c │ │ │ │ │ │ └── pdca.h │ │ │ │ │ ├── PM │ │ │ │ │ │ ├── pm.c │ │ │ │ │ │ ├── pm.h │ │ │ │ │ │ ├── pm_conf_clocks.c │ │ │ │ │ │ ├── power_clocks_lib.c │ │ │ │ │ │ └── power_clocks_lib.h │ │ │ │ │ ├── RTC │ │ │ │ │ │ ├── rtc.c │ │ │ │ │ │ └── rtc.h │ │ │ │ │ ├── SPI │ │ │ │ │ │ ├── spi.c │ │ │ │ │ │ └── spi.h │ │ │ │ │ ├── TC │ │ │ │ │ │ ├── tc.c │ │ │ │ │ │ └── tc.h │ │ │ │ │ └── USART │ │ │ │ │ │ ├── usart.c │ │ │ │ │ │ └── usart.h │ │ │ │ ├── SERVICES │ │ │ │ │ ├── DELAY │ │ │ │ │ │ ├── delay.c │ │ │ │ │ │ └── delay.h │ │ │ │ │ ├── LWIP │ │ │ │ │ │ ├── lwip-1.3.2 │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ ├── dhcp.c │ │ │ │ │ │ │ │ ├── dns.c │ │ │ │ │ │ │ │ ├── init.c │ │ │ │ │ │ │ │ ├── ipv4 │ │ │ │ │ │ │ │ │ ├── autoip.c │ │ │ │ │ │ │ │ │ ├── icmp.c │ │ │ │ │ │ │ │ │ ├── igmp.c │ │ │ │ │ │ │ │ │ ├── inet.c │ │ │ │ │ │ │ │ │ ├── inet_chksum.c │ │ │ │ │ │ │ │ │ ├── ip.c │ │ │ │ │ │ │ │ │ ├── ip_addr.c │ │ │ │ │ │ │ │ │ └── ip_frag.c │ │ │ │ │ │ │ │ ├── mem.c │ │ │ │ │ │ │ │ ├── memp.c │ │ │ │ │ │ │ │ ├── netif.c │ │ │ │ │ │ │ │ ├── pbuf.c │ │ │ │ │ │ │ │ ├── raw.c │ │ │ │ │ │ │ │ ├── stats.c │ │ │ │ │ │ │ │ ├── tcp.c │ │ │ │ │ │ │ │ ├── tcp_in.c │ │ │ │ │ │ │ │ ├── tcp_out.c │ │ │ │ │ │ │ │ └── udp.c │ │ │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ │ ├── ipv4 │ │ │ │ │ │ │ │ │ └── lwip │ │ │ │ │ │ │ │ │ │ ├── autoip.h │ │ │ │ │ │ │ │ │ │ ├── icmp.h │ │ │ │ │ │ │ │ │ │ ├── igmp.h │ │ │ │ │ │ │ │ │ │ ├── inet.h │ │ │ │ │ │ │ │ │ │ ├── inet_chksum.h │ │ │ │ │ │ │ │ │ │ ├── ip.h │ │ │ │ │ │ │ │ │ │ ├── ip_addr.h │ │ │ │ │ │ │ │ │ │ └── ip_frag.h │ │ │ │ │ │ │ │ ├── lwip │ │ │ │ │ │ │ │ │ ├── api.h │ │ │ │ │ │ │ │ │ ├── api_msg.h │ │ │ │ │ │ │ │ │ ├── arch.h │ │ │ │ │ │ │ │ │ ├── debug.h │ │ │ │ │ │ │ │ │ ├── def.h │ │ │ │ │ │ │ │ │ ├── dhcp.h │ │ │ │ │ │ │ │ │ ├── dns.h │ │ │ │ │ │ │ │ │ ├── err.h │ │ │ │ │ │ │ │ │ ├── init.h │ │ │ │ │ │ │ │ │ ├── mem.h │ │ │ │ │ │ │ │ │ ├── memp.h │ │ │ │ │ │ │ │ │ ├── memp_std.h │ │ │ │ │ │ │ │ │ ├── netbuf.h │ │ │ │ │ │ │ │ │ ├── netdb.h │ │ │ │ │ │ │ │ │ ├── netif.h │ │ │ │ │ │ │ │ │ ├── netifapi.h │ │ │ │ │ │ │ │ │ ├── opt.h │ │ │ │ │ │ │ │ │ ├── pbuf.h │ │ │ │ │ │ │ │ │ ├── raw.h │ │ │ │ │ │ │ │ │ ├── sio.h │ │ │ │ │ │ │ │ │ ├── snmp.h │ │ │ │ │ │ │ │ │ ├── snmp_asn1.h │ │ │ │ │ │ │ │ │ ├── snmp_msg.h │ │ │ │ │ │ │ │ │ ├── snmp_structs.h │ │ │ │ │ │ │ │ │ ├── sockets.h │ │ │ │ │ │ │ │ │ ├── stats.h │ │ │ │ │ │ │ │ │ ├── sys.h │ │ │ │ │ │ │ │ │ ├── tcp.h │ │ │ │ │ │ │ │ │ ├── tcpip.h │ │ │ │ │ │ │ │ │ └── udp.h │ │ │ │ │ │ │ │ └── netif │ │ │ │ │ │ │ │ │ ├── etharp.h │ │ │ │ │ │ │ │ │ ├── loopif.h │ │ │ │ │ │ │ │ │ ├── ppp_oe.h │ │ │ │ │ │ │ │ │ └── slipif.h │ │ │ │ │ │ │ │ └── netif │ │ │ │ │ │ │ │ ├── etharp.c │ │ │ │ │ │ │ │ └── loopif.c │ │ │ │ │ │ └── lwip-port-1.3.2 │ │ │ │ │ │ │ └── HD │ │ │ │ │ │ │ ├── if │ │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ │ ├── arch │ │ │ │ │ │ │ │ │ ├── cc.h │ │ │ │ │ │ │ │ │ └── perf.h │ │ │ │ │ │ │ │ ├── lwipopts.h │ │ │ │ │ │ │ │ └── netif │ │ │ │ │ │ │ │ │ └── wlif.h │ │ │ │ │ │ │ └── netif │ │ │ │ │ │ │ │ └── wlif.c │ │ │ │ │ │ │ └── readme.txt │ │ │ │ │ └── MEMORY │ │ │ │ │ │ └── CTRL_ACCESS │ │ │ │ │ │ ├── ctrl_access.c │ │ │ │ │ │ └── ctrl_access.h │ │ │ │ └── UTILS │ │ │ │ │ ├── DEBUG │ │ │ │ │ ├── debug.c │ │ │ │ │ ├── debug.h │ │ │ │ │ ├── print_funcs.c │ │ │ │ │ └── print_funcs.h │ │ │ │ │ ├── LIBS │ │ │ │ │ └── NEWLIB_ADDONS │ │ │ │ │ │ ├── INCLUDE │ │ │ │ │ │ ├── nlao_cpu.h │ │ │ │ │ │ ├── nlao_exceptions.h │ │ │ │ │ │ ├── nlao_interrupts.h │ │ │ │ │ │ ├── nlao_io.h │ │ │ │ │ │ └── nlao_usart.h │ │ │ │ │ │ └── libnewlib_addons-at32ucr2-speed_opt.a │ │ │ │ │ ├── LINKER_SCRIPTS │ │ │ │ │ └── AT32UC3A │ │ │ │ │ │ ├── 1256 │ │ │ │ │ │ └── GCC │ │ │ │ │ │ │ └── link_uc3a1256.lds │ │ │ │ │ │ └── 0512 │ │ │ │ │ │ └── GCC │ │ │ │ │ │ └── link_uc3a0512.lds │ │ │ │ │ ├── PREPROCESSOR │ │ │ │ │ ├── mrepeat.h │ │ │ │ │ ├── preprocessor.h │ │ │ │ │ ├── stringz.h │ │ │ │ │ └── tpaste.h │ │ │ │ │ ├── STARTUP_FILES │ │ │ │ │ └── GCC │ │ │ │ │ │ └── crt0.x │ │ │ │ │ ├── compiler.h │ │ │ │ │ ├── conf_isp.h │ │ │ │ │ └── parts.h │ │ │ ├── ard_spi.c │ │ │ ├── ard_spi.h │ │ │ ├── ard_tcp.c │ │ │ ├── ard_tcp.h │ │ │ ├── ard_utils.c │ │ │ ├── ard_utils.h │ │ │ ├── avr32_spi.c │ │ │ ├── board_init.c │ │ │ ├── board_init.h │ │ │ ├── cmd_wl.c │ │ │ ├── cmd_wl.h │ │ │ ├── console.c │ │ │ ├── console.h │ │ │ ├── debug.h │ │ │ ├── fw_download.h │ │ │ ├── fw_download_extflash.c │ │ │ ├── license.txt │ │ │ ├── lwip_setup.c │ │ │ ├── lwip_setup.h │ │ │ ├── lwipopts.h │ │ │ ├── main.c │ │ │ ├── nvram.c │ │ │ ├── nvram.h │ │ │ ├── owl_os.c │ │ │ ├── ping.c │ │ │ ├── ping.h │ │ │ ├── printf-stdarg.c │ │ │ ├── printf-stdarg.h │ │ │ ├── timer.c │ │ │ ├── timer.h │ │ │ ├── top_defs.h │ │ │ ├── trace.h │ │ │ ├── util.c │ │ │ ├── util.h │ │ │ ├── wifi_spi.h │ │ │ ├── wl_cm.c │ │ │ ├── wl_cm.h │ │ │ └── wl_definitions.h │ │ └── wifiHD.cproj │ ├── wifi_dnld │ │ ├── .cproject │ │ ├── .project │ │ ├── Release │ │ │ └── wifi_dnld.elf │ │ ├── src │ │ │ ├── CONFIG │ │ │ │ ├── conf_access.h │ │ │ │ └── conf_at45dbx.h │ │ │ ├── Doc │ │ │ │ ├── SPB104 product brief.pdf │ │ │ │ └── gettingstarted.pdf │ │ │ ├── SOFTWARE_FRAMEWORK │ │ │ │ ├── ASM │ │ │ │ │ └── trampoline.x │ │ │ │ ├── BOARDS │ │ │ │ │ ├── ARDUINO │ │ │ │ │ │ ├── arduino.h │ │ │ │ │ │ ├── led.c │ │ │ │ │ │ └── led.h │ │ │ │ │ ├── EVK1105 │ │ │ │ │ │ ├── evk1105.h │ │ │ │ │ │ ├── led.c │ │ │ │ │ │ └── led.h │ │ │ │ │ ├── board.h │ │ │ │ │ └── board.h.ori │ │ │ │ ├── COMPONENTS │ │ │ │ │ └── MEMORY │ │ │ │ │ │ └── DATA_FLASH │ │ │ │ │ │ └── AT45DBX │ │ │ │ │ │ ├── at45dbx.c │ │ │ │ │ │ ├── at45dbx.h │ │ │ │ │ │ ├── at45dbx_mem.c │ │ │ │ │ │ └── at45dbx_mem.h │ │ │ │ ├── DRIVERS │ │ │ │ │ ├── FLASHC │ │ │ │ │ │ ├── flashc.c │ │ │ │ │ │ └── flashc.h │ │ │ │ │ ├── GPIO │ │ │ │ │ │ ├── gpio.c │ │ │ │ │ │ └── gpio.h │ │ │ │ │ ├── INTC │ │ │ │ │ │ ├── exception.x │ │ │ │ │ │ ├── intc.c │ │ │ │ │ │ └── intc.h │ │ │ │ │ ├── PM │ │ │ │ │ │ ├── pm.c │ │ │ │ │ │ ├── pm.h │ │ │ │ │ │ ├── pm_conf_clocks.c │ │ │ │ │ │ ├── power_clocks_lib.c │ │ │ │ │ │ └── power_clocks_lib.h │ │ │ │ │ ├── SPI │ │ │ │ │ │ ├── spi.c │ │ │ │ │ │ └── spi.h │ │ │ │ │ └── USART │ │ │ │ │ │ ├── usart.c │ │ │ │ │ │ └── usart.h │ │ │ │ ├── SERVICES │ │ │ │ │ └── MEMORY │ │ │ │ │ │ └── CTRL_ACCESS │ │ │ │ │ │ ├── ctrl_access.c │ │ │ │ │ │ └── ctrl_access.h │ │ │ │ └── UTILS │ │ │ │ │ ├── DEBUG │ │ │ │ │ ├── debug.c │ │ │ │ │ ├── debug.h │ │ │ │ │ ├── print_funcs.c │ │ │ │ │ └── print_funcs.h │ │ │ │ │ ├── LIBS │ │ │ │ │ └── NEWLIB_ADDONS │ │ │ │ │ │ ├── INCLUDE │ │ │ │ │ │ ├── nlao_cpu.h │ │ │ │ │ │ ├── nlao_exceptions.h │ │ │ │ │ │ ├── nlao_interrupts.h │ │ │ │ │ │ ├── nlao_io.h │ │ │ │ │ │ └── nlao_usart.h │ │ │ │ │ │ └── libnewlib_addons-at32ucr2-speed_opt.a │ │ │ │ │ ├── LINKER_SCRIPTS │ │ │ │ │ └── AT32UC3A │ │ │ │ │ │ ├── 1256 │ │ │ │ │ │ └── GCC │ │ │ │ │ │ │ └── link_uc3a1256.lds │ │ │ │ │ │ └── 0512 │ │ │ │ │ │ └── GCC │ │ │ │ │ │ └── link_uc3a0512.lds │ │ │ │ │ ├── PREPROCESSOR │ │ │ │ │ ├── mrepeat.h │ │ │ │ │ ├── preprocessor.h │ │ │ │ │ ├── stringz.h │ │ │ │ │ └── tpaste.h │ │ │ │ │ ├── STARTUP_FILES │ │ │ │ │ └── GCC │ │ │ │ │ │ └── crt0.x │ │ │ │ │ ├── compiler.h │ │ │ │ │ ├── conf_isp.h │ │ │ │ │ └── parts.h │ │ │ ├── clocks.c │ │ │ ├── clocks.h │ │ │ ├── flash_fw.c │ │ │ ├── license.txt │ │ │ ├── nor_flash.c │ │ │ ├── nor_flash.h │ │ │ ├── printf-stdarg.c │ │ │ ├── printf-stdarg.h │ │ │ ├── startup.c │ │ │ ├── startup.h │ │ │ └── wl_fw.h │ │ └── wifi_dnld.cproj │ └── wifishield.atsln ├── keywords.txt ├── library.properties └── src │ ├── WiFi.cpp │ ├── WiFi.h │ ├── WiFiClient.cpp │ ├── WiFiClient.h │ ├── WiFiServer.cpp │ ├── WiFiServer.h │ ├── WiFiUdp.cpp │ ├── WiFiUdp.h │ └── utility │ ├── debug.h │ ├── server_drv.cpp │ ├── server_drv.h │ ├── spi_drv.cpp │ ├── spi_drv.h │ ├── wifi_drv.cpp │ ├── wifi_drv.h │ ├── wifi_spi.h │ ├── wl_definitions.h │ └── wl_types.h ├── Wtv020sd16p ├── Wtv020sd16p.cpp ├── Wtv020sd16p.cpp~ ├── Wtv020sd16p.h ├── examples │ └── Wtv020sd16pExample │ │ └── Wtv020sd16pExample.ino └── keywords.txt ├── arduino-Max72xxPanel-master ├── Max72xxPanel.cpp ├── Max72xxPanel.h ├── README.md ├── README.pdf ├── examples │ ├── MadFly │ │ └── MadFly.pde │ ├── Snake │ │ └── Snake.pde │ ├── Spin │ │ └── Spin.pde │ └── Ticker │ │ └── Ticker.pde ├── keywords.txt └── license.txt ├── arduino-tvout-master ├── .gitignore ├── README.md ├── examples │ ├── BigDemoNTSC │ │ ├── BigDemoNTSC.ino │ │ ├── TVOlogo.cpp │ │ ├── TVOlogo.h │ │ ├── schematic.cpp │ │ └── schematic.h │ ├── BigDemoPAL │ │ ├── BigDemoPAL.ino │ │ ├── TVOlogo.cpp │ │ ├── TVOlogo.h │ │ ├── schematic.cpp │ │ └── schematic.h │ ├── DemoNTSC │ │ └── DemoNTSC.ino │ ├── DemoPAL │ │ └── DemoPAL.ino │ └── NTSCserialTerm │ │ ├── NTSCserialTerm.ino │ │ ├── pollserial.cpp │ │ └── pollserial.h ├── keywords.txt ├── library.properties ├── platformio.ini ├── src │ ├── TVout.cpp │ ├── TVout.h │ ├── TVoutPrint.cpp │ ├── TVoutfonts │ │ ├── README.md │ │ ├── font4x6.cpp │ │ ├── font4x6.h │ │ ├── font6x8.cpp │ │ ├── font6x8.h │ │ ├── font8x8.cpp │ │ ├── font8x8.h │ │ ├── font8x8ext.cpp │ │ ├── font8x8ext.h │ │ └── fontALL.h │ ├── spec │ │ ├── asm_macros.h │ │ ├── hardware_setup.h │ │ └── video_properties.h │ ├── video_gen.cpp │ └── video_gen.h └── version history.txt ├── arduinoFFT-master ├── .gitignore ├── Examples │ ├── FFT_01 │ │ └── FFT_01.ino │ ├── FFT_02 │ │ └── FFT_02.ino │ └── FFT_03 │ │ └── FFT_03.ino ├── LICENSE ├── README.md ├── changeLog.txt ├── keywords.txt ├── library.properties └── src │ ├── arduinoFFT.cpp │ ├── arduinoFFT.h │ ├── defs.h │ └── types.h ├── i2chw ├── i2cmaster.h └── twimastertimeout.c ├── iarduino_Pressure_BMP ├── examples │ └── example │ │ └── example.ino ├── extras │ └── datasheet BMP-180.pdf ├── keywords.txt ├── library.properties └── src │ ├── iarduino_Pressure_BMP.cpp │ ├── iarduino_Pressure_BMP.h │ └── iarduino_Pressure_BMP_I2C.h ├── light_WS2812 ├── WS2812.cpp ├── WS2812.h ├── cRGB.h ├── examples │ ├── Blinky │ │ └── Blinky.ino │ ├── RGB_Clock │ │ └── RGB_Clock.ino │ ├── fade_rgb │ │ └── fade_rgb.ino │ └── rainbow │ │ └── rainbow.ino ├── library.json └── light_ws2812.cpp └── toneAC ├── examples ├── toneAC_demo │ └── toneAC_demo.pde └── toneAC_dual_LED │ └── toneAC_dual_LED.pde ├── keywords.txt ├── toneAC.cpp └── toneAC.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/.gitattributes -------------------------------------------------------------------------------- /AT24Cxx-gyver/AT24Cxx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/AT24Cxx-gyver/AT24Cxx.cpp -------------------------------------------------------------------------------- /AT24Cxx-gyver/AT24Cxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/AT24Cxx-gyver/AT24Cxx.h -------------------------------------------------------------------------------- /AT24Cxx-gyver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/AT24Cxx-gyver/README.md -------------------------------------------------------------------------------- /AT24Cxx-gyver/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/AT24Cxx-gyver/keywords.txt -------------------------------------------------------------------------------- /AccelStepper/AccelStepper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/AccelStepper/AccelStepper.cpp -------------------------------------------------------------------------------- /AccelStepper/AccelStepper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/AccelStepper/AccelStepper.h -------------------------------------------------------------------------------- /AccelStepper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/AccelStepper/LICENSE -------------------------------------------------------------------------------- /AccelStepper/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/AccelStepper/MANIFEST -------------------------------------------------------------------------------- /AccelStepper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/AccelStepper/Makefile -------------------------------------------------------------------------------- /AccelStepper/MultiStepper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/AccelStepper/MultiStepper.cpp -------------------------------------------------------------------------------- /AccelStepper/MultiStepper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/AccelStepper/MultiStepper.h -------------------------------------------------------------------------------- /AccelStepper/doc/annotated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/AccelStepper/doc/annotated.html -------------------------------------------------------------------------------- /AccelStepper/doc/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/AccelStepper/doc/doxygen.css -------------------------------------------------------------------------------- /AccelStepper/doc/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/AccelStepper/doc/doxygen.png -------------------------------------------------------------------------------- /AccelStepper/doc/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/AccelStepper/doc/files.html -------------------------------------------------------------------------------- /AccelStepper/doc/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/AccelStepper/doc/functions.html -------------------------------------------------------------------------------- /AccelStepper/doc/functions_func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/AccelStepper/doc/functions_func.html -------------------------------------------------------------------------------- /AccelStepper/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/AccelStepper/doc/index.html -------------------------------------------------------------------------------- /AccelStepper/doc/tab_b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/AccelStepper/doc/tab_b.gif -------------------------------------------------------------------------------- /AccelStepper/doc/tab_l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/AccelStepper/doc/tab_l.gif -------------------------------------------------------------------------------- /AccelStepper/doc/tab_r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/AccelStepper/doc/tab_r.gif -------------------------------------------------------------------------------- /AccelStepper/doc/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/AccelStepper/doc/tabs.css -------------------------------------------------------------------------------- /AccelStepper/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/AccelStepper/keywords.txt -------------------------------------------------------------------------------- /AccelStepper/project.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/AccelStepper/project.cfg -------------------------------------------------------------------------------- /Adafruit-GFX-Library-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Adafruit-GFX-Library-master/.gitignore -------------------------------------------------------------------------------- /Adafruit-GFX-Library-master/Img2Code/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'Img2Code' 2 | -------------------------------------------------------------------------------- /Adafruit-GFX-Library-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Adafruit-GFX-Library-master/README.md -------------------------------------------------------------------------------- /Adafruit-GFX-Library-master/gfxfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Adafruit-GFX-Library-master/gfxfont.h -------------------------------------------------------------------------------- /Adafruit-GFX-Library-master/glcdfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Adafruit-GFX-Library-master/glcdfont.c -------------------------------------------------------------------------------- /Adafruit_NeoMatrix-master/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Adafruit_NeoMatrix-master/COPYING -------------------------------------------------------------------------------- /Adafruit_NeoMatrix-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Adafruit_NeoMatrix-master/README.md -------------------------------------------------------------------------------- /Adafruit_NeoMatrix-master/gamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Adafruit_NeoMatrix-master/gamma.h -------------------------------------------------------------------------------- /Adafruit_NeoPixel-master/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Adafruit_NeoPixel-master/.travis.yml -------------------------------------------------------------------------------- /Adafruit_NeoPixel-master/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Adafruit_NeoPixel-master/COPYING -------------------------------------------------------------------------------- /Adafruit_NeoPixel-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Adafruit_NeoPixel-master/README.md -------------------------------------------------------------------------------- /Adafruit_NeoPixel-master/esp8266.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Adafruit_NeoPixel-master/esp8266.c -------------------------------------------------------------------------------- /Adafruit_NeoPixel-master/examples/RGBWstrandtest/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Adafruit_NeoPixel-master/examples/RGBWstrandtest/.trinket.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Adafruit_NeoPixel-master/examples/StrandtestBLE/.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Adafruit_NeoPixel-master/examples/buttoncycler/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Adafruit_NeoPixel-master/examples/simple/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Adafruit_NeoPixel-master/examples/strandtest/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Adafruit_NeoPixel-master/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Adafruit_NeoPixel-master/keywords.txt -------------------------------------------------------------------------------- /Adafruit_SSD1306-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Adafruit_SSD1306-master/README.md -------------------------------------------------------------------------------- /Adafruit_SSD1306-master/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Adafruit_SSD1306-master/README.txt -------------------------------------------------------------------------------- /Adafruit_SSD1306-master/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Adafruit_SSD1306-master/license.txt -------------------------------------------------------------------------------- /AnalogTouch-master/AnalogTouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/AnalogTouch-master/AnalogTouch.h -------------------------------------------------------------------------------- /AnalogTouch-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/AnalogTouch-master/LICENSE -------------------------------------------------------------------------------- /AnalogTouch-master/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/AnalogTouch-master/Readme.md -------------------------------------------------------------------------------- /AnalogTouch-master/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/AnalogTouch-master/keywords.txt -------------------------------------------------------------------------------- /AnalogTouch-master/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/AnalogTouch-master/library.properties -------------------------------------------------------------------------------- /Arduino-PID-Library-master/PID_v1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Arduino-PID-Library-master/PID_v1.cpp -------------------------------------------------------------------------------- /Arduino-PID-Library-master/PID_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Arduino-PID-Library-master/PID_v1.h -------------------------------------------------------------------------------- /Arduino-PID-Library-master/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Arduino-PID-Library-master/README.txt -------------------------------------------------------------------------------- /Arduino-SerialCommand-master/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Arduino-SerialCommand-master/readme.md -------------------------------------------------------------------------------- /Bridge/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Bridge/README.adoc -------------------------------------------------------------------------------- /Bridge/examples/Bridge/Bridge.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Bridge/examples/Bridge/Bridge.ino -------------------------------------------------------------------------------- /Bridge/examples/Process/Process.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Bridge/examples/Process/Process.ino -------------------------------------------------------------------------------- /Bridge/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Bridge/keywords.txt -------------------------------------------------------------------------------- /Bridge/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Bridge/library.properties -------------------------------------------------------------------------------- /Bridge/src/Bridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Bridge/src/Bridge.cpp -------------------------------------------------------------------------------- /Bridge/src/Bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Bridge/src/Bridge.h -------------------------------------------------------------------------------- /Bridge/src/BridgeClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Bridge/src/BridgeClient.cpp -------------------------------------------------------------------------------- /Bridge/src/BridgeClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Bridge/src/BridgeClient.h -------------------------------------------------------------------------------- /Bridge/src/BridgeSSLClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Bridge/src/BridgeSSLClient.cpp -------------------------------------------------------------------------------- /Bridge/src/BridgeSSLClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Bridge/src/BridgeSSLClient.h -------------------------------------------------------------------------------- /Bridge/src/BridgeServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Bridge/src/BridgeServer.cpp -------------------------------------------------------------------------------- /Bridge/src/BridgeServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Bridge/src/BridgeServer.h -------------------------------------------------------------------------------- /Bridge/src/BridgeUdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Bridge/src/BridgeUdp.cpp -------------------------------------------------------------------------------- /Bridge/src/BridgeUdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Bridge/src/BridgeUdp.h -------------------------------------------------------------------------------- /Bridge/src/Console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Bridge/src/Console.cpp -------------------------------------------------------------------------------- /Bridge/src/Console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Bridge/src/Console.h -------------------------------------------------------------------------------- /Bridge/src/FileIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Bridge/src/FileIO.cpp -------------------------------------------------------------------------------- /Bridge/src/FileIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Bridge/src/FileIO.h -------------------------------------------------------------------------------- /Bridge/src/HttpClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Bridge/src/HttpClient.cpp -------------------------------------------------------------------------------- /Bridge/src/HttpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Bridge/src/HttpClient.h -------------------------------------------------------------------------------- /Bridge/src/Mailbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Bridge/src/Mailbox.cpp -------------------------------------------------------------------------------- /Bridge/src/Mailbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Bridge/src/Mailbox.h -------------------------------------------------------------------------------- /Bridge/src/Process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Bridge/src/Process.cpp -------------------------------------------------------------------------------- /Bridge/src/Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Bridge/src/Process.h -------------------------------------------------------------------------------- /Bridge/src/YunClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Bridge/src/YunClient.h -------------------------------------------------------------------------------- /Bridge/src/YunServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Bridge/src/YunServer.h -------------------------------------------------------------------------------- /Cayenne-MQTT-ESP-master/LICENSE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Cayenne-MQTT-ESP-master/LICENSE.dat -------------------------------------------------------------------------------- /Cayenne-MQTT-ESP-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Cayenne-MQTT-ESP-master/README.md -------------------------------------------------------------------------------- /CyberLib-master/CyberLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/CyberLib-master/CyberLib.cpp -------------------------------------------------------------------------------- /CyberLib-master/CyberLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/CyberLib-master/CyberLib.h -------------------------------------------------------------------------------- /CyberLib-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/CyberLib-master/README.md -------------------------------------------------------------------------------- /CyberLib-master/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/CyberLib-master/keywords.txt -------------------------------------------------------------------------------- /DFPlayer_Mini_Mp3/DFPlayer_Mini_Mp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/DFPlayer_Mini_Mp3/DFPlayer_Mini_Mp3.h -------------------------------------------------------------------------------- /DFPlayer_Mini_Mp3/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/DFPlayer_Mini_Mp3/keywords.txt -------------------------------------------------------------------------------- /DFPlayer_Mini_Mp3/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/DFPlayer_Mini_Mp3/license.txt -------------------------------------------------------------------------------- /DHT-sensor-library-master/DHT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/DHT-sensor-library-master/DHT.cpp -------------------------------------------------------------------------------- /DHT-sensor-library-master/DHT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/DHT-sensor-library-master/DHT.h -------------------------------------------------------------------------------- /DHT-sensor-library-master/DHT_U.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/DHT-sensor-library-master/DHT_U.cpp -------------------------------------------------------------------------------- /DHT-sensor-library-master/DHT_U.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/DHT-sensor-library-master/DHT_U.h -------------------------------------------------------------------------------- /DHT-sensor-library-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/DHT-sensor-library-master/README.md -------------------------------------------------------------------------------- /DHT-sensor-library-master/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/DHT-sensor-library-master/keywords.txt -------------------------------------------------------------------------------- /Dallas_temperature/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Dallas_temperature/.gitignore -------------------------------------------------------------------------------- /Dallas_temperature/DallasTemperature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Dallas_temperature/DallasTemperature.h -------------------------------------------------------------------------------- /Dallas_temperature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Dallas_temperature/README.md -------------------------------------------------------------------------------- /Dallas_temperature/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Dallas_temperature/keywords.txt -------------------------------------------------------------------------------- /Dallas_temperature/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Dallas_temperature/library.json -------------------------------------------------------------------------------- /Dallas_temperature/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Dallas_temperature/library.properties -------------------------------------------------------------------------------- /Debug/MotoUnit.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Debug/MotoUnit.elf -------------------------------------------------------------------------------- /Debug/MotoUnit.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Debug/MotoUnit.hex -------------------------------------------------------------------------------- /Debug/MotoUnit.lss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Debug/MotoUnit.lss -------------------------------------------------------------------------------- /Debug/MotoUnit.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Debug/MotoUnit.map -------------------------------------------------------------------------------- /Debug/i2chw/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Debug/i2chw/subdir.mk -------------------------------------------------------------------------------- /Debug/i2chw/twimastertimeout.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Debug/i2chw/twimastertimeout.d -------------------------------------------------------------------------------- /Debug/i2chw/twimastertimeout.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Debug/i2chw/twimastertimeout.o -------------------------------------------------------------------------------- /Debug/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Debug/main.d -------------------------------------------------------------------------------- /Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Debug/main.o -------------------------------------------------------------------------------- /Debug/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Debug/makefile -------------------------------------------------------------------------------- /Debug/mpu6050/mpu6050.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Debug/mpu6050/mpu6050.d -------------------------------------------------------------------------------- /Debug/mpu6050/mpu6050.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Debug/mpu6050/mpu6050.o -------------------------------------------------------------------------------- /Debug/mpu6050/mpu6050dmp6.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Debug/mpu6050/mpu6050dmp6.d -------------------------------------------------------------------------------- /Debug/mpu6050/mpu6050dmp6.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Debug/mpu6050/mpu6050dmp6.o -------------------------------------------------------------------------------- /Debug/mpu6050/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Debug/mpu6050/subdir.mk -------------------------------------------------------------------------------- /Debug/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Debug/objects.mk -------------------------------------------------------------------------------- /Debug/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Debug/sources.mk -------------------------------------------------------------------------------- /Debug/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Debug/subdir.mk -------------------------------------------------------------------------------- /EEPROMex/EEPROMVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/EEPROMex/EEPROMVar.h -------------------------------------------------------------------------------- /EEPROMex/EEPROMex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/EEPROMex/EEPROMex.cpp -------------------------------------------------------------------------------- /EEPROMex/EEPROMex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/EEPROMex/EEPROMex.h -------------------------------------------------------------------------------- /ESP8266HTTPClient/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/ESP8266HTTPClient/library.properties -------------------------------------------------------------------------------- /Esplora/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Esplora/README.adoc -------------------------------------------------------------------------------- /Esplora/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Esplora/keywords.txt -------------------------------------------------------------------------------- /Esplora/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Esplora/library.properties -------------------------------------------------------------------------------- /Esplora/src/Esplora.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Esplora/src/Esplora.cpp -------------------------------------------------------------------------------- /Esplora/src/Esplora.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Esplora/src/Esplora.h -------------------------------------------------------------------------------- /Ethernet/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Ethernet/AUTHORS -------------------------------------------------------------------------------- /Ethernet/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Ethernet/README.adoc -------------------------------------------------------------------------------- /Ethernet/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Ethernet/keywords.txt -------------------------------------------------------------------------------- /Ethernet/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Ethernet/library.properties -------------------------------------------------------------------------------- /Ethernet/src/Dhcp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Ethernet/src/Dhcp.cpp -------------------------------------------------------------------------------- /Ethernet/src/Dhcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Ethernet/src/Dhcp.h -------------------------------------------------------------------------------- /Ethernet/src/Dns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Ethernet/src/Dns.cpp -------------------------------------------------------------------------------- /Ethernet/src/Dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Ethernet/src/Dns.h -------------------------------------------------------------------------------- /Ethernet/src/Ethernet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Ethernet/src/Ethernet.cpp -------------------------------------------------------------------------------- /Ethernet/src/Ethernet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Ethernet/src/Ethernet.h -------------------------------------------------------------------------------- /Ethernet/src/EthernetClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Ethernet/src/EthernetClient.cpp -------------------------------------------------------------------------------- /Ethernet/src/EthernetClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Ethernet/src/EthernetClient.h -------------------------------------------------------------------------------- /Ethernet/src/EthernetServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Ethernet/src/EthernetServer.cpp -------------------------------------------------------------------------------- /Ethernet/src/EthernetServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Ethernet/src/EthernetServer.h -------------------------------------------------------------------------------- /Ethernet/src/EthernetUdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Ethernet/src/EthernetUdp.cpp -------------------------------------------------------------------------------- /Ethernet/src/EthernetUdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Ethernet/src/EthernetUdp.h -------------------------------------------------------------------------------- /Ethernet/src/utility/socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Ethernet/src/utility/socket.cpp -------------------------------------------------------------------------------- /Ethernet/src/utility/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Ethernet/src/utility/socket.h -------------------------------------------------------------------------------- /Ethernet/src/utility/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Ethernet/src/utility/util.h -------------------------------------------------------------------------------- /Ethernet/src/utility/w5100.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Ethernet/src/utility/w5100.cpp -------------------------------------------------------------------------------- /Ethernet/src/utility/w5100.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Ethernet/src/utility/w5100.h -------------------------------------------------------------------------------- /FHT/128_reorder.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FHT/128_reorder.inc -------------------------------------------------------------------------------- /FHT/16_reorder.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FHT/16_reorder.inc -------------------------------------------------------------------------------- /FHT/256_reorder.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FHT/256_reorder.inc -------------------------------------------------------------------------------- /FHT/32_reorder.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FHT/32_reorder.inc -------------------------------------------------------------------------------- /FHT/64_reorder.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FHT/64_reorder.inc -------------------------------------------------------------------------------- /FHT/FHT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FHT/FHT.h -------------------------------------------------------------------------------- /FHT/cas_lookup_128.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FHT/cas_lookup_128.inc -------------------------------------------------------------------------------- /FHT/cas_lookup_16.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FHT/cas_lookup_16.inc -------------------------------------------------------------------------------- /FHT/cas_lookup_256.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FHT/cas_lookup_256.inc -------------------------------------------------------------------------------- /FHT/cas_lookup_32.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FHT/cas_lookup_32.inc -------------------------------------------------------------------------------- /FHT/cas_lookup_64.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FHT/cas_lookup_64.inc -------------------------------------------------------------------------------- /FHT/decibel.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FHT/decibel.inc -------------------------------------------------------------------------------- /FHT/examples/fht_adc/fht_adc.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FHT/examples/fht_adc/fht_adc.pde -------------------------------------------------------------------------------- /FHT/examples/fht_codec/fht_codec.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FHT/examples/fht_codec/fht_codec.pde -------------------------------------------------------------------------------- /FHT/fht_read_me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FHT/fht_read_me.txt -------------------------------------------------------------------------------- /FHT/hann_128.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FHT/hann_128.inc -------------------------------------------------------------------------------- /FHT/hann_16.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FHT/hann_16.inc -------------------------------------------------------------------------------- /FHT/hann_256.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FHT/hann_256.inc -------------------------------------------------------------------------------- /FHT/hann_32.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FHT/hann_32.inc -------------------------------------------------------------------------------- /FHT/hann_64.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FHT/hann_64.inc -------------------------------------------------------------------------------- /FHT/hann_window.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FHT/hann_window.inc -------------------------------------------------------------------------------- /FHT/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FHT/keywords.txt -------------------------------------------------------------------------------- /FHT/sqrtlookup16.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FHT/sqrtlookup16.inc -------------------------------------------------------------------------------- /FHT/sqrtlookup8.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FHT/sqrtlookup8.inc -------------------------------------------------------------------------------- /FastLED-GFX-master/FastLED_GFX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-GFX-master/FastLED_GFX.cpp -------------------------------------------------------------------------------- /FastLED-GFX-master/FastLED_GFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-GFX-master/FastLED_GFX.h -------------------------------------------------------------------------------- /FastLED-GFX-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-GFX-master/LICENSE -------------------------------------------------------------------------------- /FastLED-GFX-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-GFX-master/README.md -------------------------------------------------------------------------------- /FastLED-GFX-master/gfxfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-GFX-master/gfxfont.h -------------------------------------------------------------------------------- /FastLED-GFX-master/glcdfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-GFX-master/glcdfont.c -------------------------------------------------------------------------------- /FastLED-GFX-master/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-GFX-master/library.properties -------------------------------------------------------------------------------- /FastLED-GFX-master/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-GFX-master/license.txt -------------------------------------------------------------------------------- /FastLED-master/.gitignore: -------------------------------------------------------------------------------- 1 | html/ 2 | *.gch 3 | -------------------------------------------------------------------------------- /FastLED-master/FastLED.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/FastLED.cpp -------------------------------------------------------------------------------- /FastLED-master/FastLED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/FastLED.h -------------------------------------------------------------------------------- /FastLED-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/LICENSE -------------------------------------------------------------------------------- /FastLED-master/PORTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/PORTING.md -------------------------------------------------------------------------------- /FastLED-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/README.md -------------------------------------------------------------------------------- /FastLED-master/bitswap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/bitswap.cpp -------------------------------------------------------------------------------- /FastLED-master/bitswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/bitswap.h -------------------------------------------------------------------------------- /FastLED-master/chipsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/chipsets.h -------------------------------------------------------------------------------- /FastLED-master/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/color.h -------------------------------------------------------------------------------- /FastLED-master/colorpalettes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/colorpalettes.cpp -------------------------------------------------------------------------------- /FastLED-master/colorpalettes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/colorpalettes.h -------------------------------------------------------------------------------- /FastLED-master/colorutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/colorutils.cpp -------------------------------------------------------------------------------- /FastLED-master/colorutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/colorutils.h -------------------------------------------------------------------------------- /FastLED-master/controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/controller.h -------------------------------------------------------------------------------- /FastLED-master/cpp_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/cpp_compat.h -------------------------------------------------------------------------------- /FastLED-master/dmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/dmx.h -------------------------------------------------------------------------------- /FastLED-master/docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/docs/Doxyfile -------------------------------------------------------------------------------- /FastLED-master/docs/mainpage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/docs/mainpage.dox -------------------------------------------------------------------------------- /FastLED-master/extras/AppleII.s65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/extras/AppleII.s65 -------------------------------------------------------------------------------- /FastLED-master/extras/FastLED6502.s65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/extras/FastLED6502.s65 -------------------------------------------------------------------------------- /FastLED-master/extras/RainbowDemo.s65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/extras/RainbowDemo.s65 -------------------------------------------------------------------------------- /FastLED-master/fastled_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/fastled_config.h -------------------------------------------------------------------------------- /FastLED-master/fastled_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/fastled_delay.h -------------------------------------------------------------------------------- /FastLED-master/fastled_progmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/fastled_progmem.h -------------------------------------------------------------------------------- /FastLED-master/fastpin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/fastpin.h -------------------------------------------------------------------------------- /FastLED-master/fastspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/fastspi.h -------------------------------------------------------------------------------- /FastLED-master/fastspi_bitbang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/fastspi_bitbang.h -------------------------------------------------------------------------------- /FastLED-master/fastspi_dma.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FastLED-master/fastspi_nop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/fastspi_nop.h -------------------------------------------------------------------------------- /FastLED-master/fastspi_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/fastspi_ref.h -------------------------------------------------------------------------------- /FastLED-master/fastspi_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/fastspi_types.h -------------------------------------------------------------------------------- /FastLED-master/hsv2rgb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/hsv2rgb.cpp -------------------------------------------------------------------------------- /FastLED-master/hsv2rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/hsv2rgb.h -------------------------------------------------------------------------------- /FastLED-master/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/keywords.txt -------------------------------------------------------------------------------- /FastLED-master/led_sysdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/led_sysdefs.h -------------------------------------------------------------------------------- /FastLED-master/lib8tion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/lib8tion.cpp -------------------------------------------------------------------------------- /FastLED-master/lib8tion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/lib8tion.h -------------------------------------------------------------------------------- /FastLED-master/lib8tion/math8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/lib8tion/math8.h -------------------------------------------------------------------------------- /FastLED-master/lib8tion/random8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/lib8tion/random8.h -------------------------------------------------------------------------------- /FastLED-master/lib8tion/scale8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/lib8tion/scale8.h -------------------------------------------------------------------------------- /FastLED-master/lib8tion/trig8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/lib8tion/trig8.h -------------------------------------------------------------------------------- /FastLED-master/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/library.json -------------------------------------------------------------------------------- /FastLED-master/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/library.properties -------------------------------------------------------------------------------- /FastLED-master/noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/noise.cpp -------------------------------------------------------------------------------- /FastLED-master/noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/noise.h -------------------------------------------------------------------------------- /FastLED-master/pixelset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/pixelset.h -------------------------------------------------------------------------------- /FastLED-master/pixeltypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/pixeltypes.h -------------------------------------------------------------------------------- /FastLED-master/platforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/platforms.h -------------------------------------------------------------------------------- /FastLED-master/power_mgt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/power_mgt.cpp -------------------------------------------------------------------------------- /FastLED-master/power_mgt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/power_mgt.h -------------------------------------------------------------------------------- /FastLED-master/preview_changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/preview_changes.txt -------------------------------------------------------------------------------- /FastLED-master/release_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/release_notes.md -------------------------------------------------------------------------------- /FastLED-master/wiring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/FastLED-master/wiring.cpp -------------------------------------------------------------------------------- /Firmata/Boards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Firmata/Boards.h -------------------------------------------------------------------------------- /Firmata/Firmata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Firmata/Firmata.cpp -------------------------------------------------------------------------------- /Firmata/Firmata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Firmata/Firmata.h -------------------------------------------------------------------------------- /Firmata/FirmataConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Firmata/FirmataConstants.h -------------------------------------------------------------------------------- /Firmata/FirmataDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Firmata/FirmataDefines.h -------------------------------------------------------------------------------- /Firmata/FirmataMarshaller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Firmata/FirmataMarshaller.cpp -------------------------------------------------------------------------------- /Firmata/FirmataMarshaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Firmata/FirmataMarshaller.h -------------------------------------------------------------------------------- /Firmata/FirmataParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Firmata/FirmataParser.cpp -------------------------------------------------------------------------------- /Firmata/FirmataParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Firmata/FirmataParser.h -------------------------------------------------------------------------------- /Firmata/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Firmata/LICENSE.txt -------------------------------------------------------------------------------- /Firmata/extras/revisions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Firmata/extras/revisions.txt -------------------------------------------------------------------------------- /Firmata/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Firmata/keywords.txt -------------------------------------------------------------------------------- /Firmata/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Firmata/library.properties -------------------------------------------------------------------------------- /Firmata/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Firmata/readme.md -------------------------------------------------------------------------------- /Firmata/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Firmata/release.sh -------------------------------------------------------------------------------- /Firmata/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Firmata/test/readme.md -------------------------------------------------------------------------------- /Firmata/utility/BLEStream.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | * Implementation is in BLEStream.h to avoid linker issues. 3 | */ 4 | -------------------------------------------------------------------------------- /Firmata/utility/BLEStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Firmata/utility/BLEStream.h -------------------------------------------------------------------------------- /Firmata/utility/EthernetClientStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Firmata/utility/EthernetClientStream.h -------------------------------------------------------------------------------- /Firmata/utility/FirmataFeature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Firmata/utility/FirmataFeature.h -------------------------------------------------------------------------------- /Firmata/utility/SerialFirmata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Firmata/utility/SerialFirmata.cpp -------------------------------------------------------------------------------- /Firmata/utility/SerialFirmata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Firmata/utility/SerialFirmata.h -------------------------------------------------------------------------------- /Firmata/utility/WiFiClientStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Firmata/utility/WiFiClientStream.h -------------------------------------------------------------------------------- /Firmata/utility/WiFiServerStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Firmata/utility/WiFiServerStream.h -------------------------------------------------------------------------------- /Firmata/utility/WiFiStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Firmata/utility/WiFiStream.cpp -------------------------------------------------------------------------------- /Firmata/utility/WiFiStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Firmata/utility/WiFiStream.h -------------------------------------------------------------------------------- /Firmata/utility/firmataDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Firmata/utility/firmataDebug.h -------------------------------------------------------------------------------- /GSM/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/README.adoc -------------------------------------------------------------------------------- /GSM/examples/ReceiveSMS/ReceiveSMS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/examples/ReceiveSMS/ReceiveSMS.ino -------------------------------------------------------------------------------- /GSM/examples/SendSMS/SendSMS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/examples/SendSMS/SendSMS.ino -------------------------------------------------------------------------------- /GSM/extras/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/extras/License.txt -------------------------------------------------------------------------------- /GSM/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/keywords.txt -------------------------------------------------------------------------------- /GSM/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/library.properties -------------------------------------------------------------------------------- /GSM/src/GSM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM.h -------------------------------------------------------------------------------- /GSM/src/GSM3CircularBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3CircularBuffer.cpp -------------------------------------------------------------------------------- /GSM/src/GSM3CircularBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3CircularBuffer.h -------------------------------------------------------------------------------- /GSM/src/GSM3IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3IO.h -------------------------------------------------------------------------------- /GSM/src/GSM3MobileAccessProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3MobileAccessProvider.cpp -------------------------------------------------------------------------------- /GSM/src/GSM3MobileAccessProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3MobileAccessProvider.h -------------------------------------------------------------------------------- /GSM/src/GSM3MobileCellManagement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3MobileCellManagement.cpp -------------------------------------------------------------------------------- /GSM/src/GSM3MobileCellManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3MobileCellManagement.h -------------------------------------------------------------------------------- /GSM/src/GSM3MobileClientProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3MobileClientProvider.cpp -------------------------------------------------------------------------------- /GSM/src/GSM3MobileClientProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3MobileClientProvider.h -------------------------------------------------------------------------------- /GSM/src/GSM3MobileClientService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3MobileClientService.cpp -------------------------------------------------------------------------------- /GSM/src/GSM3MobileClientService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3MobileClientService.h -------------------------------------------------------------------------------- /GSM/src/GSM3MobileMockupProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3MobileMockupProvider.cpp -------------------------------------------------------------------------------- /GSM/src/GSM3MobileMockupProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3MobileMockupProvider.h -------------------------------------------------------------------------------- /GSM/src/GSM3MobileNetworkProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3MobileNetworkProvider.cpp -------------------------------------------------------------------------------- /GSM/src/GSM3MobileNetworkProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3MobileNetworkProvider.h -------------------------------------------------------------------------------- /GSM/src/GSM3MobileNetworkRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3MobileNetworkRegistry.cpp -------------------------------------------------------------------------------- /GSM/src/GSM3MobileNetworkRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3MobileNetworkRegistry.h -------------------------------------------------------------------------------- /GSM/src/GSM3MobileSMSProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3MobileSMSProvider.cpp -------------------------------------------------------------------------------- /GSM/src/GSM3MobileSMSProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3MobileSMSProvider.h -------------------------------------------------------------------------------- /GSM/src/GSM3MobileServerProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3MobileServerProvider.cpp -------------------------------------------------------------------------------- /GSM/src/GSM3MobileServerProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3MobileServerProvider.h -------------------------------------------------------------------------------- /GSM/src/GSM3MobileServerService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3MobileServerService.cpp -------------------------------------------------------------------------------- /GSM/src/GSM3MobileServerService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3MobileServerService.h -------------------------------------------------------------------------------- /GSM/src/GSM3MobileVoiceProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3MobileVoiceProvider.cpp -------------------------------------------------------------------------------- /GSM/src/GSM3MobileVoiceProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3MobileVoiceProvider.h -------------------------------------------------------------------------------- /GSM/src/GSM3SMSService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3SMSService.cpp -------------------------------------------------------------------------------- /GSM/src/GSM3SMSService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3SMSService.h -------------------------------------------------------------------------------- /GSM/src/GSM3ShieldV1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3ShieldV1.cpp -------------------------------------------------------------------------------- /GSM/src/GSM3ShieldV1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3ShieldV1.h -------------------------------------------------------------------------------- /GSM/src/GSM3ShieldV1AccessProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3ShieldV1AccessProvider.cpp -------------------------------------------------------------------------------- /GSM/src/GSM3ShieldV1AccessProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3ShieldV1AccessProvider.h -------------------------------------------------------------------------------- /GSM/src/GSM3ShieldV1BandManagement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3ShieldV1BandManagement.cpp -------------------------------------------------------------------------------- /GSM/src/GSM3ShieldV1BandManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3ShieldV1BandManagement.h -------------------------------------------------------------------------------- /GSM/src/GSM3ShieldV1BaseProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3ShieldV1BaseProvider.cpp -------------------------------------------------------------------------------- /GSM/src/GSM3ShieldV1BaseProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3ShieldV1BaseProvider.h -------------------------------------------------------------------------------- /GSM/src/GSM3ShieldV1CellManagement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3ShieldV1CellManagement.cpp -------------------------------------------------------------------------------- /GSM/src/GSM3ShieldV1CellManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3ShieldV1CellManagement.h -------------------------------------------------------------------------------- /GSM/src/GSM3ShieldV1ClientProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3ShieldV1ClientProvider.cpp -------------------------------------------------------------------------------- /GSM/src/GSM3ShieldV1ClientProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3ShieldV1ClientProvider.h -------------------------------------------------------------------------------- /GSM/src/GSM3ShieldV1ModemCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3ShieldV1ModemCore.cpp -------------------------------------------------------------------------------- /GSM/src/GSM3ShieldV1ModemCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3ShieldV1ModemCore.h -------------------------------------------------------------------------------- /GSM/src/GSM3ShieldV1PinManagement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3ShieldV1PinManagement.cpp -------------------------------------------------------------------------------- /GSM/src/GSM3ShieldV1PinManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3ShieldV1PinManagement.h -------------------------------------------------------------------------------- /GSM/src/GSM3ShieldV1SMSProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3ShieldV1SMSProvider.cpp -------------------------------------------------------------------------------- /GSM/src/GSM3ShieldV1SMSProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3ShieldV1SMSProvider.h -------------------------------------------------------------------------------- /GSM/src/GSM3ShieldV1ScanNetworks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3ShieldV1ScanNetworks.h -------------------------------------------------------------------------------- /GSM/src/GSM3ShieldV1VoiceProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3ShieldV1VoiceProvider.h -------------------------------------------------------------------------------- /GSM/src/GSM3SoftSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3SoftSerial.cpp -------------------------------------------------------------------------------- /GSM/src/GSM3SoftSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3SoftSerial.h -------------------------------------------------------------------------------- /GSM/src/GSM3VoiceCallService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3VoiceCallService.cpp -------------------------------------------------------------------------------- /GSM/src/GSM3VoiceCallService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSM/src/GSM3VoiceCallService.h -------------------------------------------------------------------------------- /GSMSHIELD/GSM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSMSHIELD/GSM.cpp -------------------------------------------------------------------------------- /GSMSHIELD/GSM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSMSHIELD/GSM.h -------------------------------------------------------------------------------- /GSMSHIELD/HWSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSMSHIELD/HWSerial.cpp -------------------------------------------------------------------------------- /GSMSHIELD/HWSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSMSHIELD/HWSerial.h -------------------------------------------------------------------------------- /GSMSHIELD/LOG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSMSHIELD/LOG.cpp -------------------------------------------------------------------------------- /GSMSHIELD/LOG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSMSHIELD/LOG.h -------------------------------------------------------------------------------- /GSMSHIELD/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSMSHIELD/README -------------------------------------------------------------------------------- /GSMSHIELD/SIM900.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSMSHIELD/SIM900.cpp -------------------------------------------------------------------------------- /GSMSHIELD/SIM900.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSMSHIELD/SIM900.h -------------------------------------------------------------------------------- /GSMSHIELD/Streaming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSMSHIELD/Streaming.h -------------------------------------------------------------------------------- /GSMSHIELD/WideTextFinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSMSHIELD/WideTextFinder.cpp -------------------------------------------------------------------------------- /GSMSHIELD/WideTextFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSMSHIELD/WideTextFinder.h -------------------------------------------------------------------------------- /GSMSHIELD/call.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSMSHIELD/call.cpp -------------------------------------------------------------------------------- /GSMSHIELD/call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSMSHIELD/call.h -------------------------------------------------------------------------------- /GSMSHIELD/doc/Istructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSMSHIELD/doc/Istructions.txt -------------------------------------------------------------------------------- /GSMSHIELD/doc/List.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSMSHIELD/doc/List.txt -------------------------------------------------------------------------------- /GSMSHIELD/gps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSMSHIELD/gps.cpp -------------------------------------------------------------------------------- /GSMSHIELD/gps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSMSHIELD/gps.h -------------------------------------------------------------------------------- /GSMSHIELD/inetGSM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSMSHIELD/inetGSM.cpp -------------------------------------------------------------------------------- /GSMSHIELD/inetGSM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSMSHIELD/inetGSM.h -------------------------------------------------------------------------------- /GSMSHIELD/sms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSMSHIELD/sms.cpp -------------------------------------------------------------------------------- /GSMSHIELD/sms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GSMSHIELD/sms.h -------------------------------------------------------------------------------- /GyverButton/GyverButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GyverButton/GyverButton.cpp -------------------------------------------------------------------------------- /GyverButton/GyverButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GyverButton/GyverButton.h -------------------------------------------------------------------------------- /GyverButton/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GyverButton/keywords.txt -------------------------------------------------------------------------------- /GyverEncoder/GyverEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GyverEncoder/GyverEncoder.cpp -------------------------------------------------------------------------------- /GyverEncoder/GyverEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GyverEncoder/GyverEncoder.h -------------------------------------------------------------------------------- /GyverEncoder/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GyverEncoder/keywords.txt -------------------------------------------------------------------------------- /GyverHacks/GParsingStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GyverHacks/GParsingStream.h -------------------------------------------------------------------------------- /GyverHacks/GyverHacks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GyverHacks/GyverHacks.cpp -------------------------------------------------------------------------------- /GyverHacks/GyverHacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GyverHacks/GyverHacks.h -------------------------------------------------------------------------------- /GyverHacks/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GyverHacks/keywords.txt -------------------------------------------------------------------------------- /GyverMotor/GyverMotor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GyverMotor/GyverMotor.cpp -------------------------------------------------------------------------------- /GyverMotor/GyverMotor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GyverMotor/GyverMotor.h -------------------------------------------------------------------------------- /GyverMotor/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GyverMotor/keywords.txt -------------------------------------------------------------------------------- /GyverRC/GyverRC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GyverRC/GyverRC.cpp -------------------------------------------------------------------------------- /GyverRC/GyverRC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GyverRC/GyverRC.h -------------------------------------------------------------------------------- /GyverRC/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GyverRC/keywords.txt -------------------------------------------------------------------------------- /GyverRGB/GyverRGB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GyverRGB/GyverRGB.cpp -------------------------------------------------------------------------------- /GyverRGB/GyverRGB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GyverRGB/GyverRGB.h -------------------------------------------------------------------------------- /GyverRGB/examples/colors/colors.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GyverRGB/examples/colors/colors.ino -------------------------------------------------------------------------------- /GyverRGB/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GyverRGB/keywords.txt -------------------------------------------------------------------------------- /GyverRTOS/GyverRTOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GyverRTOS/GyverRTOS.h -------------------------------------------------------------------------------- /GyverRTOS/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/GyverRTOS/keywords.txt -------------------------------------------------------------------------------- /I2Cdev/I2Cdev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/I2Cdev/I2Cdev.cpp -------------------------------------------------------------------------------- /I2Cdev/I2Cdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/I2Cdev/I2Cdev.h -------------------------------------------------------------------------------- /I2Cdev/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/I2Cdev/keywords.txt -------------------------------------------------------------------------------- /I2Cdev/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/I2Cdev/library.json -------------------------------------------------------------------------------- /IRLremote-master/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRLremote-master/Readme.md -------------------------------------------------------------------------------- /IRLremote-master/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRLremote-master/header.jpg -------------------------------------------------------------------------------- /IRLremote-master/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRLremote-master/keywords.txt -------------------------------------------------------------------------------- /IRLremote-master/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRLremote-master/library.properties -------------------------------------------------------------------------------- /IRLremote-master/src/IRL_Decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRLremote-master/src/IRL_Decode.h -------------------------------------------------------------------------------- /IRLremote-master/src/IRL_Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRLremote-master/src/IRL_Hash.h -------------------------------------------------------------------------------- /IRLremote-master/src/IRL_Keycodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRLremote-master/src/IRL_Keycodes.h -------------------------------------------------------------------------------- /IRLremote-master/src/IRL_Nec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRLremote-master/src/IRL_Nec.h -------------------------------------------------------------------------------- /IRLremote-master/src/IRL_NecAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRLremote-master/src/IRL_NecAPI.h -------------------------------------------------------------------------------- /IRLremote-master/src/IRL_Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRLremote-master/src/IRL_Platform.h -------------------------------------------------------------------------------- /IRLremote-master/src/IRL_Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRLremote-master/src/IRL_Protocol.h -------------------------------------------------------------------------------- /IRLremote-master/src/IRL_Receive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRLremote-master/src/IRL_Receive.h -------------------------------------------------------------------------------- /IRLremote-master/src/IRL_Time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRLremote-master/src/IRL_Time.h -------------------------------------------------------------------------------- /IRLremote-master/src/IRLremote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRLremote-master/src/IRLremote.cpp -------------------------------------------------------------------------------- /IRLremote-master/src/IRLremote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRLremote-master/src/IRLremote.h -------------------------------------------------------------------------------- /IRremote/Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRremote/Contributing.md -------------------------------------------------------------------------------- /IRremote/Contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRremote/Contributors.md -------------------------------------------------------------------------------- /IRremote/IRremote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRremote/IRremote.cpp -------------------------------------------------------------------------------- /IRremote/IRremote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRremote/IRremote.h -------------------------------------------------------------------------------- /IRremote/IRremoteInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRremote/IRremoteInt.h -------------------------------------------------------------------------------- /IRremote/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRremote/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /IRremote/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRremote/LICENSE.txt -------------------------------------------------------------------------------- /IRremote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRremote/README.md -------------------------------------------------------------------------------- /IRremote/boarddefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRremote/boarddefs.h -------------------------------------------------------------------------------- /IRremote/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRremote/changelog.md -------------------------------------------------------------------------------- /IRremote/esp32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRremote/esp32.cpp -------------------------------------------------------------------------------- /IRremote/examples/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRremote/examples/.DS_Store -------------------------------------------------------------------------------- /IRremote/examples/IRtest/IRtest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRremote/examples/IRtest/IRtest.ino -------------------------------------------------------------------------------- /IRremote/irPronto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRremote/irPronto.cpp -------------------------------------------------------------------------------- /IRremote/irRecv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRremote/irRecv.cpp -------------------------------------------------------------------------------- /IRremote/irSend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRremote/irSend.cpp -------------------------------------------------------------------------------- /IRremote/ir_Aiwa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRremote/ir_Aiwa.cpp -------------------------------------------------------------------------------- /IRremote/ir_Denon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRremote/ir_Denon.cpp -------------------------------------------------------------------------------- /IRremote/ir_Dish.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRremote/ir_Dish.cpp -------------------------------------------------------------------------------- /IRremote/ir_JVC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRremote/ir_JVC.cpp -------------------------------------------------------------------------------- /IRremote/ir_LG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRremote/ir_LG.cpp -------------------------------------------------------------------------------- /IRremote/ir_Lego_PF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRremote/ir_Lego_PF.cpp -------------------------------------------------------------------------------- /IRremote/ir_Mitsubishi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRremote/ir_Mitsubishi.cpp -------------------------------------------------------------------------------- /IRremote/ir_NEC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRremote/ir_NEC.cpp -------------------------------------------------------------------------------- /IRremote/ir_Panasonic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRremote/ir_Panasonic.cpp -------------------------------------------------------------------------------- /IRremote/ir_RC5_RC6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRremote/ir_RC5_RC6.cpp -------------------------------------------------------------------------------- /IRremote/ir_Samsung.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRremote/ir_Samsung.cpp -------------------------------------------------------------------------------- /IRremote/ir_Sanyo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRremote/ir_Sanyo.cpp -------------------------------------------------------------------------------- /IRremote/ir_Sharp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRremote/ir_Sharp.cpp -------------------------------------------------------------------------------- /IRremote/ir_Sony.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRremote/ir_Sony.cpp -------------------------------------------------------------------------------- /IRremote/ir_Template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRremote/ir_Template.cpp -------------------------------------------------------------------------------- /IRremote/ir_Whynter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRremote/ir_Whynter.cpp -------------------------------------------------------------------------------- /IRremote/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRremote/keywords.txt -------------------------------------------------------------------------------- /IRremote/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRremote/library.json -------------------------------------------------------------------------------- /IRremote/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRremote/library.properties -------------------------------------------------------------------------------- /IRremote/sam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/IRremote/sam.cpp -------------------------------------------------------------------------------- /Kalman_accel/Graph/Convert.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Kalman_accel/Graph/Convert.pde -------------------------------------------------------------------------------- /Kalman_accel/Graph/DrawAxis.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Kalman_accel/Graph/DrawAxis.pde -------------------------------------------------------------------------------- /Kalman_accel/Graph/Graph.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Kalman_accel/Graph/Graph.pde -------------------------------------------------------------------------------- /Kalman_accel/Kalman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Kalman_accel/Kalman.h -------------------------------------------------------------------------------- /Kalman_accel/MPU6050/MPU6050.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Kalman_accel/MPU6050/MPU6050.ino -------------------------------------------------------------------------------- /Kalman_accel/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Kalman_accel/README -------------------------------------------------------------------------------- /Keyboard/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Keyboard/README.adoc -------------------------------------------------------------------------------- /Keyboard/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Keyboard/keywords.txt -------------------------------------------------------------------------------- /Keyboard/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Keyboard/library.properties -------------------------------------------------------------------------------- /Keyboard/src/Keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Keyboard/src/Keyboard.cpp -------------------------------------------------------------------------------- /Keyboard/src/Keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Keyboard/src/Keyboard.h -------------------------------------------------------------------------------- /Keypad-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Keypad-master/LICENSE -------------------------------------------------------------------------------- /Keypad-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Keypad-master/README.md -------------------------------------------------------------------------------- /Keypad-master/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Keypad-master/keywords.txt -------------------------------------------------------------------------------- /Keypad-master/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Keypad-master/library.properties -------------------------------------------------------------------------------- /Keypad-master/src/Key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Keypad-master/src/Key.cpp -------------------------------------------------------------------------------- /Keypad-master/src/Key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Keypad-master/src/Key.h -------------------------------------------------------------------------------- /Keypad-master/src/Keypad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Keypad-master/src/Keypad.cpp -------------------------------------------------------------------------------- /Keypad-master/src/Keypad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Keypad-master/src/Keypad.h -------------------------------------------------------------------------------- /LCD_1602_RUS/LCD_1602_RUS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/LCD_1602_RUS/LCD_1602_RUS.cpp -------------------------------------------------------------------------------- /LCD_1602_RUS/LCD_1602_RUS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/LCD_1602_RUS/LCD_1602_RUS.h -------------------------------------------------------------------------------- /LCD_1602_RUS/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/LCD_1602_RUS/LICENSE -------------------------------------------------------------------------------- /LCD_1602_RUS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/LCD_1602_RUS/README.md -------------------------------------------------------------------------------- /LCD_1602_RUS/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/LCD_1602_RUS/library.properties -------------------------------------------------------------------------------- /LedControl-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/LedControl-master/LICENSE -------------------------------------------------------------------------------- /LedControl-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/LedControl-master/README.md -------------------------------------------------------------------------------- /LedControl-master/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/LedControl-master/keywords.txt -------------------------------------------------------------------------------- /LedControl-master/src/LedControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/LedControl-master/src/LedControl.h -------------------------------------------------------------------------------- /LiquidCrystal/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/LiquidCrystal/README.adoc -------------------------------------------------------------------------------- /LiquidCrystal/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/LiquidCrystal/keywords.txt -------------------------------------------------------------------------------- /LiquidCrystal/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/LiquidCrystal/library.properties -------------------------------------------------------------------------------- /LiquidCrystal/src/LiquidCrystal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/LiquidCrystal/src/LiquidCrystal.cpp -------------------------------------------------------------------------------- /LiquidCrystal/src/LiquidCrystal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/LiquidCrystal/src/LiquidCrystal.h -------------------------------------------------------------------------------- /LiquidCrystalRus/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/LiquidCrystalRus/COPYING -------------------------------------------------------------------------------- /LiquidCrystalRus/LiquidCrystalRus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/LiquidCrystalRus/LiquidCrystalRus.h -------------------------------------------------------------------------------- /LiquidCrystalRus/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/LiquidCrystalRus/README -------------------------------------------------------------------------------- /LiquidCrystalRus/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/LiquidCrystalRus/keywords.txt -------------------------------------------------------------------------------- /LiquidCrystal_I2C-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/LiquidCrystal_I2C-master/README.md -------------------------------------------------------------------------------- /Low-Power-master/LowPower.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Low-Power-master/LowPower.cpp -------------------------------------------------------------------------------- /Low-Power-master/LowPower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Low-Power-master/LowPower.h -------------------------------------------------------------------------------- /Low-Power-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Low-Power-master/README.md -------------------------------------------------------------------------------- /Low-Power-master/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Low-Power-master/keywords.txt -------------------------------------------------------------------------------- /Low-Power-master/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Low-Power-master/library.properties -------------------------------------------------------------------------------- /MPU6050/MPU6050.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/MPU6050/MPU6050.cpp -------------------------------------------------------------------------------- /MPU6050/MPU6050.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/MPU6050/MPU6050.h -------------------------------------------------------------------------------- /MPU6050/helper_3dmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/MPU6050/helper_3dmath.h -------------------------------------------------------------------------------- /MPU6050/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/MPU6050/library.json -------------------------------------------------------------------------------- /Mouse/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Mouse/README.adoc -------------------------------------------------------------------------------- /Mouse/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Mouse/keywords.txt -------------------------------------------------------------------------------- /Mouse/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Mouse/library.properties -------------------------------------------------------------------------------- /Mouse/src/Mouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Mouse/src/Mouse.cpp -------------------------------------------------------------------------------- /Mouse/src/Mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Mouse/src/Mouse.h -------------------------------------------------------------------------------- /MyMenu/MyMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/MyMenu/MyMenu.cpp -------------------------------------------------------------------------------- /MyMenu/MyMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/MyMenu/MyMenu.h -------------------------------------------------------------------------------- /MyMenu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/MyMenu/README.md -------------------------------------------------------------------------------- /NewPing/NewPing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/NewPing/NewPing.cpp -------------------------------------------------------------------------------- /NewPing/NewPing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/NewPing/NewPing.h -------------------------------------------------------------------------------- /NewPing/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/NewPing/keywords.txt -------------------------------------------------------------------------------- /OLED_I2C/DefaultFonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/OLED_I2C/DefaultFonts.c -------------------------------------------------------------------------------- /OLED_I2C/Documentation/OLED_I2C.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/OLED_I2C/Documentation/OLED_I2C.pdf -------------------------------------------------------------------------------- /OLED_I2C/Documentation/version.txt: -------------------------------------------------------------------------------- 1 | Version: 2 | 1.0 01 Mar 2015 - initial release 3 | -------------------------------------------------------------------------------- /OLED_I2C/OLED_I2C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/OLED_I2C/OLED_I2C.cpp -------------------------------------------------------------------------------- /OLED_I2C/OLED_I2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/OLED_I2C/OLED_I2C.h -------------------------------------------------------------------------------- /OLED_I2C/hardware/arm/HW_ARM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/OLED_I2C/hardware/arm/HW_ARM.h -------------------------------------------------------------------------------- /OLED_I2C/hardware/avr/HW_AVR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/OLED_I2C/hardware/avr/HW_AVR.h -------------------------------------------------------------------------------- /OLED_I2C/hardware/pic32/HW_PIC32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/OLED_I2C/hardware/pic32/HW_PIC32.h -------------------------------------------------------------------------------- /OLED_I2C/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/OLED_I2C/keywords.txt -------------------------------------------------------------------------------- /OneButton-master/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /OneButton-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/OneButton-master/LICENSE -------------------------------------------------------------------------------- /OneButton-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/OneButton-master/README.md -------------------------------------------------------------------------------- /OneButton-master/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/OneButton-master/keywords.txt -------------------------------------------------------------------------------- /OneButton-master/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/OneButton-master/library.json -------------------------------------------------------------------------------- /OneButton-master/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/OneButton-master/library.properties -------------------------------------------------------------------------------- /OneButton-master/src/OneButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/OneButton-master/src/OneButton.cpp -------------------------------------------------------------------------------- /OneButton-master/src/OneButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/OneButton-master/src/OneButton.h -------------------------------------------------------------------------------- /OneWire/OneWire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/OneWire/OneWire.cpp -------------------------------------------------------------------------------- /OneWire/OneWire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/OneWire/OneWire.h -------------------------------------------------------------------------------- /PWM/PWM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/PWM/PWM.h -------------------------------------------------------------------------------- /PWM/PWM_lib_RUS/PWM_lib_RUS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/PWM/PWM_lib_RUS/PWM_lib_RUS.ino -------------------------------------------------------------------------------- /PWM/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/PWM/keywords.txt -------------------------------------------------------------------------------- /PWM/utility/ATimerDefs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/PWM/utility/ATimerDefs.cpp -------------------------------------------------------------------------------- /PWM/utility/ATimerDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/PWM/utility/ATimerDefs.h -------------------------------------------------------------------------------- /PWM/utility/BTimerDefs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/PWM/utility/BTimerDefs.cpp -------------------------------------------------------------------------------- /PWM/utility/BTimerDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/PWM/utility/BTimerDefs.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # myLibraries 2 | -------------------------------------------------------------------------------- /RF24-master/RF24.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/RF24-master/RF24.cpp -------------------------------------------------------------------------------- /RF24-master/RF24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/RF24-master/RF24.h -------------------------------------------------------------------------------- /RF24-master/RF24_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/RF24-master/RF24_config.h -------------------------------------------------------------------------------- /RF24-master/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/RF24-master/keywords.txt -------------------------------------------------------------------------------- /RF24-master/nRF24L01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/RF24-master/nRF24L01.h -------------------------------------------------------------------------------- /RF24-master/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/RF24-master/printf.h -------------------------------------------------------------------------------- /RF24Audio-master/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/RF24Audio-master/.gitattributes -------------------------------------------------------------------------------- /RF24Audio-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/RF24Audio-master/.gitignore -------------------------------------------------------------------------------- /RF24Audio-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/RF24Audio-master/README.md -------------------------------------------------------------------------------- /RF24Audio-master/RF24Audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/RF24Audio-master/RF24Audio.cpp -------------------------------------------------------------------------------- /RF24Audio-master/RF24Audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/RF24Audio-master/RF24Audio.h -------------------------------------------------------------------------------- /RF24Audio-master/bit-rate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/RF24Audio-master/bit-rate.png -------------------------------------------------------------------------------- /RF24Audio-master/userConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/RF24Audio-master/userConfig.h -------------------------------------------------------------------------------- /RF24V/RF24V.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/RF24V/RF24V.cpp -------------------------------------------------------------------------------- /RF24V/RF24V.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/RF24V/RF24V.h -------------------------------------------------------------------------------- /RF24V/Screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/RF24V/Screenshot_1.png -------------------------------------------------------------------------------- /RF24V/examples/reader/reader.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/RF24V/examples/reader/reader.ino -------------------------------------------------------------------------------- /RF24V/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/RF24V/settings.h -------------------------------------------------------------------------------- /RF433_iarduino/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/RF433_iarduino/keywords.txt -------------------------------------------------------------------------------- /RF433_iarduino/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/RF433_iarduino/library.properties -------------------------------------------------------------------------------- /RF433_iarduino/src/iarduino_RF433.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/RF433_iarduino/src/iarduino_RF433.h -------------------------------------------------------------------------------- /RTClib-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/RTClib-master/README.md -------------------------------------------------------------------------------- /RTClib-master/RTClib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/RTClib-master/RTClib.cpp -------------------------------------------------------------------------------- /RTClib-master/RTClib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/RTClib-master/RTClib.h -------------------------------------------------------------------------------- /RTClib-master/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/RTClib-master/keywords.txt -------------------------------------------------------------------------------- /RTClib-master/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/RTClib-master/library.properties -------------------------------------------------------------------------------- /RobotIRremote/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/RobotIRremote/README.adoc -------------------------------------------------------------------------------- /RobotIRremote/extras/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/RobotIRremote/extras/LICENSE.txt -------------------------------------------------------------------------------- /RobotIRremote/extras/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/RobotIRremote/extras/readme -------------------------------------------------------------------------------- /RobotIRremote/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/RobotIRremote/keywords.txt -------------------------------------------------------------------------------- /RobotIRremote/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/RobotIRremote/library.properties -------------------------------------------------------------------------------- /RobotIRremote/src/IRremote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/RobotIRremote/src/IRremote.cpp -------------------------------------------------------------------------------- /RobotIRremote/src/IRremoteTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/RobotIRremote/src/IRremoteTools.cpp -------------------------------------------------------------------------------- /RobotIRremote/src/RobotIRremote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/RobotIRremote/src/RobotIRremote.h -------------------------------------------------------------------------------- /Robot_Control/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Control/README.adoc -------------------------------------------------------------------------------- /Robot_Control/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Control/library.properties -------------------------------------------------------------------------------- /Robot_Control/src/ArduinoRobot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Control/src/ArduinoRobot.cpp -------------------------------------------------------------------------------- /Robot_Control/src/ArduinoRobot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Control/src/ArduinoRobot.h -------------------------------------------------------------------------------- /Robot_Control/src/Arduino_LCD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Control/src/Arduino_LCD.cpp -------------------------------------------------------------------------------- /Robot_Control/src/Arduino_LCD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Control/src/Arduino_LCD.h -------------------------------------------------------------------------------- /Robot_Control/src/Compass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Control/src/Compass.cpp -------------------------------------------------------------------------------- /Robot_Control/src/Compass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Control/src/Compass.h -------------------------------------------------------------------------------- /Robot_Control/src/EEPROM_I2C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Control/src/EEPROM_I2C.cpp -------------------------------------------------------------------------------- /Robot_Control/src/EEPROM_I2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Control/src/EEPROM_I2C.h -------------------------------------------------------------------------------- /Robot_Control/src/EasyTransfer2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Control/src/EasyTransfer2.cpp -------------------------------------------------------------------------------- /Robot_Control/src/EasyTransfer2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Control/src/EasyTransfer2.h -------------------------------------------------------------------------------- /Robot_Control/src/Fat16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Control/src/Fat16.cpp -------------------------------------------------------------------------------- /Robot_Control/src/Fat16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Control/src/Fat16.h -------------------------------------------------------------------------------- /Robot_Control/src/Fat16Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Control/src/Fat16Config.h -------------------------------------------------------------------------------- /Robot_Control/src/Fat16mainpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Control/src/Fat16mainpage.h -------------------------------------------------------------------------------- /Robot_Control/src/Fat16util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Control/src/Fat16util.h -------------------------------------------------------------------------------- /Robot_Control/src/FatStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Control/src/FatStructs.h -------------------------------------------------------------------------------- /Robot_Control/src/Melody.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Control/src/Melody.cpp -------------------------------------------------------------------------------- /Robot_Control/src/Motors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Control/src/Motors.cpp -------------------------------------------------------------------------------- /Robot_Control/src/Multiplexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Control/src/Multiplexer.cpp -------------------------------------------------------------------------------- /Robot_Control/src/Multiplexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Control/src/Multiplexer.h -------------------------------------------------------------------------------- /Robot_Control/src/RobotSdCard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Control/src/RobotSdCard.cpp -------------------------------------------------------------------------------- /Robot_Control/src/SdCard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Control/src/SdCard.cpp -------------------------------------------------------------------------------- /Robot_Control/src/SdCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Control/src/SdCard.h -------------------------------------------------------------------------------- /Robot_Control/src/SdInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Control/src/SdInfo.h -------------------------------------------------------------------------------- /Robot_Control/src/Sensors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Control/src/Sensors.cpp -------------------------------------------------------------------------------- /Robot_Control/src/Squawk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Control/src/Squawk.cpp -------------------------------------------------------------------------------- /Robot_Control/src/Squawk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Control/src/Squawk.h -------------------------------------------------------------------------------- /Robot_Control/src/SquawkSD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Control/src/SquawkSD.cpp -------------------------------------------------------------------------------- /Robot_Control/src/SquawkSD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Control/src/SquawkSD.h -------------------------------------------------------------------------------- /Robot_Control/src/communication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Control/src/communication.cpp -------------------------------------------------------------------------------- /Robot_Control/src/glcdfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Control/src/glcdfont.c -------------------------------------------------------------------------------- /Robot_Control/src/helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Control/src/helper.cpp -------------------------------------------------------------------------------- /Robot_Control/src/information.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Control/src/information.cpp -------------------------------------------------------------------------------- /Robot_Control/src/keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Control/src/keyboard.cpp -------------------------------------------------------------------------------- /Robot_Control/src/lcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Control/src/lcd.cpp -------------------------------------------------------------------------------- /Robot_Motor/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Motor/README.adoc -------------------------------------------------------------------------------- /Robot_Motor/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Motor/library.properties -------------------------------------------------------------------------------- /Robot_Motor/src/EasyTransfer2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Motor/src/EasyTransfer2.cpp -------------------------------------------------------------------------------- /Robot_Motor/src/EasyTransfer2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Motor/src/EasyTransfer2.h -------------------------------------------------------------------------------- /Robot_Motor/src/LineFollow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Motor/src/LineFollow.h -------------------------------------------------------------------------------- /Robot_Motor/src/Multiplexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Motor/src/Multiplexer.cpp -------------------------------------------------------------------------------- /Robot_Motor/src/Multiplexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Motor/src/Multiplexer.h -------------------------------------------------------------------------------- /Robot_Motor/src/lineFollow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Robot_Motor/src/lineFollow.cpp -------------------------------------------------------------------------------- /SD/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SD/README.adoc -------------------------------------------------------------------------------- /SD/examples/CardInfo/CardInfo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SD/examples/CardInfo/CardInfo.ino -------------------------------------------------------------------------------- /SD/examples/DumpFile/DumpFile.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SD/examples/DumpFile/DumpFile.ino -------------------------------------------------------------------------------- /SD/examples/Files/Files.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SD/examples/Files/Files.ino -------------------------------------------------------------------------------- /SD/examples/ReadWrite/ReadWrite.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SD/examples/ReadWrite/ReadWrite.ino -------------------------------------------------------------------------------- /SD/examples/listfiles/listfiles.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SD/examples/listfiles/listfiles.ino -------------------------------------------------------------------------------- /SD/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SD/keywords.txt -------------------------------------------------------------------------------- /SD/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SD/library.properties -------------------------------------------------------------------------------- /SD/src/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SD/src/File.cpp -------------------------------------------------------------------------------- /SD/src/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SD/src/README.txt -------------------------------------------------------------------------------- /SD/src/SD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SD/src/SD.cpp -------------------------------------------------------------------------------- /SD/src/SD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SD/src/SD.h -------------------------------------------------------------------------------- /SD/src/utility/FatStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SD/src/utility/FatStructs.h -------------------------------------------------------------------------------- /SD/src/utility/Sd2Card.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SD/src/utility/Sd2Card.cpp -------------------------------------------------------------------------------- /SD/src/utility/Sd2Card.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SD/src/utility/Sd2Card.h -------------------------------------------------------------------------------- /SD/src/utility/Sd2PinMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SD/src/utility/Sd2PinMap.h -------------------------------------------------------------------------------- /SD/src/utility/SdFat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SD/src/utility/SdFat.h -------------------------------------------------------------------------------- /SD/src/utility/SdFatUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SD/src/utility/SdFatUtil.h -------------------------------------------------------------------------------- /SD/src/utility/SdFatmainpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SD/src/utility/SdFatmainpage.h -------------------------------------------------------------------------------- /SD/src/utility/SdFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SD/src/utility/SdFile.cpp -------------------------------------------------------------------------------- /SD/src/utility/SdInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SD/src/utility/SdInfo.h -------------------------------------------------------------------------------- /SD/src/utility/SdVolume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SD/src/utility/SdVolume.cpp -------------------------------------------------------------------------------- /SdFat-master/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/.gitattributes -------------------------------------------------------------------------------- /SdFat-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/.gitignore -------------------------------------------------------------------------------- /SdFat-master/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/LICENSE.md -------------------------------------------------------------------------------- /SdFat-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/README.md -------------------------------------------------------------------------------- /SdFat-master/examples/LongFileName/testFiles/LFN,NAME.TXT: -------------------------------------------------------------------------------- 1 | LFN,NAME.TXT is not 8.3 since it has a comma. -------------------------------------------------------------------------------- /SdFat-master/examples/LongFileName/testFiles/OK%83.TXT: -------------------------------------------------------------------------------- 1 | OK%83.TXT is a valid 8.3 name. -------------------------------------------------------------------------------- /SdFat-master/examples/LongFileName/testFiles/STD_8_3.TXT: -------------------------------------------------------------------------------- 1 | STD_8_3.TXT - a vanilla 8.3 name. -------------------------------------------------------------------------------- /SdFat-master/examples/LongFileName/testFiles/With Blank.txt: -------------------------------------------------------------------------------- 1 | With Blank.txt 2 | Just another example of a Long File Name. 3 | -------------------------------------------------------------------------------- /SdFat-master/examples/LowLatencyLoggerADXL345/readme.txt: -------------------------------------------------------------------------------- 1 | Test of shared SPI for LowLatencyLogger. -------------------------------------------------------------------------------- /SdFat-master/examples/wipe/wipe.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/examples/wipe/wipe.ino -------------------------------------------------------------------------------- /SdFat-master/extras/SdFat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/extras/SdFat.html -------------------------------------------------------------------------------- /SdFat-master/extras/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/extras/changes.txt -------------------------------------------------------------------------------- /SdFat-master/extras/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/extras/html/bc_s.png -------------------------------------------------------------------------------- /SdFat-master/extras/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/extras/html/bdwn.png -------------------------------------------------------------------------------- /SdFat-master/extras/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/extras/html/closed.png -------------------------------------------------------------------------------- /SdFat-master/extras/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/extras/html/doc.png -------------------------------------------------------------------------------- /SdFat-master/extras/html/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/extras/html/files.html -------------------------------------------------------------------------------- /SdFat-master/extras/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/extras/html/index.html -------------------------------------------------------------------------------- /SdFat-master/extras/html/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/extras/html/jquery.js -------------------------------------------------------------------------------- /SdFat-master/extras/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/extras/html/nav_f.png -------------------------------------------------------------------------------- /SdFat-master/extras/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/extras/html/nav_g.png -------------------------------------------------------------------------------- /SdFat-master/extras/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/extras/html/nav_h.png -------------------------------------------------------------------------------- /SdFat-master/extras/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/extras/html/open.png -------------------------------------------------------------------------------- /SdFat-master/extras/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/extras/html/tab_a.png -------------------------------------------------------------------------------- /SdFat-master/extras/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/extras/html/tab_b.png -------------------------------------------------------------------------------- /SdFat-master/extras/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/extras/html/tab_h.png -------------------------------------------------------------------------------- /SdFat-master/extras/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/extras/html/tab_s.png -------------------------------------------------------------------------------- /SdFat-master/extras/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/extras/html/tabs.css -------------------------------------------------------------------------------- /SdFat-master/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/library.properties -------------------------------------------------------------------------------- /SdFat-master/src/BlockDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/src/BlockDriver.h -------------------------------------------------------------------------------- /SdFat-master/src/FatLib/FatFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/src/FatLib/FatFile.cpp -------------------------------------------------------------------------------- /SdFat-master/src/FatLib/FatFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/src/FatLib/FatFile.h -------------------------------------------------------------------------------- /SdFat-master/src/FatLib/FatLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/src/FatLib/FatLib.h -------------------------------------------------------------------------------- /SdFat-master/src/FatLib/FatVolume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/src/FatLib/FatVolume.h -------------------------------------------------------------------------------- /SdFat-master/src/FatLib/FmtNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/src/FatLib/FmtNumber.h -------------------------------------------------------------------------------- /SdFat-master/src/FatLib/bufstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/src/FatLib/bufstream.h -------------------------------------------------------------------------------- /SdFat-master/src/FatLib/fstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/src/FatLib/fstream.cpp -------------------------------------------------------------------------------- /SdFat-master/src/FatLib/fstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/src/FatLib/fstream.h -------------------------------------------------------------------------------- /SdFat-master/src/FatLib/ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/src/FatLib/ios.h -------------------------------------------------------------------------------- /SdFat-master/src/FatLib/iostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/src/FatLib/iostream.h -------------------------------------------------------------------------------- /SdFat-master/src/FatLib/istream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/src/FatLib/istream.cpp -------------------------------------------------------------------------------- /SdFat-master/src/FatLib/istream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/src/FatLib/istream.h -------------------------------------------------------------------------------- /SdFat-master/src/FatLib/ostream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/src/FatLib/ostream.cpp -------------------------------------------------------------------------------- /SdFat-master/src/FatLib/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/src/FatLib/ostream.h -------------------------------------------------------------------------------- /SdFat-master/src/FreeStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/src/FreeStack.h -------------------------------------------------------------------------------- /SdFat-master/src/MinimumSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/src/MinimumSerial.cpp -------------------------------------------------------------------------------- /SdFat-master/src/MinimumSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/src/MinimumSerial.h -------------------------------------------------------------------------------- /SdFat-master/src/SdCard/SdInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/src/SdCard/SdInfo.h -------------------------------------------------------------------------------- /SdFat-master/src/SdCard/SdSpiCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/src/SdCard/SdSpiCard.h -------------------------------------------------------------------------------- /SdFat-master/src/SdCard/SdioCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/src/SdCard/SdioCard.h -------------------------------------------------------------------------------- /SdFat-master/src/SdFat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/src/SdFat.h -------------------------------------------------------------------------------- /SdFat-master/src/SdFatConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/src/SdFatConfig.h -------------------------------------------------------------------------------- /SdFat-master/src/SysCall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SdFat-master/src/SysCall.h -------------------------------------------------------------------------------- /Servo/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Servo/README.adoc -------------------------------------------------------------------------------- /Servo/examples/Knob/Knob.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Servo/examples/Knob/Knob.ino -------------------------------------------------------------------------------- /Servo/examples/Sweep/Sweep.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Servo/examples/Sweep/Sweep.ino -------------------------------------------------------------------------------- /Servo/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Servo/keywords.txt -------------------------------------------------------------------------------- /Servo/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Servo/library.properties -------------------------------------------------------------------------------- /Servo/src/Servo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Servo/src/Servo.h -------------------------------------------------------------------------------- /Servo/src/avr/Servo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Servo/src/avr/Servo.cpp -------------------------------------------------------------------------------- /Servo/src/avr/ServoTimers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Servo/src/avr/ServoTimers.h -------------------------------------------------------------------------------- /Servo/src/nrf52/Servo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Servo/src/nrf52/Servo.cpp -------------------------------------------------------------------------------- /Servo/src/nrf52/ServoTimers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Servo/src/nrf52/ServoTimers.h -------------------------------------------------------------------------------- /Servo/src/sam/Servo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Servo/src/sam/Servo.cpp -------------------------------------------------------------------------------- /Servo/src/sam/ServoTimers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Servo/src/sam/ServoTimers.h -------------------------------------------------------------------------------- /Servo/src/samd/Servo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Servo/src/samd/Servo.cpp -------------------------------------------------------------------------------- /Servo/src/samd/ServoTimers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Servo/src/samd/ServoTimers.h -------------------------------------------------------------------------------- /Servo/src/stm32f4/Servo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Servo/src/stm32f4/Servo.cpp -------------------------------------------------------------------------------- /Servo/src/stm32f4/ServoTimers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Servo/src/stm32f4/ServoTimers.h -------------------------------------------------------------------------------- /SpacebrewYun/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SpacebrewYun/README.adoc -------------------------------------------------------------------------------- /SpacebrewYun/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SpacebrewYun/keywords.txt -------------------------------------------------------------------------------- /SpacebrewYun/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SpacebrewYun/library.properties -------------------------------------------------------------------------------- /SpacebrewYun/src/SpacebrewYun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SpacebrewYun/src/SpacebrewYun.cpp -------------------------------------------------------------------------------- /SpacebrewYun/src/SpacebrewYun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/SpacebrewYun/src/SpacebrewYun.h -------------------------------------------------------------------------------- /Stepper/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Stepper/README.adoc -------------------------------------------------------------------------------- /Stepper/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Stepper/keywords.txt -------------------------------------------------------------------------------- /Stepper/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Stepper/library.properties -------------------------------------------------------------------------------- /Stepper/src/Stepper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Stepper/src/Stepper.cpp -------------------------------------------------------------------------------- /Stepper/src/Stepper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Stepper/src/Stepper.h -------------------------------------------------------------------------------- /TFT/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/TFT/README.adoc -------------------------------------------------------------------------------- /TFT/extras/Adafruit-README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/TFT/extras/Adafruit-README.txt -------------------------------------------------------------------------------- /TFT/extras/Adafruit-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/TFT/extras/Adafruit-license.txt -------------------------------------------------------------------------------- /TFT/extras/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/TFT/extras/README.md -------------------------------------------------------------------------------- /TFT/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/TFT/keywords.txt -------------------------------------------------------------------------------- /TFT/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/TFT/library.properties -------------------------------------------------------------------------------- /TFT/src/TFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/TFT/src/TFT.cpp -------------------------------------------------------------------------------- /TFT/src/TFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/TFT/src/TFT.h -------------------------------------------------------------------------------- /TFT/src/utility/Adafruit_GFX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/TFT/src/utility/Adafruit_GFX.cpp -------------------------------------------------------------------------------- /TFT/src/utility/Adafruit_GFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/TFT/src/utility/Adafruit_GFX.h -------------------------------------------------------------------------------- /TFT/src/utility/Adafruit_ST7735.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/TFT/src/utility/Adafruit_ST7735.cpp -------------------------------------------------------------------------------- /TFT/src/utility/Adafruit_ST7735.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/TFT/src/utility/Adafruit_ST7735.h -------------------------------------------------------------------------------- /TFT/src/utility/PImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/TFT/src/utility/PImage.h -------------------------------------------------------------------------------- /TFT/src/utility/glcdfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/TFT/src/utility/glcdfont.c -------------------------------------------------------------------------------- /TFT/src/utility/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/TFT/src/utility/keywords.txt -------------------------------------------------------------------------------- /TM1637_Gyver/TM1637.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/TM1637_Gyver/TM1637.cpp -------------------------------------------------------------------------------- /TM1637_Gyver/TM1637.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/TM1637_Gyver/TM1637.h -------------------------------------------------------------------------------- /TM74HC595_Gyver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/TM74HC595_Gyver/README.md -------------------------------------------------------------------------------- /TM74HC595_Gyver/TM74HC595Display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/TM74HC595_Gyver/TM74HC595Display.h -------------------------------------------------------------------------------- /TM74HC595_Gyver/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/TM74HC595_Gyver/keywords.txt -------------------------------------------------------------------------------- /TMRpcm-master/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/TMRpcm-master/.gitattributes -------------------------------------------------------------------------------- /TMRpcm-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/TMRpcm-master/.gitignore -------------------------------------------------------------------------------- /TMRpcm-master/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/TMRpcm-master/README -------------------------------------------------------------------------------- /TMRpcm-master/RF_AddOn/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/TMRpcm-master/RF_AddOn/README.txt -------------------------------------------------------------------------------- /TMRpcm-master/TMRpcm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/TMRpcm-master/TMRpcm.cpp -------------------------------------------------------------------------------- /TMRpcm-master/TMRpcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/TMRpcm-master/TMRpcm.h -------------------------------------------------------------------------------- /TMRpcm-master/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/TMRpcm-master/keywords.txt -------------------------------------------------------------------------------- /TMRpcm-master/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/TMRpcm-master/library.json -------------------------------------------------------------------------------- /TMRpcm-master/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/TMRpcm-master/library.properties -------------------------------------------------------------------------------- /TMRpcm-master/pcmConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/TMRpcm-master/pcmConfig.h -------------------------------------------------------------------------------- /TMRpcm-master/pcmRF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/TMRpcm-master/pcmRF.cpp -------------------------------------------------------------------------------- /TMRpcm-master/pcmRF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/TMRpcm-master/pcmRF.h -------------------------------------------------------------------------------- /Temboo/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/README.adoc -------------------------------------------------------------------------------- /Temboo/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/keywords.txt -------------------------------------------------------------------------------- /Temboo/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/library.properties -------------------------------------------------------------------------------- /Temboo/src/Temboo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/Temboo.cpp -------------------------------------------------------------------------------- /Temboo/src/Temboo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/Temboo.h -------------------------------------------------------------------------------- /Temboo/src/TembooCoAPEdgeDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/TembooCoAPEdgeDevice.cpp -------------------------------------------------------------------------------- /Temboo/src/TembooCoAPEdgeDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/TembooCoAPEdgeDevice.h -------------------------------------------------------------------------------- /Temboo/src/TembooMQTTEdgeDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/TembooMQTTEdgeDevice.cpp -------------------------------------------------------------------------------- /Temboo/src/TembooMQTTEdgeDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/TembooMQTTEdgeDevice.h -------------------------------------------------------------------------------- /Temboo/src/TembooMonitoring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/TembooMonitoring.cpp -------------------------------------------------------------------------------- /Temboo/src/TembooMonitoring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/TembooMonitoring.h -------------------------------------------------------------------------------- /Temboo/src/TembooSSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/TembooSSL.cpp -------------------------------------------------------------------------------- /Temboo/src/TembooSSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/TembooSSL.h -------------------------------------------------------------------------------- /Temboo/src/TembooYunShield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/TembooYunShield.h -------------------------------------------------------------------------------- /Temboo/src/utility/ArduinoTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/utility/ArduinoTimer.h -------------------------------------------------------------------------------- /Temboo/src/utility/BaseFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/utility/BaseFormatter.h -------------------------------------------------------------------------------- /Temboo/src/utility/ChoreoDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/utility/ChoreoDevice.cpp -------------------------------------------------------------------------------- /Temboo/src/utility/ChoreoDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/utility/ChoreoDevice.h -------------------------------------------------------------------------------- /Temboo/src/utility/ChoreoInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/utility/ChoreoInput.cpp -------------------------------------------------------------------------------- /Temboo/src/utility/ChoreoInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/utility/ChoreoInput.h -------------------------------------------------------------------------------- /Temboo/src/utility/ChoreoInputSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/utility/ChoreoInputSet.h -------------------------------------------------------------------------------- /Temboo/src/utility/ChoreoOutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/utility/ChoreoOutput.cpp -------------------------------------------------------------------------------- /Temboo/src/utility/ChoreoOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/utility/ChoreoOutput.h -------------------------------------------------------------------------------- /Temboo/src/utility/ChoreoPreset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/utility/ChoreoPreset.cpp -------------------------------------------------------------------------------- /Temboo/src/utility/ChoreoPreset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/utility/ChoreoPreset.h -------------------------------------------------------------------------------- /Temboo/src/utility/CoapMsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/utility/CoapMsg.cpp -------------------------------------------------------------------------------- /Temboo/src/utility/CoapMsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/utility/CoapMsg.h -------------------------------------------------------------------------------- /Temboo/src/utility/CoapRRLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/utility/CoapRRLayer.cpp -------------------------------------------------------------------------------- /Temboo/src/utility/CoapRRLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/utility/CoapRRLayer.h -------------------------------------------------------------------------------- /Temboo/src/utility/DataFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/utility/DataFormatter.h -------------------------------------------------------------------------------- /Temboo/src/utility/FP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/utility/FP.h -------------------------------------------------------------------------------- /Temboo/src/utility/MQTTClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/utility/MQTTClient.h -------------------------------------------------------------------------------- /Temboo/src/utility/MQTTConnect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/utility/MQTTConnect.h -------------------------------------------------------------------------------- /Temboo/src/utility/MQTTFormat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/utility/MQTTFormat.c -------------------------------------------------------------------------------- /Temboo/src/utility/MQTTFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/utility/MQTTFormat.h -------------------------------------------------------------------------------- /Temboo/src/utility/MQTTLogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/utility/MQTTLogging.h -------------------------------------------------------------------------------- /Temboo/src/utility/MQTTPacket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/utility/MQTTPacket.c -------------------------------------------------------------------------------- /Temboo/src/utility/MQTTPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/utility/MQTTPacket.h -------------------------------------------------------------------------------- /Temboo/src/utility/MQTTPublish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/utility/MQTTPublish.h -------------------------------------------------------------------------------- /Temboo/src/utility/MQTTSubscribe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/utility/MQTTSubscribe.h -------------------------------------------------------------------------------- /Temboo/src/utility/StackTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/utility/StackTrace.h -------------------------------------------------------------------------------- /Temboo/src/utility/TembooDS18B20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/utility/TembooDS18B20.h -------------------------------------------------------------------------------- /Temboo/src/utility/TembooGPIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/utility/TembooGPIO.c -------------------------------------------------------------------------------- /Temboo/src/utility/TembooGPIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/utility/TembooGPIO.h -------------------------------------------------------------------------------- /Temboo/src/utility/TembooGlobal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/utility/TembooGlobal.c -------------------------------------------------------------------------------- /Temboo/src/utility/TembooGlobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/utility/TembooGlobal.h -------------------------------------------------------------------------------- /Temboo/src/utility/TembooOneWire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/utility/TembooOneWire.h -------------------------------------------------------------------------------- /Temboo/src/utility/TembooSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/utility/TembooSession.h -------------------------------------------------------------------------------- /Temboo/src/utility/TembooTags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/utility/TembooTags.h -------------------------------------------------------------------------------- /Temboo/src/utility/TembooTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/utility/TembooTimer.h -------------------------------------------------------------------------------- /Temboo/src/utility/tmbhmac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/utility/tmbhmac.cpp -------------------------------------------------------------------------------- /Temboo/src/utility/tmbhmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/utility/tmbhmac.h -------------------------------------------------------------------------------- /Temboo/src/utility/tmbmd5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/utility/tmbmd5.cpp -------------------------------------------------------------------------------- /Temboo/src/utility/tmbmd5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Temboo/src/utility/tmbmd5.h -------------------------------------------------------------------------------- /TimerOne-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/TimerOne-master/README.md -------------------------------------------------------------------------------- /TimerOne-master/TimerOne.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/TimerOne-master/TimerOne.cpp -------------------------------------------------------------------------------- /TimerOne-master/TimerOne.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/TimerOne-master/TimerOne.h -------------------------------------------------------------------------------- /TimerOne-master/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/TimerOne-master/keywords.txt -------------------------------------------------------------------------------- /TimerOne-master/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/TimerOne-master/library.json -------------------------------------------------------------------------------- /TimerOne-master/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/TimerOne-master/library.properties -------------------------------------------------------------------------------- /WiFi/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/README.adoc -------------------------------------------------------------------------------- /WiFi/extras/binary/wifiHD.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/binary/wifiHD.elf -------------------------------------------------------------------------------- /WiFi/extras/binary/wifiHD.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/binary/wifiHD.hex -------------------------------------------------------------------------------- /WiFi/extras/binary/wifiHD_2_1.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/binary/wifiHD_2_1.elf -------------------------------------------------------------------------------- /WiFi/extras/binary/wifi_dnld.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/binary/wifi_dnld.elf -------------------------------------------------------------------------------- /WiFi/extras/binary/wifi_dnld.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/binary/wifi_dnld.hex -------------------------------------------------------------------------------- /WiFi/extras/wifiHD/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifiHD/.cproject -------------------------------------------------------------------------------- /WiFi/extras/wifiHD/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifiHD/.project -------------------------------------------------------------------------------- /WiFi/extras/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/WIFI/HD/v2.7.0/revision.txt: -------------------------------------------------------------------------------- 1 | Revision: 2491 2 | -------------------------------------------------------------------------------- /WiFi/extras/wifiHD/src/ard_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifiHD/src/ard_spi.c -------------------------------------------------------------------------------- /WiFi/extras/wifiHD/src/ard_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifiHD/src/ard_spi.h -------------------------------------------------------------------------------- /WiFi/extras/wifiHD/src/ard_tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifiHD/src/ard_tcp.c -------------------------------------------------------------------------------- /WiFi/extras/wifiHD/src/ard_tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifiHD/src/ard_tcp.h -------------------------------------------------------------------------------- /WiFi/extras/wifiHD/src/ard_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifiHD/src/ard_utils.c -------------------------------------------------------------------------------- /WiFi/extras/wifiHD/src/ard_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifiHD/src/ard_utils.h -------------------------------------------------------------------------------- /WiFi/extras/wifiHD/src/avr32_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifiHD/src/avr32_spi.c -------------------------------------------------------------------------------- /WiFi/extras/wifiHD/src/board_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifiHD/src/board_init.c -------------------------------------------------------------------------------- /WiFi/extras/wifiHD/src/board_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifiHD/src/board_init.h -------------------------------------------------------------------------------- /WiFi/extras/wifiHD/src/cmd_wl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifiHD/src/cmd_wl.c -------------------------------------------------------------------------------- /WiFi/extras/wifiHD/src/cmd_wl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifiHD/src/cmd_wl.h -------------------------------------------------------------------------------- /WiFi/extras/wifiHD/src/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifiHD/src/console.c -------------------------------------------------------------------------------- /WiFi/extras/wifiHD/src/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifiHD/src/console.h -------------------------------------------------------------------------------- /WiFi/extras/wifiHD/src/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifiHD/src/debug.h -------------------------------------------------------------------------------- /WiFi/extras/wifiHD/src/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifiHD/src/license.txt -------------------------------------------------------------------------------- /WiFi/extras/wifiHD/src/lwip_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifiHD/src/lwip_setup.c -------------------------------------------------------------------------------- /WiFi/extras/wifiHD/src/lwip_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifiHD/src/lwip_setup.h -------------------------------------------------------------------------------- /WiFi/extras/wifiHD/src/lwipopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifiHD/src/lwipopts.h -------------------------------------------------------------------------------- /WiFi/extras/wifiHD/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifiHD/src/main.c -------------------------------------------------------------------------------- /WiFi/extras/wifiHD/src/nvram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifiHD/src/nvram.c -------------------------------------------------------------------------------- /WiFi/extras/wifiHD/src/nvram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifiHD/src/nvram.h -------------------------------------------------------------------------------- /WiFi/extras/wifiHD/src/owl_os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifiHD/src/owl_os.c -------------------------------------------------------------------------------- /WiFi/extras/wifiHD/src/ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifiHD/src/ping.c -------------------------------------------------------------------------------- /WiFi/extras/wifiHD/src/ping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifiHD/src/ping.h -------------------------------------------------------------------------------- /WiFi/extras/wifiHD/src/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifiHD/src/timer.c -------------------------------------------------------------------------------- /WiFi/extras/wifiHD/src/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifiHD/src/timer.h -------------------------------------------------------------------------------- /WiFi/extras/wifiHD/src/top_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifiHD/src/top_defs.h -------------------------------------------------------------------------------- /WiFi/extras/wifiHD/src/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifiHD/src/trace.h -------------------------------------------------------------------------------- /WiFi/extras/wifiHD/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifiHD/src/util.c -------------------------------------------------------------------------------- /WiFi/extras/wifiHD/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifiHD/src/util.h -------------------------------------------------------------------------------- /WiFi/extras/wifiHD/src/wifi_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifiHD/src/wifi_spi.h -------------------------------------------------------------------------------- /WiFi/extras/wifiHD/src/wl_cm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifiHD/src/wl_cm.c -------------------------------------------------------------------------------- /WiFi/extras/wifiHD/src/wl_cm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifiHD/src/wl_cm.h -------------------------------------------------------------------------------- /WiFi/extras/wifiHD/wifiHD.cproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifiHD/wifiHD.cproj -------------------------------------------------------------------------------- /WiFi/extras/wifi_dnld/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifi_dnld/.cproject -------------------------------------------------------------------------------- /WiFi/extras/wifi_dnld/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifi_dnld/.project -------------------------------------------------------------------------------- /WiFi/extras/wifi_dnld/src/clocks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifi_dnld/src/clocks.c -------------------------------------------------------------------------------- /WiFi/extras/wifi_dnld/src/clocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifi_dnld/src/clocks.h -------------------------------------------------------------------------------- /WiFi/extras/wifi_dnld/src/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifi_dnld/src/startup.c -------------------------------------------------------------------------------- /WiFi/extras/wifi_dnld/src/startup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifi_dnld/src/startup.h -------------------------------------------------------------------------------- /WiFi/extras/wifi_dnld/src/wl_fw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifi_dnld/src/wl_fw.h -------------------------------------------------------------------------------- /WiFi/extras/wifishield.atsln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/extras/wifishield.atsln -------------------------------------------------------------------------------- /WiFi/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/keywords.txt -------------------------------------------------------------------------------- /WiFi/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/library.properties -------------------------------------------------------------------------------- /WiFi/src/WiFi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/src/WiFi.cpp -------------------------------------------------------------------------------- /WiFi/src/WiFi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/src/WiFi.h -------------------------------------------------------------------------------- /WiFi/src/WiFiClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/src/WiFiClient.cpp -------------------------------------------------------------------------------- /WiFi/src/WiFiClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/src/WiFiClient.h -------------------------------------------------------------------------------- /WiFi/src/WiFiServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/src/WiFiServer.cpp -------------------------------------------------------------------------------- /WiFi/src/WiFiServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/src/WiFiServer.h -------------------------------------------------------------------------------- /WiFi/src/WiFiUdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/src/WiFiUdp.cpp -------------------------------------------------------------------------------- /WiFi/src/WiFiUdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/src/WiFiUdp.h -------------------------------------------------------------------------------- /WiFi/src/utility/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/src/utility/debug.h -------------------------------------------------------------------------------- /WiFi/src/utility/server_drv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/src/utility/server_drv.cpp -------------------------------------------------------------------------------- /WiFi/src/utility/server_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/src/utility/server_drv.h -------------------------------------------------------------------------------- /WiFi/src/utility/spi_drv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/src/utility/spi_drv.cpp -------------------------------------------------------------------------------- /WiFi/src/utility/spi_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/src/utility/spi_drv.h -------------------------------------------------------------------------------- /WiFi/src/utility/wifi_drv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/src/utility/wifi_drv.cpp -------------------------------------------------------------------------------- /WiFi/src/utility/wifi_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/src/utility/wifi_drv.h -------------------------------------------------------------------------------- /WiFi/src/utility/wifi_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/src/utility/wifi_spi.h -------------------------------------------------------------------------------- /WiFi/src/utility/wl_definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/src/utility/wl_definitions.h -------------------------------------------------------------------------------- /WiFi/src/utility/wl_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/WiFi/src/utility/wl_types.h -------------------------------------------------------------------------------- /Wtv020sd16p/Wtv020sd16p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Wtv020sd16p/Wtv020sd16p.cpp -------------------------------------------------------------------------------- /Wtv020sd16p/Wtv020sd16p.cpp~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Wtv020sd16p/Wtv020sd16p.cpp~ -------------------------------------------------------------------------------- /Wtv020sd16p/Wtv020sd16p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Wtv020sd16p/Wtv020sd16p.h -------------------------------------------------------------------------------- /Wtv020sd16p/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/Wtv020sd16p/keywords.txt -------------------------------------------------------------------------------- /arduino-tvout-master/.gitignore: -------------------------------------------------------------------------------- 1 | .pioenvs 2 | .clang_complete 3 | .gcc-flags.json 4 | -------------------------------------------------------------------------------- /arduino-tvout-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/arduino-tvout-master/README.md -------------------------------------------------------------------------------- /arduino-tvout-master/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/arduino-tvout-master/keywords.txt -------------------------------------------------------------------------------- /arduino-tvout-master/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/arduino-tvout-master/platformio.ini -------------------------------------------------------------------------------- /arduino-tvout-master/src/TVout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/arduino-tvout-master/src/TVout.cpp -------------------------------------------------------------------------------- /arduino-tvout-master/src/TVout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/arduino-tvout-master/src/TVout.h -------------------------------------------------------------------------------- /arduinoFFT-master/.gitignore: -------------------------------------------------------------------------------- 1 | /.project 2 | /sync.ffs_db 3 | -------------------------------------------------------------------------------- /arduinoFFT-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/arduinoFFT-master/LICENSE -------------------------------------------------------------------------------- /arduinoFFT-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/arduinoFFT-master/README.md -------------------------------------------------------------------------------- /arduinoFFT-master/changeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/arduinoFFT-master/changeLog.txt -------------------------------------------------------------------------------- /arduinoFFT-master/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/arduinoFFT-master/keywords.txt -------------------------------------------------------------------------------- /arduinoFFT-master/src/arduinoFFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/arduinoFFT-master/src/arduinoFFT.h -------------------------------------------------------------------------------- /arduinoFFT-master/src/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/arduinoFFT-master/src/defs.h -------------------------------------------------------------------------------- /arduinoFFT-master/src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/arduinoFFT-master/src/types.h -------------------------------------------------------------------------------- /i2chw/i2cmaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/i2chw/i2cmaster.h -------------------------------------------------------------------------------- /i2chw/twimastertimeout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/i2chw/twimastertimeout.c -------------------------------------------------------------------------------- /iarduino_Pressure_BMP/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/iarduino_Pressure_BMP/keywords.txt -------------------------------------------------------------------------------- /light_WS2812/WS2812.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/light_WS2812/WS2812.cpp -------------------------------------------------------------------------------- /light_WS2812/WS2812.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/light_WS2812/WS2812.h -------------------------------------------------------------------------------- /light_WS2812/cRGB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/light_WS2812/cRGB.h -------------------------------------------------------------------------------- /light_WS2812/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/light_WS2812/library.json -------------------------------------------------------------------------------- /light_WS2812/light_ws2812.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/light_WS2812/light_ws2812.cpp -------------------------------------------------------------------------------- /toneAC/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/toneAC/keywords.txt -------------------------------------------------------------------------------- /toneAC/toneAC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/toneAC/toneAC.cpp -------------------------------------------------------------------------------- /toneAC/toneAC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/myLibraries/HEAD/toneAC/toneAC.h --------------------------------------------------------------------------------