├── Blink └── Blink.ino ├── FastLED_po ├── 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 ├── component.mk ├── 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 │ ├── 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 │ │ ├── d51 │ │ │ ├── clockless_arm_d51.h │ │ │ ├── fastled_arm_d51.h │ │ │ ├── fastpin_arm_d51.h │ │ │ └── led_sysdefs_arm_d51.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 │ │ │ ├── cm3_regs.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 │ │ ├── clockless_esp32.h.orig │ │ ├── fastled_esp32.h │ │ ├── fastpin_esp32.h │ │ ├── i2s_clockless_block_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 ├── Gerberfiles ├── Gerber_20 pins pass through_20190805150651.zip ├── Gerber_20PINS SMD PAST no ls_20190805152557.zip ├── Gerber_20PINS SMD PAST_20190805150637.zip ├── Gerber_40PINS 3LS_20190805150718.zip ├── Gerber_PCB 40PIN 2LS_20190805150732.zip └── Gerber_PCB 40PIN NOLS_20190805150704.zip ├── ParallelOutputDemo ├── ParallelOutputDemo.ino ├── data │ ├── base.png │ ├── demo1.html │ ├── demo2.html │ ├── farbtastic.css │ ├── farbtastic.js │ ├── images.css │ ├── index.html │ ├── jquery.js │ ├── lamp.html │ ├── left-turn.gif │ ├── left.gif │ ├── main.js │ ├── marker.png │ ├── mask.png │ ├── meteo.html │ ├── paint.html │ ├── right.gif │ ├── right_turn.gif │ ├── screen.css │ ├── snake.html │ ├── test_b_check.jpg │ ├── tetris.html │ ├── tetris2.html │ └── wheel.png └── vortex.h ├── libraries ├── Adafruit_IO_Arduino │ ├── Jenkinsfile │ ├── LICENSE │ ├── README.md │ ├── docs │ │ ├── _static │ │ │ └── favicon.png │ │ ├── api.rst │ │ ├── compatibility.rst │ │ ├── conf.py │ │ ├── dependencies.rst │ │ ├── examples.rst │ │ ├── index.rst │ │ └── usage.rst │ ├── examples │ │ ├── adafruitio_00_publish │ │ │ ├── adafruitio_00_publish.ino │ │ │ └── config.h │ │ ├── adafruitio_01_subscribe │ │ │ ├── adafruitio_01_subscribe.ino │ │ │ └── config.h │ │ ├── adafruitio_02_pubsub │ │ │ ├── adafruitio_02_pubsub.ino │ │ │ └── config.h │ │ ├── adafruitio_03_multiple_feeds │ │ │ ├── adafruitio_03_multiple_feeds.ino │ │ │ └── config.h │ │ ├── adafruitio_04_location │ │ │ ├── adafruitio_04_location.ino │ │ │ └── config.h │ │ ├── adafruitio_05_type_conversion │ │ │ ├── adafruitio_05_type_conversion.ino │ │ │ └── config.h │ │ ├── adafruitio_06_digital_in │ │ │ ├── adafruitio_06_digital_in.ino │ │ │ └── config.h │ │ ├── adafruitio_07_digital_out │ │ │ ├── adafruitio_07_digital_out.ino │ │ │ └── config.h │ │ ├── adafruitio_08_analog_in │ │ │ ├── adafruitio_08_analog_in.ino │ │ │ └── config.h │ │ ├── adafruitio_09_analog_out │ │ │ ├── adafruitio_09_analog_out.ino │ │ │ └── config.h │ │ ├── adafruitio_10_dashboard_creation │ │ │ ├── adafruitio_10_dashboard_creation.ino │ │ │ └── config.h │ │ ├── adafruitio_11_group_pub │ │ │ ├── adafruitio_11_group_pub.ino │ │ │ └── config.h │ │ ├── adafruitio_12_group_sub │ │ │ ├── adafruitio_12_group_sub.ino │ │ │ └── config.h │ │ ├── adafruitio_13_rgb │ │ │ ├── adafruitio_13_rgb.ino │ │ │ └── config.h │ │ ├── adafruitio_14_neopixel │ │ │ ├── adafruitio_14_neopixel.ino │ │ │ └── config.h │ │ ├── adafruitio_15_temp_humidity │ │ │ ├── adafruitio_15_temp_humidity.ino │ │ │ └── config.h │ │ ├── adafruitio_16_servo │ │ │ ├── adafruitio_16_servo.ino │ │ │ └── config.h │ │ ├── adafruitio_17_time_subscribe │ │ │ ├── adafruitio_17_time_subscribe.ino │ │ │ └── config.h │ │ ├── adafruitio_18_device_info │ │ │ ├── adafruitio_18_device_info.ino │ │ │ └── config.h │ │ ├── adafruitio_19_deepsleep │ │ │ ├── adafruitio_19_deepsleep.ino │ │ │ └── config.h │ │ ├── adafruitio_20_shared_feed_write │ │ │ ├── adafruitio_20_shared_feed_write.ino │ │ │ └── config.h │ │ ├── adafruitio_21_feed_read │ │ │ ├── adafruitio_21_feed_read.ino │ │ │ └── config.h │ │ ├── adafruitio_22_environmental_monitor │ │ │ ├── adafruitio_22_environmental_monitor.ino │ │ │ └── config.h │ │ ├── adafruitio_23_ifttt │ │ │ ├── adafruitio_23_ifttt.ino │ │ │ └── config.h │ │ ├── adafruitio_24_zapier │ │ │ ├── adafruitio_24_zapier.ino │ │ │ └── config.h │ │ └── io_home_series │ │ │ ├── io_garage │ │ │ ├── config.h │ │ │ └── io_garage.ino │ │ │ ├── io_home_security │ │ │ ├── config.h │ │ │ └── io_home_security.ino │ │ │ └── neopixel_and_thermometer │ │ │ ├── config.h │ │ │ └── neopixel_and_thermometer.ino │ ├── library.properties │ └── src │ │ ├── AdafruitIO.cpp │ │ ├── AdafruitIO.h │ │ ├── AdafruitIO_Dashboard.cpp │ │ ├── AdafruitIO_Dashboard.h │ │ ├── AdafruitIO_Data.cpp │ │ ├── AdafruitIO_Data.h │ │ ├── AdafruitIO_Definitions.h │ │ ├── AdafruitIO_Ethernet.h │ │ ├── AdafruitIO_FONA.h │ │ ├── AdafruitIO_Feed.cpp │ │ ├── AdafruitIO_Feed.h │ │ ├── AdafruitIO_Group.cpp │ │ ├── AdafruitIO_Group.h │ │ ├── AdafruitIO_MQTT.h │ │ ├── AdafruitIO_Time.cpp │ │ ├── AdafruitIO_Time.h │ │ ├── AdafruitIO_WiFi.h │ │ ├── blocks │ │ ├── AdafruitIO_Block.cpp │ │ ├── AdafruitIO_Block.h │ │ ├── ChartBlock.cpp │ │ ├── ChartBlock.h │ │ ├── ColorBlock.h │ │ ├── GaugeBlock.cpp │ │ ├── GaugeBlock.h │ │ ├── ImageBlock.h │ │ ├── MapBlock.cpp │ │ ├── MapBlock.h │ │ ├── MomentaryBlock.cpp │ │ ├── MomentaryBlock.h │ │ ├── SliderBlock.cpp │ │ ├── SliderBlock.h │ │ ├── StreamBlock.cpp │ │ ├── StreamBlock.h │ │ ├── TextBlock.cpp │ │ ├── TextBlock.h │ │ ├── ToggleBlock.cpp │ │ └── ToggleBlock.h │ │ ├── util │ │ ├── AdafruitIO_Board.cpp │ │ └── AdafruitIO_Board.h │ │ └── wifi │ │ ├── AdafruitIO_AIRLIFT.h │ │ ├── AdafruitIO_ESP32.cpp │ │ ├── AdafruitIO_ESP32.h │ │ ├── AdafruitIO_ESP8266.cpp │ │ ├── AdafruitIO_ESP8266.h │ │ ├── AdafruitIO_MKR1000.cpp │ │ ├── AdafruitIO_MKR1000.h │ │ ├── AdafruitIO_WICED.cpp │ │ ├── AdafruitIO_WICED.h │ │ ├── AdafruitIO_WICED_SSL.h │ │ └── AdafruitIO_WINC1500.h ├── ArduinoHttpClient │ ├── CHANGELOG.md │ ├── README.md │ ├── examples │ │ ├── BasicAuthGet │ │ │ ├── BasicAuthGet.ino │ │ │ └── arduino_secrets.h │ │ ├── CustomHeader │ │ │ ├── CustomHeader.ino │ │ │ └── arduino_secrets.h │ │ ├── DweetGet │ │ │ ├── DweetGet.ino │ │ │ └── arduino_secrets.h │ │ ├── DweetPost │ │ │ ├── DweetPost.ino │ │ │ └── arduino_secrets.h │ │ ├── HueBlink │ │ │ ├── HueBlink.ino │ │ │ └── arduino_secrets.h │ │ ├── PostWithHeaders │ │ │ ├── PostWithHeaders.ino │ │ │ └── arduino_secrets.h │ │ ├── SimpleDelete │ │ │ ├── SimpleDelete.ino │ │ │ └── arduino_secrets.h │ │ ├── SimpleGet │ │ │ ├── SimpleGet.ino │ │ │ └── arduino_secrets.h │ │ ├── SimpleHttpExample │ │ │ ├── SimpleHttpExample.ino │ │ │ └── arduino_secrets.h │ │ ├── SimplePost │ │ │ ├── SimplePost.ino │ │ │ └── arduino_secrets.h │ │ ├── SimplePut │ │ │ ├── SimplePut.ino │ │ │ └── arduino_secrets.h │ │ ├── SimpleWebSocket │ │ │ ├── SimpleWebSocket.ino │ │ │ └── arduino_secrets.h │ │ └── node_test_server │ │ │ ├── getPostPutDelete.js │ │ │ └── package.json │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── src │ │ ├── ArduinoHttpClient.h │ │ ├── HttpClient.cpp │ │ ├── HttpClient.h │ │ ├── URLEncoder.cpp │ │ ├── URLEncoder.h │ │ ├── WebSocketClient.cpp │ │ ├── WebSocketClient.h │ │ ├── b64.cpp │ │ └── b64.h ├── ArduinoTrace │ ├── ArduinoTrace.h │ ├── CHANGELOG.md │ ├── CMakeLists.txt │ ├── LICENSE.md │ ├── README.md │ ├── banner.png │ ├── examples │ │ ├── BasicTracing │ │ │ └── BasicTracing.ino │ │ └── TraceFromGlobalScope │ │ │ └── TraceFromGlobalScope.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── test │ │ ├── Arduino.h │ │ ├── CMakeLists.txt │ │ ├── myassert.h │ │ ├── test_alternative_serial.cpp │ │ ├── test_defaults.cpp │ │ ├── test_disabled.cpp │ │ └── test_full_path.cpp │ └── video-thumbnail.png ├── Aspen_SIM800 │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── Access_HTTP │ │ │ └── Access_HTTP.ino │ │ ├── Bidirectional_Serial │ │ │ └── Bidirectional_Serial.ino │ │ ├── Send_SMS │ │ │ └── Send_SMS.ino │ │ └── Tests │ │ │ ├── CALLS │ │ │ └── CALLS.ino │ │ │ ├── FTP │ │ │ └── FTP.ino │ │ │ ├── GENERAL │ │ │ └── GENERAL.ino │ │ │ ├── GPRS │ │ │ └── GPRS.ino │ │ │ ├── HTTP │ │ │ └── HTTP.ino │ │ │ ├── MAIL │ │ │ └── MAIL.ino │ │ │ ├── MMS │ │ │ └── MMS.ino │ │ │ ├── SIMCOM │ │ │ └── SIMCOM.ino │ │ │ ├── SMS │ │ │ └── SMS.ino │ │ │ ├── STK │ │ │ └── STK.ino │ │ │ └── TCPIP │ │ │ └── TCPIP.ino │ ├── extras │ │ └── Aspen SIM800 API Documentation.pdf │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── SIM800.cpp │ │ ├── SIM800.h │ │ ├── atcmds │ │ ├── calls.cpp │ │ ├── calls.h │ │ ├── email.cpp │ │ ├── email.h │ │ ├── ftp.cpp │ │ ├── ftp.h │ │ ├── general.cpp │ │ ├── general.h │ │ ├── gprs.cpp │ │ ├── gprs.h │ │ ├── http.cpp │ │ ├── http.h │ │ ├── ip.cpp │ │ ├── ip.h │ │ ├── mms.cpp │ │ ├── mms.h │ │ ├── simcom.cpp │ │ ├── simcom.h │ │ ├── sms.cpp │ │ ├── sms.h │ │ ├── stk.cpp │ │ └── stk.h │ │ └── core │ │ ├── debug.cpp │ │ ├── debug.h │ │ ├── simserial.cpp │ │ ├── simserial.h │ │ ├── strfn.cpp │ │ └── strfn.h ├── FastLED │ ├── 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 │ ├── component.mk │ ├── 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 │ │ ├── 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.cpp │ ├── 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 │ │ │ ├── d51 │ │ │ │ ├── README.txt │ │ │ │ ├── clockless_arm_d51.h │ │ │ │ ├── fastled_arm_d51.h │ │ │ │ ├── fastpin_arm_d51.h │ │ │ │ └── led_sysdefs_arm_d51.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 │ │ │ ├── nrf52 │ │ │ │ ├── arbiter_nrf52.h │ │ │ │ ├── clockless_arm_nrf52.h │ │ │ │ ├── fastled_arm_nrf52.h │ │ │ │ ├── fastpin_arm_nrf52.h │ │ │ │ ├── fastpin_arm_nrf52_variants.h │ │ │ │ ├── fastspi_arm_nrf52.h │ │ │ │ └── led_sysdefs_arm_nrf52.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 │ │ │ │ ├── cm3_regs.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.orig │ │ │ ├── clockless_i2s_esp32.h │ │ │ ├── clockless_i2s_virtual_esp32.h │ │ │ ├── clockless_rmt_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 ├── Heltec_ESP32_Dev-Boards │ ├── README.md │ ├── examples │ │ ├── ESP32 │ │ │ ├── ADC_Read_Voltage │ │ │ │ ├── ADC_Read_Accurate │ │ │ │ │ └── ADC_Read_Accurate.ino │ │ │ │ ├── ADC_Read_Simple │ │ │ │ │ └── ADC_Read_Simple.ino │ │ │ │ ├── Battery_power │ │ │ │ │ └── Battery_power.ino │ │ │ │ └── README.md │ │ │ ├── ESP32_Dual_Core │ │ │ │ ├── README.md │ │ │ │ ├── examples │ │ │ │ │ ├── Movecore │ │ │ │ │ │ └── Movecore.ino │ │ │ │ │ ├── Showcore │ │ │ │ │ │ └── Showcore.ino │ │ │ │ │ └── SpeedTest │ │ │ │ │ │ └── SpeedTest.ino │ │ │ │ └── resources │ │ │ │ │ ├── MoveCore.png │ │ │ │ │ ├── Result.png │ │ │ │ │ ├── SpeedTest.png │ │ │ │ │ ├── Task_Synchronization.png │ │ │ │ │ └── print_core.png │ │ │ ├── Serial2 │ │ │ │ └── Serial2.ino │ │ │ ├── ULP │ │ │ │ └── HoldPinStatus │ │ │ │ │ └── HoldPinStatus.ino │ │ │ └── VextControl │ │ │ │ └── VextControl.ino │ │ ├── Factory_Test │ │ │ ├── WIFI_Kit_32_FactoryTest │ │ │ │ ├── WIFI_Kit_32_FactoryTest.ino │ │ │ │ └── images.h │ │ │ ├── WiFi_LoRa_32FactoryTest │ │ │ │ ├── WiFi_LoRa_32FactoryTest.ino │ │ │ │ └── images.h │ │ │ ├── Wireless_Stick_FactoryTest │ │ │ │ └── Wireless_Stick_FactoryTest.ino │ │ │ └── Wireless_Stick_Lite_FactoryTest │ │ │ │ └── Wireless_Stick_Lite_FactoryTest.ino │ │ ├── LoRa │ │ │ ├── LoRaDumpRegisters │ │ │ │ └── LoRaDumpRegisters.ino │ │ │ ├── LoRaMultipleCommunication │ │ │ │ └── LoRaMultipleCommunication.ino │ │ │ ├── LoRaMultipleCommunicationInterrupt │ │ │ │ └── LoRaMultipleCommunicationInterrupt.ino │ │ │ ├── LoRaReceiver │ │ │ │ └── LoRaReceiver.ino │ │ │ ├── LoRaReceiverInterrupt │ │ │ │ └── LoRaReceiverInterrupt.ino │ │ │ ├── LoRaSender │ │ │ │ └── LoRaSender.ino │ │ │ ├── LoRaSetSpread │ │ │ │ └── LoRaSetSpread.ino │ │ │ ├── LoRaSetSyncWord │ │ │ │ └── LoRaSetSyncWord.ino │ │ │ ├── OLED_LoRa_Receiver │ │ │ │ ├── OLED_LoRa_Receiver.ino │ │ │ │ └── images.h │ │ │ └── OLED_LoRa_Sender │ │ │ │ ├── OLED_LoRa_Sender.ino │ │ │ │ └── images.h │ │ ├── Low_Power │ │ │ └── Low_Power.ino │ │ └── OLED │ │ │ ├── OTA_OLED │ │ │ └── OTA_OLED.ino │ │ │ ├── SSD1306DrawingDemo │ │ │ └── SSD1306DrawingDemo.ino │ │ │ ├── SSD1306SimpleDemo │ │ │ ├── SSD1306SimpleDemo.ino │ │ │ └── images.h │ │ │ └── SSD1306UiDemo │ │ │ ├── SSD1306UiDemo.ino │ │ │ └── images.h │ ├── img │ │ ├── location.png │ │ └── location_cn.png │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── license │ └── src │ │ ├── heltec.cpp │ │ ├── heltec.h │ │ ├── lora │ │ ├── API.md │ │ ├── LoRa.cpp │ │ └── LoRa.h │ │ └── oled │ │ ├── OLEDDisplay.cpp │ │ ├── OLEDDisplay.h │ │ ├── OLEDDisplayFonts.h │ │ ├── OLEDDisplayUi.cpp │ │ ├── OLEDDisplayUi.h │ │ ├── SSD1306.h │ │ └── SSD1306Wire.h ├── LoRa_Node │ ├── README.adoc │ ├── examples │ │ ├── TinkerkitExample │ │ │ └── TinkerkitExample.ino │ │ ├── loraABP │ │ │ └── loraABP.ino │ │ ├── loraOtaa │ │ │ └── loraOtaa.ino │ │ └── sendWithButton │ │ │ └── sendWithButton.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── LoRaNode.cpp │ │ ├── LoRaNode.h │ │ ├── boards │ │ ├── arduino │ │ │ ├── adc-board.c │ │ │ ├── adc-board.h │ │ │ ├── board.cpp │ │ │ ├── board.h │ │ │ ├── eeprom-board.c │ │ │ ├── eeprom-board.h │ │ │ ├── gpio-board.c │ │ │ ├── gpio-board.h │ │ │ ├── i2c-board.cpp │ │ │ ├── i2c-board.h │ │ │ ├── pinName-board.h │ │ │ ├── rtc-board.h │ │ │ ├── spi-board.cpp │ │ │ ├── spi-board.h │ │ │ ├── sx1276-board.c │ │ │ └── sx1276-board.h │ │ └── mcu │ │ │ └── arduino │ │ │ ├── arduino_hal.c │ │ │ ├── nrf52 │ │ │ └── rtc-board.c │ │ │ ├── utilities.c │ │ │ └── utilities.h │ │ ├── config.h │ │ ├── mac │ │ ├── LoRaMac.c │ │ ├── LoRaMac.h │ │ ├── LoRaMacCrypto.c │ │ ├── LoRaMacCrypto.h │ │ ├── LoRaMacTest.h │ │ └── region │ │ │ ├── Region.c │ │ │ ├── Region.h │ │ │ ├── RegionAS923.c │ │ │ ├── RegionAS923.h │ │ │ ├── RegionAU915.c │ │ │ ├── RegionAU915.h │ │ │ ├── RegionCN470.c │ │ │ ├── RegionCN470.h │ │ │ ├── RegionCN779.c │ │ │ ├── RegionCN779.h │ │ │ ├── RegionCommon.c │ │ │ ├── RegionCommon.h │ │ │ ├── RegionEU433.c │ │ │ ├── RegionEU433.h │ │ │ ├── RegionEU868.c │ │ │ ├── RegionEU868.h │ │ │ ├── RegionIN865.c │ │ │ ├── RegionIN865.h │ │ │ ├── RegionKR920.c │ │ │ ├── RegionKR920.h │ │ │ ├── RegionUS915-Hybrid.c │ │ │ ├── RegionUS915-Hybrid.h │ │ │ ├── RegionUS915.c │ │ │ └── RegionUS915.h │ │ ├── radio │ │ ├── radio.h │ │ └── sx1276 │ │ │ ├── sx1276.c │ │ │ ├── sx1276.h │ │ │ ├── sx1276Regs-Fsk.h │ │ │ └── sx1276Regs-LoRa.h │ │ └── system │ │ ├── adc.c │ │ ├── adc.h │ │ ├── crypto │ │ ├── aes.c │ │ ├── aes.h │ │ ├── cmac.c │ │ └── cmac.h │ │ ├── delay.c │ │ ├── delay.h │ │ ├── eeprom.c │ │ ├── eeprom.h │ │ ├── fifo.c │ │ ├── fifo.h │ │ ├── gpio.c │ │ ├── gpio.h │ │ ├── gps.c │ │ ├── gps.h │ │ ├── i2c.c │ │ ├── i2c.h │ │ ├── serial.h │ │ ├── spi.h │ │ ├── timer.c │ │ ├── timer.h │ │ ├── uart.c │ │ └── uart.h ├── Sim800L_Library_Revised │ ├── LICENSE │ ├── README.md │ ├── Sim800L.cpp │ ├── Sim800L.h │ ├── examples │ │ ├── GSM_Coordinates │ │ │ └── GSM_Coordinates.ino │ │ ├── functionalityMode │ │ │ └── functionalityMode.ino │ │ ├── getInformations │ │ │ └── getInformations.ino │ │ ├── getTimeRTC │ │ │ └── getTimeRTC.ino │ │ ├── readSms │ │ │ └── readSms.ino │ │ ├── readSmsAndFilterNumber │ │ │ └── readSmsAndFilterNumber.ino │ │ ├── sendSms │ │ │ └── sendSms.ino │ │ ├── setPin │ │ │ └── setPin.ino │ │ ├── sleepMode │ │ │ └── sleepMode.ino │ │ └── updateRtcWithGSM │ │ │ └── updateRtcWithGSM.ino │ ├── images │ │ ├── RESET.png │ │ └── power_supply.png │ ├── keywords.txt │ └── library.properties ├── WebSockets │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── Nginx │ │ │ └── esp8266.ssl.reverse.proxy.conf │ │ ├── avr │ │ │ └── WebSocketClientAVR │ │ │ │ └── WebSocketClientAVR.ino │ │ ├── esp32 │ │ │ ├── WebSocketClient │ │ │ │ └── WebSocketClient.ino │ │ │ ├── WebSocketClientSSL │ │ │ │ └── WebSocketClientSSL.ino │ │ │ └── WebSocketServer │ │ │ │ └── WebSocketServer.ino │ │ ├── esp8266 │ │ │ ├── WebSocketClient │ │ │ │ └── WebSocketClient.ino │ │ │ ├── WebSocketClientSSL │ │ │ │ └── WebSocketClientSSL.ino │ │ │ ├── WebSocketClientSocketIO │ │ │ │ └── WebSocketClientSocketIO.ino │ │ │ ├── WebSocketClientStomp │ │ │ │ └── WebSocketClientStomp.ino │ │ │ ├── WebSocketClientStompOverSockJs │ │ │ │ └── WebSocketClientStompOverSockJs.ino │ │ │ ├── WebSocketServer │ │ │ │ └── WebSocketServer.ino │ │ │ ├── WebSocketServerAllFunctionsDemo │ │ │ │ └── WebSocketServerAllFunctionsDemo.ino │ │ │ ├── WebSocketServerFragmentation │ │ │ │ └── WebSocketServerFragmentation.ino │ │ │ ├── WebSocketServerHttpHeaderValidation │ │ │ │ └── WebSocketServerHttpHeaderValidation.ino │ │ │ └── WebSocketServer_LEDcontrol │ │ │ │ └── WebSocketServer_LEDcontrol.ino │ │ └── particle │ │ │ └── ParticleWebSocketClient │ │ │ └── application.cpp │ ├── library.json │ ├── library.properties │ ├── src │ │ ├── SocketIOclient.cpp │ │ ├── SocketIOclient.h │ │ ├── WebSockets.cpp │ │ ├── WebSockets.h │ │ ├── WebSocketsClient.cpp │ │ ├── WebSocketsClient.h │ │ ├── WebSocketsServer.cpp │ │ ├── WebSocketsServer.h │ │ ├── libb64 │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── cdecode.c │ │ │ ├── cdecode_inc.h │ │ │ ├── cencode.c │ │ │ └── cencode_inc.h │ │ └── libsha1 │ │ │ ├── libsha1.c │ │ │ └── libsha1.h │ ├── tests │ │ ├── webSocket.html │ │ └── webSocketServer │ │ │ ├── index.js │ │ │ └── package.json │ └── travis │ │ └── common.sh ├── artnet-master │ ├── .gitignore │ ├── Artnet.cpp │ ├── Artnet.h │ ├── Artnet.sublime-project │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── ArduinoZero │ │ │ └── ArtnetArduinoZeroNeopixel │ │ │ │ └── ArtnetArduinoZeroNeopixel.ino │ │ ├── Basic │ │ │ ├── ArtnetReceive │ │ │ │ └── ArtnetReceive.ino │ │ │ └── ArtnetReceiveCallback │ │ │ │ └── ArtnetReceiveCallback.ino │ │ ├── ESP │ │ │ ├── ArtnetNeoPixelESPSync │ │ │ │ └── ArtnetNeoPixelESPSync.ino │ │ │ └── ArtnetReceiveESP │ │ │ │ └── ArtnetReceiveESP.ino │ │ ├── NeoPixel │ │ │ ├── ArtnetNeoPixel │ │ │ │ └── ArtnetNeoPixel.ino │ │ │ ├── ArtnetNeoPixelRGBW │ │ │ │ └── ArtnetNeoPixelRGBW.ino │ │ │ ├── ArtnetNeoPixelSD │ │ │ │ └── ArtnetNeoPixelSD.ino │ │ │ └── ArtnetNeoPixelSync │ │ │ │ └── ArtnetNeoPixelSync.ino │ │ ├── OctoWS2811 │ │ │ ├── ArtnetOctoWS2811 │ │ │ │ └── ArtnetOctoWS2811.ino │ │ │ └── ArtnetOctoWS2811Sync │ │ │ │ └── ArtnetOctoWS2811Sync.ino │ │ └── exampleArtnet │ │ │ └── exampleArtnet.ino │ └── keywords.txt ├── newdriveri2s-master │ ├── DMABuffer.h │ ├── I2S - Copy.cpp.5 │ ├── I2S - Copy.h.5 │ ├── I2S - Copy.old │ ├── I2S.cpp │ ├── I2S.h │ ├── Log.h │ ├── README.md │ ├── examples │ │ └── testI2S │ │ │ └── testI2S.ino │ └── fontamstrad.h └── readme.txt ├── sketch_apr17a └── sketch_apr17a.ino ├── sketch_apr30a └── sketch_apr30a.ino ├── sketch_aug09a └── sketch_aug09a.ino ├── sketch_jul28a └── sketch_jul28a.ino ├── sketch_may01a └── sketch_may01a.ino ├── testI2S └── testI2S.ino └── tools └── EspExceptionDecoder └── tool └── EspExceptionDecoder.jar /Blink/Blink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/Blink/Blink.ino -------------------------------------------------------------------------------- /FastLED_po/FastLED.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/FastLED.cpp -------------------------------------------------------------------------------- /FastLED_po/FastLED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/FastLED.h -------------------------------------------------------------------------------- /FastLED_po/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/LICENSE -------------------------------------------------------------------------------- /FastLED_po/PORTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/PORTING.md -------------------------------------------------------------------------------- /FastLED_po/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/README.md -------------------------------------------------------------------------------- /FastLED_po/bitswap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/bitswap.cpp -------------------------------------------------------------------------------- /FastLED_po/bitswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/bitswap.h -------------------------------------------------------------------------------- /FastLED_po/chipsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/chipsets.h -------------------------------------------------------------------------------- /FastLED_po/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/color.h -------------------------------------------------------------------------------- /FastLED_po/colorpalettes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/colorpalettes.cpp -------------------------------------------------------------------------------- /FastLED_po/colorpalettes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/colorpalettes.h -------------------------------------------------------------------------------- /FastLED_po/colorutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/colorutils.cpp -------------------------------------------------------------------------------- /FastLED_po/colorutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/colorutils.h -------------------------------------------------------------------------------- /FastLED_po/component.mk: -------------------------------------------------------------------------------- 1 | COMPONENT_ADD_INCLUDEDIRS := . 2 | -------------------------------------------------------------------------------- /FastLED_po/controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/controller.h -------------------------------------------------------------------------------- /FastLED_po/cpp_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/cpp_compat.h -------------------------------------------------------------------------------- /FastLED_po/dmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/dmx.h -------------------------------------------------------------------------------- /FastLED_po/docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/docs/Doxyfile -------------------------------------------------------------------------------- /FastLED_po/docs/mainpage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/docs/mainpage.dox -------------------------------------------------------------------------------- /FastLED_po/examples/AnalogOutput/AnalogOutput.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/examples/AnalogOutput/AnalogOutput.ino -------------------------------------------------------------------------------- /FastLED_po/examples/Blink/Blink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/examples/Blink/Blink.ino -------------------------------------------------------------------------------- /FastLED_po/examples/ColorPalette/ColorPalette.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/examples/ColorPalette/ColorPalette.ino -------------------------------------------------------------------------------- /FastLED_po/examples/ColorTemperature/ColorTemperature.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/examples/ColorTemperature/ColorTemperature.ino -------------------------------------------------------------------------------- /FastLED_po/examples/Cylon/Cylon.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/examples/Cylon/Cylon.ino -------------------------------------------------------------------------------- /FastLED_po/examples/DemoReel100/DemoReel100.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/examples/DemoReel100/DemoReel100.ino -------------------------------------------------------------------------------- /FastLED_po/examples/Fire2012/Fire2012.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/examples/Fire2012/Fire2012.ino -------------------------------------------------------------------------------- /FastLED_po/examples/Fire2012WithPalette/Fire2012WithPalette.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/examples/Fire2012WithPalette/Fire2012WithPalette.ino -------------------------------------------------------------------------------- /FastLED_po/examples/FirstLight/FirstLight.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/examples/FirstLight/FirstLight.ino -------------------------------------------------------------------------------- /FastLED_po/examples/Multiple/ArrayOfLedArrays/ArrayOfLedArrays.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/examples/Multiple/ArrayOfLedArrays/ArrayOfLedArrays.ino -------------------------------------------------------------------------------- /FastLED_po/examples/Multiple/MirroringSample/MirroringSample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/examples/Multiple/MirroringSample/MirroringSample.ino -------------------------------------------------------------------------------- /FastLED_po/examples/Multiple/MultiArrays/MultiArrays.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/examples/Multiple/MultiArrays/MultiArrays.ino -------------------------------------------------------------------------------- /FastLED_po/examples/Multiple/MultipleStripsInOneArray/MultipleStripsInOneArray.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/examples/Multiple/MultipleStripsInOneArray/MultipleStripsInOneArray.ino -------------------------------------------------------------------------------- /FastLED_po/examples/Multiple/OctoWS2811Demo/OctoWS2811Demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/examples/Multiple/OctoWS2811Demo/OctoWS2811Demo.ino -------------------------------------------------------------------------------- /FastLED_po/examples/Multiple/ParallelOutputDemo/ParallelOutputDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/examples/Multiple/ParallelOutputDemo/ParallelOutputDemo.ino -------------------------------------------------------------------------------- /FastLED_po/examples/Noise/Noise.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/examples/Noise/Noise.ino -------------------------------------------------------------------------------- /FastLED_po/examples/NoisePlayground/NoisePlayground.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/examples/NoisePlayground/NoisePlayground.ino -------------------------------------------------------------------------------- /FastLED_po/examples/NoisePlusPalette/NoisePlusPalette.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/examples/NoisePlusPalette/NoisePlusPalette.ino -------------------------------------------------------------------------------- /FastLED_po/examples/Pintest/Pintest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/examples/Pintest/Pintest.ino -------------------------------------------------------------------------------- /FastLED_po/examples/Ports/PJRCSpectrumAnalyzer/PJRCSpectrumAnalyzer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/examples/Ports/PJRCSpectrumAnalyzer/PJRCSpectrumAnalyzer.ino -------------------------------------------------------------------------------- /FastLED_po/examples/RGBCalibrate/RGBCalibrate.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/examples/RGBCalibrate/RGBCalibrate.ino -------------------------------------------------------------------------------- /FastLED_po/examples/RGBSetDemo/RGBSetDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/examples/RGBSetDemo/RGBSetDemo.ino -------------------------------------------------------------------------------- /FastLED_po/examples/SmartMatrix/SmartMatrix.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/examples/SmartMatrix/SmartMatrix.ino -------------------------------------------------------------------------------- /FastLED_po/examples/XYMatrix/XYMatrix.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/examples/XYMatrix/XYMatrix.ino -------------------------------------------------------------------------------- /FastLED_po/extras/AppleII.s65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/extras/AppleII.s65 -------------------------------------------------------------------------------- /FastLED_po/extras/FastLED6502.s65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/extras/FastLED6502.s65 -------------------------------------------------------------------------------- /FastLED_po/extras/RainbowDemo.bin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/extras/RainbowDemo.bin.zip -------------------------------------------------------------------------------- /FastLED_po/extras/RainbowDemo.s65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/extras/RainbowDemo.s65 -------------------------------------------------------------------------------- /FastLED_po/fastled_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/fastled_config.h -------------------------------------------------------------------------------- /FastLED_po/fastled_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/fastled_delay.h -------------------------------------------------------------------------------- /FastLED_po/fastled_progmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/fastled_progmem.h -------------------------------------------------------------------------------- /FastLED_po/fastpin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/fastpin.h -------------------------------------------------------------------------------- /FastLED_po/fastspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/fastspi.h -------------------------------------------------------------------------------- /FastLED_po/fastspi_bitbang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/fastspi_bitbang.h -------------------------------------------------------------------------------- /FastLED_po/fastspi_dma.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FastLED_po/fastspi_nop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/fastspi_nop.h -------------------------------------------------------------------------------- /FastLED_po/fastspi_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/fastspi_ref.h -------------------------------------------------------------------------------- /FastLED_po/fastspi_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/fastspi_types.h -------------------------------------------------------------------------------- /FastLED_po/hsv2rgb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/hsv2rgb.cpp -------------------------------------------------------------------------------- /FastLED_po/hsv2rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/hsv2rgb.h -------------------------------------------------------------------------------- /FastLED_po/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/keywords.txt -------------------------------------------------------------------------------- /FastLED_po/led_sysdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/led_sysdefs.h -------------------------------------------------------------------------------- /FastLED_po/lib8tion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/lib8tion.cpp -------------------------------------------------------------------------------- /FastLED_po/lib8tion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/lib8tion.h -------------------------------------------------------------------------------- /FastLED_po/lib8tion/math8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/lib8tion/math8.h -------------------------------------------------------------------------------- /FastLED_po/lib8tion/random8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/lib8tion/random8.h -------------------------------------------------------------------------------- /FastLED_po/lib8tion/scale8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/lib8tion/scale8.h -------------------------------------------------------------------------------- /FastLED_po/lib8tion/trig8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/lib8tion/trig8.h -------------------------------------------------------------------------------- /FastLED_po/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/library.json -------------------------------------------------------------------------------- /FastLED_po/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/library.properties -------------------------------------------------------------------------------- /FastLED_po/noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/noise.cpp -------------------------------------------------------------------------------- /FastLED_po/noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/noise.h -------------------------------------------------------------------------------- /FastLED_po/pixelset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/pixelset.h -------------------------------------------------------------------------------- /FastLED_po/pixeltypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/pixeltypes.h -------------------------------------------------------------------------------- /FastLED_po/platforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/common/m0clockless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/common/m0clockless.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/d21/clockless_arm_d21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/d21/clockless_arm_d21.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/d21/fastled_arm_d21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/d21/fastled_arm_d21.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/d21/fastpin_arm_d21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/d21/fastpin_arm_d21.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/d21/led_sysdefs_arm_d21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/d21/led_sysdefs_arm_d21.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/d51/clockless_arm_d51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/d51/clockless_arm_d51.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/d51/fastled_arm_d51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/d51/fastled_arm_d51.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/d51/fastpin_arm_d51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/d51/fastpin_arm_d51.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/d51/led_sysdefs_arm_d51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/d51/led_sysdefs_arm_d51.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/k20/clockless_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/k20/clockless_arm_k20.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/k20/clockless_block_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/k20/clockless_block_arm_k20.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/k20/fastled_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/k20/fastled_arm_k20.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/k20/fastpin_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/k20/fastpin_arm_k20.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/k20/fastspi_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/k20/fastspi_arm_k20.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/k20/led_sysdefs_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/k20/led_sysdefs_arm_k20.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/k20/octows2811_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/k20/octows2811_controller.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/k20/smartmatrix_t3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/k20/smartmatrix_t3.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/k20/ws2812serial_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/k20/ws2812serial_controller.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/k66/clockless_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/k66/clockless_arm_k66.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/k66/clockless_block_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/k66/clockless_block_arm_k66.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/k66/fastled_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/k66/fastled_arm_k66.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/k66/fastpin_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/k66/fastpin_arm_k66.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/k66/fastspi_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/k66/fastspi_arm_k66.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/k66/led_sysdefs_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/k66/led_sysdefs_arm_k66.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/kl26/clockless_arm_kl26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/kl26/clockless_arm_kl26.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/kl26/fastled_arm_kl26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/kl26/fastled_arm_kl26.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/kl26/fastpin_arm_kl26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/kl26/fastpin_arm_kl26.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/kl26/fastspi_arm_kl26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/kl26/fastspi_arm_kl26.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/kl26/led_sysdefs_arm_kl26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/kl26/led_sysdefs_arm_kl26.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/nrf51/clockless_arm_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/nrf51/clockless_arm_nrf51.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/nrf51/fastled_arm_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/nrf51/fastled_arm_nrf51.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/nrf51/fastpin_arm_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/nrf51/fastpin_arm_nrf51.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/nrf51/fastspi_arm_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/nrf51/fastspi_arm_nrf51.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/nrf51/led_sysdefs_arm_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/nrf51/led_sysdefs_arm_nrf51.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/sam/clockless_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/sam/clockless_arm_sam.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/sam/clockless_block_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/sam/clockless_block_arm_sam.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/sam/fastled_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/sam/fastled_arm_sam.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/sam/fastpin_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/sam/fastpin_arm_sam.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/sam/fastspi_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/sam/fastspi_arm_sam.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/sam/led_sysdefs_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/sam/led_sysdefs_arm_sam.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/stm32/clockless_arm_stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/stm32/clockless_arm_stm32.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/stm32/cm3_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/stm32/cm3_regs.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/stm32/fastled_arm_stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/stm32/fastled_arm_stm32.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/stm32/fastpin_arm_stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/stm32/fastpin_arm_stm32.h -------------------------------------------------------------------------------- /FastLED_po/platforms/arm/stm32/led_sysdefs_arm_stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/arm/stm32/led_sysdefs_arm_stm32.h -------------------------------------------------------------------------------- /FastLED_po/platforms/avr/clockless_trinket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/avr/clockless_trinket.h -------------------------------------------------------------------------------- /FastLED_po/platforms/avr/fastled_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/avr/fastled_avr.h -------------------------------------------------------------------------------- /FastLED_po/platforms/avr/fastpin_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/avr/fastpin_avr.h -------------------------------------------------------------------------------- /FastLED_po/platforms/avr/fastspi_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/avr/fastspi_avr.h -------------------------------------------------------------------------------- /FastLED_po/platforms/avr/led_sysdefs_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/avr/led_sysdefs_avr.h -------------------------------------------------------------------------------- /FastLED_po/platforms/esp/32/clockless_block_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/esp/32/clockless_block_esp32.h -------------------------------------------------------------------------------- /FastLED_po/platforms/esp/32/clockless_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/esp/32/clockless_esp32.h -------------------------------------------------------------------------------- /FastLED_po/platforms/esp/32/clockless_esp32.h.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/esp/32/clockless_esp32.h.orig -------------------------------------------------------------------------------- /FastLED_po/platforms/esp/32/fastled_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/esp/32/fastled_esp32.h -------------------------------------------------------------------------------- /FastLED_po/platforms/esp/32/fastpin_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/esp/32/fastpin_esp32.h -------------------------------------------------------------------------------- /FastLED_po/platforms/esp/32/i2s_clockless_block_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/esp/32/i2s_clockless_block_esp32.h -------------------------------------------------------------------------------- /FastLED_po/platforms/esp/32/led_sysdefs_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/esp/32/led_sysdefs_esp32.h -------------------------------------------------------------------------------- /FastLED_po/platforms/esp/8266/clockless_block_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/esp/8266/clockless_block_esp8266.h -------------------------------------------------------------------------------- /FastLED_po/platforms/esp/8266/clockless_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/esp/8266/clockless_esp8266.h -------------------------------------------------------------------------------- /FastLED_po/platforms/esp/8266/fastled_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/esp/8266/fastled_esp8266.h -------------------------------------------------------------------------------- /FastLED_po/platforms/esp/8266/fastpin_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/esp/8266/fastpin_esp8266.h -------------------------------------------------------------------------------- /FastLED_po/platforms/esp/8266/led_sysdefs_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/platforms/esp/8266/led_sysdefs_esp8266.h -------------------------------------------------------------------------------- /FastLED_po/power_mgt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/power_mgt.cpp -------------------------------------------------------------------------------- /FastLED_po/power_mgt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/power_mgt.h -------------------------------------------------------------------------------- /FastLED_po/preview_changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/preview_changes.txt -------------------------------------------------------------------------------- /FastLED_po/release_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/release_notes.md -------------------------------------------------------------------------------- /FastLED_po/wiring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/FastLED_po/wiring.cpp -------------------------------------------------------------------------------- /Gerberfiles/Gerber_20 pins pass through_20190805150651.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/Gerberfiles/Gerber_20 pins pass through_20190805150651.zip -------------------------------------------------------------------------------- /Gerberfiles/Gerber_20PINS SMD PAST no ls_20190805152557.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/Gerberfiles/Gerber_20PINS SMD PAST no ls_20190805152557.zip -------------------------------------------------------------------------------- /Gerberfiles/Gerber_20PINS SMD PAST_20190805150637.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/Gerberfiles/Gerber_20PINS SMD PAST_20190805150637.zip -------------------------------------------------------------------------------- /Gerberfiles/Gerber_40PINS 3LS_20190805150718.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/Gerberfiles/Gerber_40PINS 3LS_20190805150718.zip -------------------------------------------------------------------------------- /Gerberfiles/Gerber_PCB 40PIN 2LS_20190805150732.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/Gerberfiles/Gerber_PCB 40PIN 2LS_20190805150732.zip -------------------------------------------------------------------------------- /Gerberfiles/Gerber_PCB 40PIN NOLS_20190805150704.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/Gerberfiles/Gerber_PCB 40PIN NOLS_20190805150704.zip -------------------------------------------------------------------------------- /ParallelOutputDemo/ParallelOutputDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/ParallelOutputDemo/ParallelOutputDemo.ino -------------------------------------------------------------------------------- /ParallelOutputDemo/data/base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/ParallelOutputDemo/data/base.png -------------------------------------------------------------------------------- /ParallelOutputDemo/data/demo1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/ParallelOutputDemo/data/demo1.html -------------------------------------------------------------------------------- /ParallelOutputDemo/data/demo2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/ParallelOutputDemo/data/demo2.html -------------------------------------------------------------------------------- /ParallelOutputDemo/data/farbtastic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/ParallelOutputDemo/data/farbtastic.css -------------------------------------------------------------------------------- /ParallelOutputDemo/data/farbtastic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/ParallelOutputDemo/data/farbtastic.js -------------------------------------------------------------------------------- /ParallelOutputDemo/data/images.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/ParallelOutputDemo/data/images.css -------------------------------------------------------------------------------- /ParallelOutputDemo/data/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/ParallelOutputDemo/data/index.html -------------------------------------------------------------------------------- /ParallelOutputDemo/data/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/ParallelOutputDemo/data/jquery.js -------------------------------------------------------------------------------- /ParallelOutputDemo/data/lamp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/ParallelOutputDemo/data/lamp.html -------------------------------------------------------------------------------- /ParallelOutputDemo/data/left-turn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/ParallelOutputDemo/data/left-turn.gif -------------------------------------------------------------------------------- /ParallelOutputDemo/data/left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/ParallelOutputDemo/data/left.gif -------------------------------------------------------------------------------- /ParallelOutputDemo/data/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/ParallelOutputDemo/data/main.js -------------------------------------------------------------------------------- /ParallelOutputDemo/data/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/ParallelOutputDemo/data/marker.png -------------------------------------------------------------------------------- /ParallelOutputDemo/data/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/ParallelOutputDemo/data/mask.png -------------------------------------------------------------------------------- /ParallelOutputDemo/data/meteo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/ParallelOutputDemo/data/meteo.html -------------------------------------------------------------------------------- /ParallelOutputDemo/data/paint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/ParallelOutputDemo/data/paint.html -------------------------------------------------------------------------------- /ParallelOutputDemo/data/right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/ParallelOutputDemo/data/right.gif -------------------------------------------------------------------------------- /ParallelOutputDemo/data/right_turn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/ParallelOutputDemo/data/right_turn.gif -------------------------------------------------------------------------------- /ParallelOutputDemo/data/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/ParallelOutputDemo/data/screen.css -------------------------------------------------------------------------------- /ParallelOutputDemo/data/snake.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/ParallelOutputDemo/data/snake.html -------------------------------------------------------------------------------- /ParallelOutputDemo/data/test_b_check.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/ParallelOutputDemo/data/test_b_check.jpg -------------------------------------------------------------------------------- /ParallelOutputDemo/data/tetris.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/ParallelOutputDemo/data/tetris.html -------------------------------------------------------------------------------- /ParallelOutputDemo/data/tetris2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/ParallelOutputDemo/data/tetris2.html -------------------------------------------------------------------------------- /ParallelOutputDemo/data/wheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/ParallelOutputDemo/data/wheel.png -------------------------------------------------------------------------------- /ParallelOutputDemo/vortex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/ParallelOutputDemo/vortex.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/Jenkinsfile -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/LICENSE -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/README.md -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/docs/_static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/docs/_static/favicon.png -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/docs/api.rst -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/docs/compatibility.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/docs/compatibility.rst -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/docs/conf.py -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/docs/dependencies.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/docs/dependencies.rst -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/docs/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/docs/examples.rst -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/docs/index.rst -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/docs/usage.rst -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/examples/adafruitio_00_publish/adafruitio_00_publish.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/examples/adafruitio_00_publish/adafruitio_00_publish.ino -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/examples/adafruitio_00_publish/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/examples/adafruitio_00_publish/config.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/examples/adafruitio_01_subscribe/adafruitio_01_subscribe.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/examples/adafruitio_01_subscribe/adafruitio_01_subscribe.ino -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/examples/adafruitio_01_subscribe/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/examples/adafruitio_01_subscribe/config.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/examples/adafruitio_02_pubsub/adafruitio_02_pubsub.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/examples/adafruitio_02_pubsub/adafruitio_02_pubsub.ino -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/examples/adafruitio_02_pubsub/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/examples/adafruitio_02_pubsub/config.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/examples/adafruitio_03_multiple_feeds/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/examples/adafruitio_03_multiple_feeds/config.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/examples/adafruitio_04_location/adafruitio_04_location.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/examples/adafruitio_04_location/adafruitio_04_location.ino -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/examples/adafruitio_04_location/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/examples/adafruitio_04_location/config.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/examples/adafruitio_05_type_conversion/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/examples/adafruitio_05_type_conversion/config.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/examples/adafruitio_06_digital_in/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/examples/adafruitio_06_digital_in/config.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/examples/adafruitio_07_digital_out/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/examples/adafruitio_07_digital_out/config.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/examples/adafruitio_08_analog_in/adafruitio_08_analog_in.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/examples/adafruitio_08_analog_in/adafruitio_08_analog_in.ino -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/examples/adafruitio_08_analog_in/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/examples/adafruitio_08_analog_in/config.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/examples/adafruitio_09_analog_out/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/examples/adafruitio_09_analog_out/config.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/examples/adafruitio_10_dashboard_creation/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/examples/adafruitio_10_dashboard_creation/config.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/examples/adafruitio_11_group_pub/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/examples/adafruitio_11_group_pub/config.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/examples/adafruitio_12_group_sub/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/examples/adafruitio_12_group_sub/config.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/examples/adafruitio_13_rgb/adafruitio_13_rgb.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/examples/adafruitio_13_rgb/adafruitio_13_rgb.ino -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/examples/adafruitio_13_rgb/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/examples/adafruitio_13_rgb/config.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/examples/adafruitio_14_neopixel/adafruitio_14_neopixel.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/examples/adafruitio_14_neopixel/adafruitio_14_neopixel.ino -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/examples/adafruitio_14_neopixel/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/examples/adafruitio_14_neopixel/config.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/examples/adafruitio_15_temp_humidity/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/examples/adafruitio_15_temp_humidity/config.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/examples/adafruitio_16_servo/adafruitio_16_servo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/examples/adafruitio_16_servo/adafruitio_16_servo.ino -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/examples/adafruitio_16_servo/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/examples/adafruitio_16_servo/config.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/examples/adafruitio_17_time_subscribe/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/examples/adafruitio_17_time_subscribe/config.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/examples/adafruitio_18_device_info/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/examples/adafruitio_18_device_info/config.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/examples/adafruitio_19_deepsleep/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/examples/adafruitio_19_deepsleep/config.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/examples/adafruitio_20_shared_feed_write/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/examples/adafruitio_20_shared_feed_write/config.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/examples/adafruitio_21_feed_read/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/examples/adafruitio_21_feed_read/config.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/examples/adafruitio_22_environmental_monitor/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/examples/adafruitio_22_environmental_monitor/config.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/examples/adafruitio_23_ifttt/adafruitio_23_ifttt.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/examples/adafruitio_23_ifttt/adafruitio_23_ifttt.ino -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/examples/adafruitio_23_ifttt/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/examples/adafruitio_23_ifttt/config.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/examples/adafruitio_24_zapier/adafruitio_24_zapier.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/examples/adafruitio_24_zapier/adafruitio_24_zapier.ino -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/examples/adafruitio_24_zapier/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/examples/adafruitio_24_zapier/config.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/examples/io_home_series/io_garage/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/examples/io_home_series/io_garage/config.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/examples/io_home_series/io_garage/io_garage.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/examples/io_home_series/io_garage/io_garage.ino -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/examples/io_home_series/io_home_security/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/examples/io_home_series/io_home_security/config.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/examples/io_home_series/neopixel_and_thermometer/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/examples/io_home_series/neopixel_and_thermometer/config.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/library.properties -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/AdafruitIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/AdafruitIO.cpp -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/AdafruitIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/AdafruitIO.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/AdafruitIO_Dashboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/AdafruitIO_Dashboard.cpp -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/AdafruitIO_Dashboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/AdafruitIO_Dashboard.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/AdafruitIO_Data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/AdafruitIO_Data.cpp -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/AdafruitIO_Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/AdafruitIO_Data.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/AdafruitIO_Definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/AdafruitIO_Definitions.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/AdafruitIO_Ethernet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/AdafruitIO_Ethernet.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/AdafruitIO_FONA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/AdafruitIO_FONA.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/AdafruitIO_Feed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/AdafruitIO_Feed.cpp -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/AdafruitIO_Feed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/AdafruitIO_Feed.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/AdafruitIO_Group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/AdafruitIO_Group.cpp -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/AdafruitIO_Group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/AdafruitIO_Group.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/AdafruitIO_MQTT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/AdafruitIO_MQTT.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/AdafruitIO_Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/AdafruitIO_Time.cpp -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/AdafruitIO_Time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/AdafruitIO_Time.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/AdafruitIO_WiFi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/AdafruitIO_WiFi.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/blocks/AdafruitIO_Block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/blocks/AdafruitIO_Block.cpp -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/blocks/AdafruitIO_Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/blocks/AdafruitIO_Block.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/blocks/ChartBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/blocks/ChartBlock.cpp -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/blocks/ChartBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/blocks/ChartBlock.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/blocks/ColorBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/blocks/ColorBlock.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/blocks/GaugeBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/blocks/GaugeBlock.cpp -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/blocks/GaugeBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/blocks/GaugeBlock.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/blocks/ImageBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/blocks/ImageBlock.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/blocks/MapBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/blocks/MapBlock.cpp -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/blocks/MapBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/blocks/MapBlock.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/blocks/MomentaryBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/blocks/MomentaryBlock.cpp -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/blocks/MomentaryBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/blocks/MomentaryBlock.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/blocks/SliderBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/blocks/SliderBlock.cpp -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/blocks/SliderBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/blocks/SliderBlock.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/blocks/StreamBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/blocks/StreamBlock.cpp -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/blocks/StreamBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/blocks/StreamBlock.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/blocks/TextBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/blocks/TextBlock.cpp -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/blocks/TextBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/blocks/TextBlock.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/blocks/ToggleBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/blocks/ToggleBlock.cpp -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/blocks/ToggleBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/blocks/ToggleBlock.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/util/AdafruitIO_Board.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/util/AdafruitIO_Board.cpp -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/util/AdafruitIO_Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/util/AdafruitIO_Board.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/wifi/AdafruitIO_AIRLIFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/wifi/AdafruitIO_AIRLIFT.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/wifi/AdafruitIO_ESP32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/wifi/AdafruitIO_ESP32.cpp -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/wifi/AdafruitIO_ESP32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/wifi/AdafruitIO_ESP32.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/wifi/AdafruitIO_ESP8266.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/wifi/AdafruitIO_ESP8266.cpp -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/wifi/AdafruitIO_ESP8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/wifi/AdafruitIO_ESP8266.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/wifi/AdafruitIO_MKR1000.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/wifi/AdafruitIO_MKR1000.cpp -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/wifi/AdafruitIO_MKR1000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/wifi/AdafruitIO_MKR1000.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/wifi/AdafruitIO_WICED.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/wifi/AdafruitIO_WICED.cpp -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/wifi/AdafruitIO_WICED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/wifi/AdafruitIO_WICED.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/wifi/AdafruitIO_WICED_SSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/wifi/AdafruitIO_WICED_SSL.h -------------------------------------------------------------------------------- /libraries/Adafruit_IO_Arduino/src/wifi/AdafruitIO_WINC1500.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Adafruit_IO_Arduino/src/wifi/AdafruitIO_WINC1500.h -------------------------------------------------------------------------------- /libraries/ArduinoHttpClient/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoHttpClient/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/ArduinoHttpClient/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoHttpClient/README.md -------------------------------------------------------------------------------- /libraries/ArduinoHttpClient/examples/BasicAuthGet/BasicAuthGet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoHttpClient/examples/BasicAuthGet/BasicAuthGet.ino -------------------------------------------------------------------------------- /libraries/ArduinoHttpClient/examples/BasicAuthGet/arduino_secrets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoHttpClient/examples/BasicAuthGet/arduino_secrets.h -------------------------------------------------------------------------------- /libraries/ArduinoHttpClient/examples/CustomHeader/CustomHeader.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoHttpClient/examples/CustomHeader/CustomHeader.ino -------------------------------------------------------------------------------- /libraries/ArduinoHttpClient/examples/CustomHeader/arduino_secrets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoHttpClient/examples/CustomHeader/arduino_secrets.h -------------------------------------------------------------------------------- /libraries/ArduinoHttpClient/examples/DweetGet/DweetGet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoHttpClient/examples/DweetGet/DweetGet.ino -------------------------------------------------------------------------------- /libraries/ArduinoHttpClient/examples/DweetGet/arduino_secrets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoHttpClient/examples/DweetGet/arduino_secrets.h -------------------------------------------------------------------------------- /libraries/ArduinoHttpClient/examples/DweetPost/DweetPost.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoHttpClient/examples/DweetPost/DweetPost.ino -------------------------------------------------------------------------------- /libraries/ArduinoHttpClient/examples/DweetPost/arduino_secrets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoHttpClient/examples/DweetPost/arduino_secrets.h -------------------------------------------------------------------------------- /libraries/ArduinoHttpClient/examples/HueBlink/HueBlink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoHttpClient/examples/HueBlink/HueBlink.ino -------------------------------------------------------------------------------- /libraries/ArduinoHttpClient/examples/HueBlink/arduino_secrets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoHttpClient/examples/HueBlink/arduino_secrets.h -------------------------------------------------------------------------------- /libraries/ArduinoHttpClient/examples/PostWithHeaders/PostWithHeaders.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoHttpClient/examples/PostWithHeaders/PostWithHeaders.ino -------------------------------------------------------------------------------- /libraries/ArduinoHttpClient/examples/PostWithHeaders/arduino_secrets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoHttpClient/examples/PostWithHeaders/arduino_secrets.h -------------------------------------------------------------------------------- /libraries/ArduinoHttpClient/examples/SimpleDelete/SimpleDelete.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoHttpClient/examples/SimpleDelete/SimpleDelete.ino -------------------------------------------------------------------------------- /libraries/ArduinoHttpClient/examples/SimpleDelete/arduino_secrets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoHttpClient/examples/SimpleDelete/arduino_secrets.h -------------------------------------------------------------------------------- /libraries/ArduinoHttpClient/examples/SimpleGet/SimpleGet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoHttpClient/examples/SimpleGet/SimpleGet.ino -------------------------------------------------------------------------------- /libraries/ArduinoHttpClient/examples/SimpleGet/arduino_secrets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoHttpClient/examples/SimpleGet/arduino_secrets.h -------------------------------------------------------------------------------- /libraries/ArduinoHttpClient/examples/SimpleHttpExample/SimpleHttpExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoHttpClient/examples/SimpleHttpExample/SimpleHttpExample.ino -------------------------------------------------------------------------------- /libraries/ArduinoHttpClient/examples/SimpleHttpExample/arduino_secrets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoHttpClient/examples/SimpleHttpExample/arduino_secrets.h -------------------------------------------------------------------------------- /libraries/ArduinoHttpClient/examples/SimplePost/SimplePost.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoHttpClient/examples/SimplePost/SimplePost.ino -------------------------------------------------------------------------------- /libraries/ArduinoHttpClient/examples/SimplePost/arduino_secrets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoHttpClient/examples/SimplePost/arduino_secrets.h -------------------------------------------------------------------------------- /libraries/ArduinoHttpClient/examples/SimplePut/SimplePut.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoHttpClient/examples/SimplePut/SimplePut.ino -------------------------------------------------------------------------------- /libraries/ArduinoHttpClient/examples/SimplePut/arduino_secrets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoHttpClient/examples/SimplePut/arduino_secrets.h -------------------------------------------------------------------------------- /libraries/ArduinoHttpClient/examples/SimpleWebSocket/SimpleWebSocket.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoHttpClient/examples/SimpleWebSocket/SimpleWebSocket.ino -------------------------------------------------------------------------------- /libraries/ArduinoHttpClient/examples/SimpleWebSocket/arduino_secrets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoHttpClient/examples/SimpleWebSocket/arduino_secrets.h -------------------------------------------------------------------------------- /libraries/ArduinoHttpClient/examples/node_test_server/getPostPutDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoHttpClient/examples/node_test_server/getPostPutDelete.js -------------------------------------------------------------------------------- /libraries/ArduinoHttpClient/examples/node_test_server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoHttpClient/examples/node_test_server/package.json -------------------------------------------------------------------------------- /libraries/ArduinoHttpClient/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoHttpClient/keywords.txt -------------------------------------------------------------------------------- /libraries/ArduinoHttpClient/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoHttpClient/library.json -------------------------------------------------------------------------------- /libraries/ArduinoHttpClient/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoHttpClient/library.properties -------------------------------------------------------------------------------- /libraries/ArduinoHttpClient/src/ArduinoHttpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoHttpClient/src/ArduinoHttpClient.h -------------------------------------------------------------------------------- /libraries/ArduinoHttpClient/src/HttpClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoHttpClient/src/HttpClient.cpp -------------------------------------------------------------------------------- /libraries/ArduinoHttpClient/src/HttpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoHttpClient/src/HttpClient.h -------------------------------------------------------------------------------- /libraries/ArduinoHttpClient/src/URLEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoHttpClient/src/URLEncoder.cpp -------------------------------------------------------------------------------- /libraries/ArduinoHttpClient/src/URLEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoHttpClient/src/URLEncoder.h -------------------------------------------------------------------------------- /libraries/ArduinoHttpClient/src/WebSocketClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoHttpClient/src/WebSocketClient.cpp -------------------------------------------------------------------------------- /libraries/ArduinoHttpClient/src/WebSocketClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoHttpClient/src/WebSocketClient.h -------------------------------------------------------------------------------- /libraries/ArduinoHttpClient/src/b64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoHttpClient/src/b64.cpp -------------------------------------------------------------------------------- /libraries/ArduinoHttpClient/src/b64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoHttpClient/src/b64.h -------------------------------------------------------------------------------- /libraries/ArduinoTrace/ArduinoTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoTrace/ArduinoTrace.h -------------------------------------------------------------------------------- /libraries/ArduinoTrace/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoTrace/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/ArduinoTrace/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoTrace/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/ArduinoTrace/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoTrace/LICENSE.md -------------------------------------------------------------------------------- /libraries/ArduinoTrace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoTrace/README.md -------------------------------------------------------------------------------- /libraries/ArduinoTrace/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoTrace/banner.png -------------------------------------------------------------------------------- /libraries/ArduinoTrace/examples/BasicTracing/BasicTracing.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoTrace/examples/BasicTracing/BasicTracing.ino -------------------------------------------------------------------------------- /libraries/ArduinoTrace/examples/TraceFromGlobalScope/TraceFromGlobalScope.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoTrace/examples/TraceFromGlobalScope/TraceFromGlobalScope.ino -------------------------------------------------------------------------------- /libraries/ArduinoTrace/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoTrace/keywords.txt -------------------------------------------------------------------------------- /libraries/ArduinoTrace/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoTrace/library.json -------------------------------------------------------------------------------- /libraries/ArduinoTrace/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoTrace/library.properties -------------------------------------------------------------------------------- /libraries/ArduinoTrace/test/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoTrace/test/Arduino.h -------------------------------------------------------------------------------- /libraries/ArduinoTrace/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoTrace/test/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/ArduinoTrace/test/myassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoTrace/test/myassert.h -------------------------------------------------------------------------------- /libraries/ArduinoTrace/test/test_alternative_serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoTrace/test/test_alternative_serial.cpp -------------------------------------------------------------------------------- /libraries/ArduinoTrace/test/test_defaults.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoTrace/test/test_defaults.cpp -------------------------------------------------------------------------------- /libraries/ArduinoTrace/test/test_disabled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoTrace/test/test_disabled.cpp -------------------------------------------------------------------------------- /libraries/ArduinoTrace/test/test_full_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoTrace/test/test_full_path.cpp -------------------------------------------------------------------------------- /libraries/ArduinoTrace/video-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/ArduinoTrace/video-thumbnail.png -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/LICENSE -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/README.md -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/examples/Access_HTTP/Access_HTTP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/examples/Access_HTTP/Access_HTTP.ino -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/examples/Bidirectional_Serial/Bidirectional_Serial.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/examples/Bidirectional_Serial/Bidirectional_Serial.ino -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/examples/Send_SMS/Send_SMS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/examples/Send_SMS/Send_SMS.ino -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/examples/Tests/CALLS/CALLS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/examples/Tests/CALLS/CALLS.ino -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/examples/Tests/FTP/FTP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/examples/Tests/FTP/FTP.ino -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/examples/Tests/GENERAL/GENERAL.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/examples/Tests/GENERAL/GENERAL.ino -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/examples/Tests/GPRS/GPRS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/examples/Tests/GPRS/GPRS.ino -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/examples/Tests/HTTP/HTTP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/examples/Tests/HTTP/HTTP.ino -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/examples/Tests/MAIL/MAIL.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/examples/Tests/MAIL/MAIL.ino -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/examples/Tests/MMS/MMS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/examples/Tests/MMS/MMS.ino -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/examples/Tests/SIMCOM/SIMCOM.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/examples/Tests/SIMCOM/SIMCOM.ino -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/examples/Tests/SMS/SMS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/examples/Tests/SMS/SMS.ino -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/examples/Tests/STK/STK.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/examples/Tests/STK/STK.ino -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/examples/Tests/TCPIP/TCPIP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/examples/Tests/TCPIP/TCPIP.ino -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/extras/Aspen SIM800 API Documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/extras/Aspen SIM800 API Documentation.pdf -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/keywords.txt -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/library.properties -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/src/SIM800.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/src/SIM800.cpp -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/src/SIM800.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/src/SIM800.h -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/src/atcmds/calls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/src/atcmds/calls.cpp -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/src/atcmds/calls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/src/atcmds/calls.h -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/src/atcmds/email.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/src/atcmds/email.cpp -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/src/atcmds/email.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/src/atcmds/email.h -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/src/atcmds/ftp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/src/atcmds/ftp.cpp -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/src/atcmds/ftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/src/atcmds/ftp.h -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/src/atcmds/general.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/src/atcmds/general.cpp -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/src/atcmds/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/src/atcmds/general.h -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/src/atcmds/gprs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/src/atcmds/gprs.cpp -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/src/atcmds/gprs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/src/atcmds/gprs.h -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/src/atcmds/http.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/src/atcmds/http.cpp -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/src/atcmds/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/src/atcmds/http.h -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/src/atcmds/ip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/src/atcmds/ip.cpp -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/src/atcmds/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/src/atcmds/ip.h -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/src/atcmds/mms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/src/atcmds/mms.cpp -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/src/atcmds/mms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/src/atcmds/mms.h -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/src/atcmds/simcom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/src/atcmds/simcom.cpp -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/src/atcmds/simcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/src/atcmds/simcom.h -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/src/atcmds/sms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/src/atcmds/sms.cpp -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/src/atcmds/sms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/src/atcmds/sms.h -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/src/atcmds/stk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/src/atcmds/stk.cpp -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/src/atcmds/stk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/src/atcmds/stk.h -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/src/core/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/src/core/debug.cpp -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/src/core/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/src/core/debug.h -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/src/core/simserial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/src/core/simserial.cpp -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/src/core/simserial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/src/core/simserial.h -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/src/core/strfn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/src/core/strfn.cpp -------------------------------------------------------------------------------- /libraries/Aspen_SIM800/src/core/strfn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Aspen_SIM800/src/core/strfn.h -------------------------------------------------------------------------------- /libraries/FastLED/FastLED.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/FastLED.cpp -------------------------------------------------------------------------------- /libraries/FastLED/FastLED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/FastLED.h -------------------------------------------------------------------------------- /libraries/FastLED/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/LICENSE -------------------------------------------------------------------------------- /libraries/FastLED/PORTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/PORTING.md -------------------------------------------------------------------------------- /libraries/FastLED/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/README.md -------------------------------------------------------------------------------- /libraries/FastLED/bitswap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/bitswap.cpp -------------------------------------------------------------------------------- /libraries/FastLED/bitswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/bitswap.h -------------------------------------------------------------------------------- /libraries/FastLED/chipsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/chipsets.h -------------------------------------------------------------------------------- /libraries/FastLED/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/color.h -------------------------------------------------------------------------------- /libraries/FastLED/colorpalettes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/colorpalettes.cpp -------------------------------------------------------------------------------- /libraries/FastLED/colorpalettes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/colorpalettes.h -------------------------------------------------------------------------------- /libraries/FastLED/colorutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/colorutils.cpp -------------------------------------------------------------------------------- /libraries/FastLED/colorutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/colorutils.h -------------------------------------------------------------------------------- /libraries/FastLED/component.mk: -------------------------------------------------------------------------------- 1 | COMPONENT_ADD_INCLUDEDIRS := . 2 | -------------------------------------------------------------------------------- /libraries/FastLED/controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/controller.h -------------------------------------------------------------------------------- /libraries/FastLED/cpp_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/cpp_compat.h -------------------------------------------------------------------------------- /libraries/FastLED/dmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/dmx.h -------------------------------------------------------------------------------- /libraries/FastLED/docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/docs/Doxyfile -------------------------------------------------------------------------------- /libraries/FastLED/docs/mainpage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/docs/mainpage.dox -------------------------------------------------------------------------------- /libraries/FastLED/examples/AnalogOutput/AnalogOutput.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/examples/AnalogOutput/AnalogOutput.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Blink/Blink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/examples/Blink/Blink.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/ColorPalette/ColorPalette.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/examples/ColorPalette/ColorPalette.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/ColorTemperature/ColorTemperature.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/examples/ColorTemperature/ColorTemperature.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Cylon/Cylon.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/examples/Cylon/Cylon.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/DemoReel100/DemoReel100.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/examples/DemoReel100/DemoReel100.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Fire2012/Fire2012.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/examples/Fire2012/Fire2012.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Fire2012WithPalette/Fire2012WithPalette.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/examples/Fire2012WithPalette/Fire2012WithPalette.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/FirstLight/FirstLight.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/examples/FirstLight/FirstLight.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Multiple/ArrayOfLedArrays/ArrayOfLedArrays.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/examples/Multiple/ArrayOfLedArrays/ArrayOfLedArrays.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Multiple/MirroringSample/MirroringSample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/examples/Multiple/MirroringSample/MirroringSample.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Multiple/MultiArrays/MultiArrays.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/examples/Multiple/MultiArrays/MultiArrays.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Multiple/OctoWS2811Demo/OctoWS2811Demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/examples/Multiple/OctoWS2811Demo/OctoWS2811Demo.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Multiple/ParallelOutputDemo/ParallelOutputDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/examples/Multiple/ParallelOutputDemo/ParallelOutputDemo.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Noise/Noise.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/examples/Noise/Noise.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/NoisePlayground/NoisePlayground.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/examples/NoisePlayground/NoisePlayground.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/NoisePlusPalette/NoisePlusPalette.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/examples/NoisePlusPalette/NoisePlusPalette.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Pintest/Pintest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/examples/Pintest/Pintest.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Ports/PJRCSpectrumAnalyzer/PJRCSpectrumAnalyzer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/examples/Ports/PJRCSpectrumAnalyzer/PJRCSpectrumAnalyzer.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/RGBCalibrate/RGBCalibrate.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/examples/RGBCalibrate/RGBCalibrate.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/RGBSetDemo/RGBSetDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/examples/RGBSetDemo/RGBSetDemo.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/SmartMatrix/SmartMatrix.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/examples/SmartMatrix/SmartMatrix.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/XYMatrix/XYMatrix.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/examples/XYMatrix/XYMatrix.ino -------------------------------------------------------------------------------- /libraries/FastLED/extras/AppleII.s65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/extras/AppleII.s65 -------------------------------------------------------------------------------- /libraries/FastLED/extras/FastLED6502.s65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/extras/FastLED6502.s65 -------------------------------------------------------------------------------- /libraries/FastLED/extras/RainbowDemo.bin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/extras/RainbowDemo.bin.zip -------------------------------------------------------------------------------- /libraries/FastLED/extras/RainbowDemo.s65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/extras/RainbowDemo.s65 -------------------------------------------------------------------------------- /libraries/FastLED/fastled_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/fastled_config.h -------------------------------------------------------------------------------- /libraries/FastLED/fastled_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/fastled_delay.h -------------------------------------------------------------------------------- /libraries/FastLED/fastled_progmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/fastled_progmem.h -------------------------------------------------------------------------------- /libraries/FastLED/fastpin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/fastpin.h -------------------------------------------------------------------------------- /libraries/FastLED/fastspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/fastspi.h -------------------------------------------------------------------------------- /libraries/FastLED/fastspi_bitbang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/fastspi_bitbang.h -------------------------------------------------------------------------------- /libraries/FastLED/fastspi_dma.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/FastLED/fastspi_nop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/fastspi_nop.h -------------------------------------------------------------------------------- /libraries/FastLED/fastspi_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/fastspi_ref.h -------------------------------------------------------------------------------- /libraries/FastLED/fastspi_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/fastspi_types.h -------------------------------------------------------------------------------- /libraries/FastLED/hsv2rgb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/hsv2rgb.cpp -------------------------------------------------------------------------------- /libraries/FastLED/hsv2rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/hsv2rgb.h -------------------------------------------------------------------------------- /libraries/FastLED/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/keywords.txt -------------------------------------------------------------------------------- /libraries/FastLED/led_sysdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/led_sysdefs.h -------------------------------------------------------------------------------- /libraries/FastLED/lib8tion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/lib8tion.cpp -------------------------------------------------------------------------------- /libraries/FastLED/lib8tion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/lib8tion.h -------------------------------------------------------------------------------- /libraries/FastLED/lib8tion/math8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/lib8tion/math8.h -------------------------------------------------------------------------------- /libraries/FastLED/lib8tion/random8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/lib8tion/random8.h -------------------------------------------------------------------------------- /libraries/FastLED/lib8tion/scale8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/lib8tion/scale8.h -------------------------------------------------------------------------------- /libraries/FastLED/lib8tion/trig8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/lib8tion/trig8.h -------------------------------------------------------------------------------- /libraries/FastLED/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/library.json -------------------------------------------------------------------------------- /libraries/FastLED/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/library.properties -------------------------------------------------------------------------------- /libraries/FastLED/noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/noise.cpp -------------------------------------------------------------------------------- /libraries/FastLED/noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/noise.h -------------------------------------------------------------------------------- /libraries/FastLED/pixelset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/pixelset.h -------------------------------------------------------------------------------- /libraries/FastLED/pixeltypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/pixeltypes.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms.cpp -------------------------------------------------------------------------------- /libraries/FastLED/platforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/common/m0clockless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/common/m0clockless.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/d21/clockless_arm_d21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/d21/clockless_arm_d21.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/d21/fastled_arm_d21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/d21/fastled_arm_d21.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/d21/fastpin_arm_d21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/d21/fastpin_arm_d21.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/d21/led_sysdefs_arm_d21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/d21/led_sysdefs_arm_d21.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/d51/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/d51/README.txt -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/d51/clockless_arm_d51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/d51/clockless_arm_d51.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/d51/fastled_arm_d51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/d51/fastled_arm_d51.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/d51/fastpin_arm_d51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/d51/fastpin_arm_d51.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/d51/led_sysdefs_arm_d51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/d51/led_sysdefs_arm_d51.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/k20/clockless_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/k20/clockless_arm_k20.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/k20/clockless_block_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/k20/clockless_block_arm_k20.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/k20/fastled_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/k20/fastled_arm_k20.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/k20/fastpin_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/k20/fastpin_arm_k20.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/k20/fastspi_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/k20/fastspi_arm_k20.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/k20/led_sysdefs_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/k20/led_sysdefs_arm_k20.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/k20/octows2811_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/k20/octows2811_controller.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/k20/smartmatrix_t3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/k20/smartmatrix_t3.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/k20/ws2812serial_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/k20/ws2812serial_controller.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/k66/clockless_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/k66/clockless_arm_k66.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/k66/clockless_block_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/k66/clockless_block_arm_k66.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/k66/fastled_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/k66/fastled_arm_k66.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/k66/fastpin_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/k66/fastpin_arm_k66.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/k66/fastspi_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/k66/fastspi_arm_k66.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/k66/led_sysdefs_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/k66/led_sysdefs_arm_k66.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/kl26/clockless_arm_kl26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/kl26/clockless_arm_kl26.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/kl26/fastled_arm_kl26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/kl26/fastled_arm_kl26.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/kl26/fastpin_arm_kl26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/kl26/fastpin_arm_kl26.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/kl26/fastspi_arm_kl26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/kl26/fastspi_arm_kl26.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/kl26/led_sysdefs_arm_kl26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/kl26/led_sysdefs_arm_kl26.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/nrf51/clockless_arm_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/nrf51/clockless_arm_nrf51.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/nrf51/fastled_arm_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/nrf51/fastled_arm_nrf51.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/nrf51/fastpin_arm_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/nrf51/fastpin_arm_nrf51.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/nrf51/fastspi_arm_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/nrf51/fastspi_arm_nrf51.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/nrf51/led_sysdefs_arm_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/nrf51/led_sysdefs_arm_nrf51.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/nrf52/arbiter_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/nrf52/arbiter_nrf52.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/nrf52/clockless_arm_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/nrf52/clockless_arm_nrf52.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/nrf52/fastled_arm_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/nrf52/fastled_arm_nrf52.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/nrf52/fastpin_arm_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/nrf52/fastpin_arm_nrf52.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/nrf52/fastpin_arm_nrf52_variants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/nrf52/fastpin_arm_nrf52_variants.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/nrf52/fastspi_arm_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/nrf52/fastspi_arm_nrf52.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/nrf52/led_sysdefs_arm_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/nrf52/led_sysdefs_arm_nrf52.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/sam/clockless_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/sam/clockless_arm_sam.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/sam/clockless_block_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/sam/clockless_block_arm_sam.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/sam/fastled_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/sam/fastled_arm_sam.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/sam/fastpin_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/sam/fastpin_arm_sam.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/sam/fastspi_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/sam/fastspi_arm_sam.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/sam/led_sysdefs_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/sam/led_sysdefs_arm_sam.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/stm32/clockless_arm_stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/stm32/clockless_arm_stm32.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/stm32/cm3_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/stm32/cm3_regs.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/stm32/fastled_arm_stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/stm32/fastled_arm_stm32.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/stm32/fastpin_arm_stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/stm32/fastpin_arm_stm32.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/arm/stm32/led_sysdefs_arm_stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/arm/stm32/led_sysdefs_arm_stm32.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/avr/clockless_trinket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/avr/clockless_trinket.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/avr/fastled_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/avr/fastled_avr.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/avr/fastpin_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/avr/fastpin_avr.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/avr/fastspi_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/avr/fastspi_avr.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/avr/led_sysdefs_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/avr/led_sysdefs_avr.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/esp/32/clockless_block_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/esp/32/clockless_block_esp32.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/esp/32/clockless_esp32.h.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/esp/32/clockless_esp32.h.orig -------------------------------------------------------------------------------- /libraries/FastLED/platforms/esp/32/clockless_i2s_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/esp/32/clockless_i2s_esp32.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/esp/32/clockless_i2s_virtual_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/esp/32/clockless_i2s_virtual_esp32.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/esp/32/clockless_rmt_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/esp/32/clockless_rmt_esp32.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/esp/32/fastled_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/esp/32/fastled_esp32.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/esp/32/fastpin_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/esp/32/fastpin_esp32.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/esp/32/led_sysdefs_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/esp/32/led_sysdefs_esp32.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/esp/8266/clockless_block_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/esp/8266/clockless_block_esp8266.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/esp/8266/clockless_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/esp/8266/clockless_esp8266.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/esp/8266/fastled_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/esp/8266/fastled_esp8266.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/esp/8266/fastpin_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/esp/8266/fastpin_esp8266.h -------------------------------------------------------------------------------- /libraries/FastLED/platforms/esp/8266/led_sysdefs_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/platforms/esp/8266/led_sysdefs_esp8266.h -------------------------------------------------------------------------------- /libraries/FastLED/power_mgt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/power_mgt.cpp -------------------------------------------------------------------------------- /libraries/FastLED/power_mgt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/power_mgt.h -------------------------------------------------------------------------------- /libraries/FastLED/preview_changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/preview_changes.txt -------------------------------------------------------------------------------- /libraries/FastLED/release_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/release_notes.md -------------------------------------------------------------------------------- /libraries/FastLED/wiring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/FastLED/wiring.cpp -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/README.md -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/examples/ESP32/ADC_Read_Voltage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/examples/ESP32/ADC_Read_Voltage/README.md -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/examples/ESP32/ESP32_Dual_Core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/examples/ESP32/ESP32_Dual_Core/README.md -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/examples/ESP32/ESP32_Dual_Core/resources/MoveCore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/examples/ESP32/ESP32_Dual_Core/resources/MoveCore.png -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/examples/ESP32/ESP32_Dual_Core/resources/Result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/examples/ESP32/ESP32_Dual_Core/resources/Result.png -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/examples/ESP32/ESP32_Dual_Core/resources/SpeedTest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/examples/ESP32/ESP32_Dual_Core/resources/SpeedTest.png -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/examples/ESP32/Serial2/Serial2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/examples/ESP32/Serial2/Serial2.ino -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/examples/ESP32/ULP/HoldPinStatus/HoldPinStatus.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/examples/ESP32/ULP/HoldPinStatus/HoldPinStatus.ino -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/examples/ESP32/VextControl/VextControl.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/examples/ESP32/VextControl/VextControl.ino -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/examples/Factory_Test/WIFI_Kit_32_FactoryTest/images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/examples/Factory_Test/WIFI_Kit_32_FactoryTest/images.h -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/examples/Factory_Test/WiFi_LoRa_32FactoryTest/images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/examples/Factory_Test/WiFi_LoRa_32FactoryTest/images.h -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/examples/LoRa/LoRaDumpRegisters/LoRaDumpRegisters.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/examples/LoRa/LoRaDumpRegisters/LoRaDumpRegisters.ino -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/examples/LoRa/LoRaReceiver/LoRaReceiver.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/examples/LoRa/LoRaReceiver/LoRaReceiver.ino -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/examples/LoRa/LoRaSender/LoRaSender.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/examples/LoRa/LoRaSender/LoRaSender.ino -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/examples/LoRa/LoRaSetSpread/LoRaSetSpread.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/examples/LoRa/LoRaSetSpread/LoRaSetSpread.ino -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/examples/LoRa/LoRaSetSyncWord/LoRaSetSyncWord.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/examples/LoRa/LoRaSetSyncWord/LoRaSetSyncWord.ino -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/examples/LoRa/OLED_LoRa_Receiver/images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/examples/LoRa/OLED_LoRa_Receiver/images.h -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/examples/LoRa/OLED_LoRa_Sender/OLED_LoRa_Sender.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/examples/LoRa/OLED_LoRa_Sender/OLED_LoRa_Sender.ino -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/examples/LoRa/OLED_LoRa_Sender/images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/examples/LoRa/OLED_LoRa_Sender/images.h -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/examples/Low_Power/Low_Power.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/examples/Low_Power/Low_Power.ino -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/examples/OLED/OTA_OLED/OTA_OLED.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/examples/OLED/OTA_OLED/OTA_OLED.ino -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/examples/OLED/SSD1306SimpleDemo/SSD1306SimpleDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/examples/OLED/SSD1306SimpleDemo/SSD1306SimpleDemo.ino -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/examples/OLED/SSD1306SimpleDemo/images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/examples/OLED/SSD1306SimpleDemo/images.h -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/examples/OLED/SSD1306UiDemo/SSD1306UiDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/examples/OLED/SSD1306UiDemo/SSD1306UiDemo.ino -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/examples/OLED/SSD1306UiDemo/images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/examples/OLED/SSD1306UiDemo/images.h -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/img/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/img/location.png -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/img/location_cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/img/location_cn.png -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/keywords.txt -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/library.json -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/library.properties -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/license -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/src/heltec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/src/heltec.cpp -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/src/heltec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/src/heltec.h -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/src/lora/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/src/lora/API.md -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/src/lora/LoRa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/src/lora/LoRa.cpp -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/src/lora/LoRa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/src/lora/LoRa.h -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/src/oled/OLEDDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/src/oled/OLEDDisplay.cpp -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/src/oled/OLEDDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/src/oled/OLEDDisplay.h -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/src/oled/OLEDDisplayFonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/src/oled/OLEDDisplayFonts.h -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/src/oled/OLEDDisplayUi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/src/oled/OLEDDisplayUi.cpp -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/src/oled/OLEDDisplayUi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/src/oled/OLEDDisplayUi.h -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/src/oled/SSD1306.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/src/oled/SSD1306.h -------------------------------------------------------------------------------- /libraries/Heltec_ESP32_Dev-Boards/src/oled/SSD1306Wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Heltec_ESP32_Dev-Boards/src/oled/SSD1306Wire.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/README.adoc -------------------------------------------------------------------------------- /libraries/LoRa_Node/examples/TinkerkitExample/TinkerkitExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/examples/TinkerkitExample/TinkerkitExample.ino -------------------------------------------------------------------------------- /libraries/LoRa_Node/examples/loraABP/loraABP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/examples/loraABP/loraABP.ino -------------------------------------------------------------------------------- /libraries/LoRa_Node/examples/loraOtaa/loraOtaa.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/examples/loraOtaa/loraOtaa.ino -------------------------------------------------------------------------------- /libraries/LoRa_Node/examples/sendWithButton/sendWithButton.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/examples/sendWithButton/sendWithButton.ino -------------------------------------------------------------------------------- /libraries/LoRa_Node/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/keywords.txt -------------------------------------------------------------------------------- /libraries/LoRa_Node/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/library.properties -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/LoRaNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/LoRaNode.cpp -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/LoRaNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/LoRaNode.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/boards/arduino/adc-board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/boards/arduino/adc-board.c -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/boards/arduino/adc-board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/boards/arduino/adc-board.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/boards/arduino/board.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/boards/arduino/board.cpp -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/boards/arduino/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/boards/arduino/board.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/boards/arduino/eeprom-board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/boards/arduino/eeprom-board.c -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/boards/arduino/eeprom-board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/boards/arduino/eeprom-board.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/boards/arduino/gpio-board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/boards/arduino/gpio-board.c -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/boards/arduino/gpio-board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/boards/arduino/gpio-board.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/boards/arduino/i2c-board.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/boards/arduino/i2c-board.cpp -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/boards/arduino/i2c-board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/boards/arduino/i2c-board.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/boards/arduino/pinName-board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/boards/arduino/pinName-board.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/boards/arduino/rtc-board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/boards/arduino/rtc-board.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/boards/arduino/spi-board.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/boards/arduino/spi-board.cpp -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/boards/arduino/spi-board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/boards/arduino/spi-board.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/boards/arduino/sx1276-board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/boards/arduino/sx1276-board.c -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/boards/arduino/sx1276-board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/boards/arduino/sx1276-board.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/boards/mcu/arduino/arduino_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/boards/mcu/arduino/arduino_hal.c -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/boards/mcu/arduino/nrf52/rtc-board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/boards/mcu/arduino/nrf52/rtc-board.c -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/boards/mcu/arduino/utilities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/boards/mcu/arduino/utilities.c -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/boards/mcu/arduino/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/boards/mcu/arduino/utilities.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/config.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/mac/LoRaMac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/mac/LoRaMac.c -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/mac/LoRaMac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/mac/LoRaMac.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/mac/LoRaMacCrypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/mac/LoRaMacCrypto.c -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/mac/LoRaMacCrypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/mac/LoRaMacCrypto.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/mac/LoRaMacTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/mac/LoRaMacTest.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/mac/region/Region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/mac/region/Region.c -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/mac/region/Region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/mac/region/Region.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/mac/region/RegionAS923.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/mac/region/RegionAS923.c -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/mac/region/RegionAS923.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/mac/region/RegionAS923.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/mac/region/RegionAU915.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/mac/region/RegionAU915.c -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/mac/region/RegionAU915.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/mac/region/RegionAU915.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/mac/region/RegionCN470.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/mac/region/RegionCN470.c -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/mac/region/RegionCN470.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/mac/region/RegionCN470.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/mac/region/RegionCN779.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/mac/region/RegionCN779.c -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/mac/region/RegionCN779.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/mac/region/RegionCN779.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/mac/region/RegionCommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/mac/region/RegionCommon.c -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/mac/region/RegionCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/mac/region/RegionCommon.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/mac/region/RegionEU433.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/mac/region/RegionEU433.c -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/mac/region/RegionEU433.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/mac/region/RegionEU433.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/mac/region/RegionEU868.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/mac/region/RegionEU868.c -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/mac/region/RegionEU868.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/mac/region/RegionEU868.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/mac/region/RegionIN865.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/mac/region/RegionIN865.c -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/mac/region/RegionIN865.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/mac/region/RegionIN865.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/mac/region/RegionKR920.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/mac/region/RegionKR920.c -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/mac/region/RegionKR920.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/mac/region/RegionKR920.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/mac/region/RegionUS915-Hybrid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/mac/region/RegionUS915-Hybrid.c -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/mac/region/RegionUS915-Hybrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/mac/region/RegionUS915-Hybrid.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/mac/region/RegionUS915.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/mac/region/RegionUS915.c -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/mac/region/RegionUS915.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/mac/region/RegionUS915.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/radio/radio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/radio/radio.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/radio/sx1276/sx1276.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/radio/sx1276/sx1276.c -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/radio/sx1276/sx1276.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/radio/sx1276/sx1276.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/radio/sx1276/sx1276Regs-Fsk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/radio/sx1276/sx1276Regs-Fsk.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/radio/sx1276/sx1276Regs-LoRa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/radio/sx1276/sx1276Regs-LoRa.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/system/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/system/adc.c -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/system/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/system/adc.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/system/crypto/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/system/crypto/aes.c -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/system/crypto/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/system/crypto/aes.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/system/crypto/cmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/system/crypto/cmac.c -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/system/crypto/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/system/crypto/cmac.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/system/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/system/delay.c -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/system/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/system/delay.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/system/eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/system/eeprom.c -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/system/eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/system/eeprom.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/system/fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/system/fifo.c -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/system/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/system/fifo.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/system/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/system/gpio.c -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/system/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/system/gpio.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/system/gps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/system/gps.c -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/system/gps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/system/gps.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/system/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/system/i2c.c -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/system/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/system/i2c.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/system/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/system/serial.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/system/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/system/spi.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/system/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/system/timer.c -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/system/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/system/timer.h -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/system/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/system/uart.c -------------------------------------------------------------------------------- /libraries/LoRa_Node/src/system/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/LoRa_Node/src/system/uart.h -------------------------------------------------------------------------------- /libraries/Sim800L_Library_Revised/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Sim800L_Library_Revised/LICENSE -------------------------------------------------------------------------------- /libraries/Sim800L_Library_Revised/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Sim800L_Library_Revised/README.md -------------------------------------------------------------------------------- /libraries/Sim800L_Library_Revised/Sim800L.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Sim800L_Library_Revised/Sim800L.cpp -------------------------------------------------------------------------------- /libraries/Sim800L_Library_Revised/Sim800L.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Sim800L_Library_Revised/Sim800L.h -------------------------------------------------------------------------------- /libraries/Sim800L_Library_Revised/examples/GSM_Coordinates/GSM_Coordinates.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Sim800L_Library_Revised/examples/GSM_Coordinates/GSM_Coordinates.ino -------------------------------------------------------------------------------- /libraries/Sim800L_Library_Revised/examples/functionalityMode/functionalityMode.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Sim800L_Library_Revised/examples/functionalityMode/functionalityMode.ino -------------------------------------------------------------------------------- /libraries/Sim800L_Library_Revised/examples/getInformations/getInformations.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Sim800L_Library_Revised/examples/getInformations/getInformations.ino -------------------------------------------------------------------------------- /libraries/Sim800L_Library_Revised/examples/getTimeRTC/getTimeRTC.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Sim800L_Library_Revised/examples/getTimeRTC/getTimeRTC.ino -------------------------------------------------------------------------------- /libraries/Sim800L_Library_Revised/examples/readSms/readSms.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Sim800L_Library_Revised/examples/readSms/readSms.ino -------------------------------------------------------------------------------- /libraries/Sim800L_Library_Revised/examples/sendSms/sendSms.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Sim800L_Library_Revised/examples/sendSms/sendSms.ino -------------------------------------------------------------------------------- /libraries/Sim800L_Library_Revised/examples/setPin/setPin.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Sim800L_Library_Revised/examples/setPin/setPin.ino -------------------------------------------------------------------------------- /libraries/Sim800L_Library_Revised/examples/sleepMode/sleepMode.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Sim800L_Library_Revised/examples/sleepMode/sleepMode.ino -------------------------------------------------------------------------------- /libraries/Sim800L_Library_Revised/examples/updateRtcWithGSM/updateRtcWithGSM.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Sim800L_Library_Revised/examples/updateRtcWithGSM/updateRtcWithGSM.ino -------------------------------------------------------------------------------- /libraries/Sim800L_Library_Revised/images/RESET.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Sim800L_Library_Revised/images/RESET.png -------------------------------------------------------------------------------- /libraries/Sim800L_Library_Revised/images/power_supply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Sim800L_Library_Revised/images/power_supply.png -------------------------------------------------------------------------------- /libraries/Sim800L_Library_Revised/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Sim800L_Library_Revised/keywords.txt -------------------------------------------------------------------------------- /libraries/Sim800L_Library_Revised/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/Sim800L_Library_Revised/library.properties -------------------------------------------------------------------------------- /libraries/WebSockets/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/WebSockets/LICENSE -------------------------------------------------------------------------------- /libraries/WebSockets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/WebSockets/README.md -------------------------------------------------------------------------------- /libraries/WebSockets/examples/Nginx/esp8266.ssl.reverse.proxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/WebSockets/examples/Nginx/esp8266.ssl.reverse.proxy.conf -------------------------------------------------------------------------------- /libraries/WebSockets/examples/avr/WebSocketClientAVR/WebSocketClientAVR.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/WebSockets/examples/avr/WebSocketClientAVR/WebSocketClientAVR.ino -------------------------------------------------------------------------------- /libraries/WebSockets/examples/esp32/WebSocketClient/WebSocketClient.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/WebSockets/examples/esp32/WebSocketClient/WebSocketClient.ino -------------------------------------------------------------------------------- /libraries/WebSockets/examples/esp32/WebSocketClientSSL/WebSocketClientSSL.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/WebSockets/examples/esp32/WebSocketClientSSL/WebSocketClientSSL.ino -------------------------------------------------------------------------------- /libraries/WebSockets/examples/esp32/WebSocketServer/WebSocketServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/WebSockets/examples/esp32/WebSocketServer/WebSocketServer.ino -------------------------------------------------------------------------------- /libraries/WebSockets/examples/esp8266/WebSocketClient/WebSocketClient.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/WebSockets/examples/esp8266/WebSocketClient/WebSocketClient.ino -------------------------------------------------------------------------------- /libraries/WebSockets/examples/esp8266/WebSocketClientSSL/WebSocketClientSSL.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/WebSockets/examples/esp8266/WebSocketClientSSL/WebSocketClientSSL.ino -------------------------------------------------------------------------------- /libraries/WebSockets/examples/esp8266/WebSocketClientStomp/WebSocketClientStomp.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/WebSockets/examples/esp8266/WebSocketClientStomp/WebSocketClientStomp.ino -------------------------------------------------------------------------------- /libraries/WebSockets/examples/esp8266/WebSocketServer/WebSocketServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/WebSockets/examples/esp8266/WebSocketServer/WebSocketServer.ino -------------------------------------------------------------------------------- /libraries/WebSockets/examples/particle/ParticleWebSocketClient/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/WebSockets/examples/particle/ParticleWebSocketClient/application.cpp -------------------------------------------------------------------------------- /libraries/WebSockets/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/WebSockets/library.json -------------------------------------------------------------------------------- /libraries/WebSockets/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/WebSockets/library.properties -------------------------------------------------------------------------------- /libraries/WebSockets/src/SocketIOclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/WebSockets/src/SocketIOclient.cpp -------------------------------------------------------------------------------- /libraries/WebSockets/src/SocketIOclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/WebSockets/src/SocketIOclient.h -------------------------------------------------------------------------------- /libraries/WebSockets/src/WebSockets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/WebSockets/src/WebSockets.cpp -------------------------------------------------------------------------------- /libraries/WebSockets/src/WebSockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/WebSockets/src/WebSockets.h -------------------------------------------------------------------------------- /libraries/WebSockets/src/WebSocketsClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/WebSockets/src/WebSocketsClient.cpp -------------------------------------------------------------------------------- /libraries/WebSockets/src/WebSocketsClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/WebSockets/src/WebSocketsClient.h -------------------------------------------------------------------------------- /libraries/WebSockets/src/WebSocketsServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/WebSockets/src/WebSocketsServer.cpp -------------------------------------------------------------------------------- /libraries/WebSockets/src/WebSocketsServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/WebSockets/src/WebSocketsServer.h -------------------------------------------------------------------------------- /libraries/WebSockets/src/libb64/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/WebSockets/src/libb64/AUTHORS -------------------------------------------------------------------------------- /libraries/WebSockets/src/libb64/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/WebSockets/src/libb64/LICENSE -------------------------------------------------------------------------------- /libraries/WebSockets/src/libb64/cdecode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/WebSockets/src/libb64/cdecode.c -------------------------------------------------------------------------------- /libraries/WebSockets/src/libb64/cdecode_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/WebSockets/src/libb64/cdecode_inc.h -------------------------------------------------------------------------------- /libraries/WebSockets/src/libb64/cencode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/WebSockets/src/libb64/cencode.c -------------------------------------------------------------------------------- /libraries/WebSockets/src/libb64/cencode_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/WebSockets/src/libb64/cencode_inc.h -------------------------------------------------------------------------------- /libraries/WebSockets/src/libsha1/libsha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/WebSockets/src/libsha1/libsha1.c -------------------------------------------------------------------------------- /libraries/WebSockets/src/libsha1/libsha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/WebSockets/src/libsha1/libsha1.h -------------------------------------------------------------------------------- /libraries/WebSockets/tests/webSocket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/WebSockets/tests/webSocket.html -------------------------------------------------------------------------------- /libraries/WebSockets/tests/webSocketServer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/WebSockets/tests/webSocketServer/index.js -------------------------------------------------------------------------------- /libraries/WebSockets/tests/webSocketServer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/WebSockets/tests/webSocketServer/package.json -------------------------------------------------------------------------------- /libraries/WebSockets/travis/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/WebSockets/travis/common.sh -------------------------------------------------------------------------------- /libraries/artnet-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/artnet-master/.gitignore -------------------------------------------------------------------------------- /libraries/artnet-master/Artnet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/artnet-master/Artnet.cpp -------------------------------------------------------------------------------- /libraries/artnet-master/Artnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/artnet-master/Artnet.h -------------------------------------------------------------------------------- /libraries/artnet-master/Artnet.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/artnet-master/Artnet.sublime-project -------------------------------------------------------------------------------- /libraries/artnet-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/artnet-master/LICENSE -------------------------------------------------------------------------------- /libraries/artnet-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/artnet-master/README.md -------------------------------------------------------------------------------- /libraries/artnet-master/examples/Basic/ArtnetReceive/ArtnetReceive.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/artnet-master/examples/Basic/ArtnetReceive/ArtnetReceive.ino -------------------------------------------------------------------------------- /libraries/artnet-master/examples/Basic/ArtnetReceiveCallback/ArtnetReceiveCallback.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/artnet-master/examples/Basic/ArtnetReceiveCallback/ArtnetReceiveCallback.ino -------------------------------------------------------------------------------- /libraries/artnet-master/examples/ESP/ArtnetNeoPixelESPSync/ArtnetNeoPixelESPSync.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/artnet-master/examples/ESP/ArtnetNeoPixelESPSync/ArtnetNeoPixelESPSync.ino -------------------------------------------------------------------------------- /libraries/artnet-master/examples/ESP/ArtnetReceiveESP/ArtnetReceiveESP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/artnet-master/examples/ESP/ArtnetReceiveESP/ArtnetReceiveESP.ino -------------------------------------------------------------------------------- /libraries/artnet-master/examples/NeoPixel/ArtnetNeoPixel/ArtnetNeoPixel.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/artnet-master/examples/NeoPixel/ArtnetNeoPixel/ArtnetNeoPixel.ino -------------------------------------------------------------------------------- /libraries/artnet-master/examples/NeoPixel/ArtnetNeoPixelRGBW/ArtnetNeoPixelRGBW.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/artnet-master/examples/NeoPixel/ArtnetNeoPixelRGBW/ArtnetNeoPixelRGBW.ino -------------------------------------------------------------------------------- /libraries/artnet-master/examples/NeoPixel/ArtnetNeoPixelSD/ArtnetNeoPixelSD.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/artnet-master/examples/NeoPixel/ArtnetNeoPixelSD/ArtnetNeoPixelSD.ino -------------------------------------------------------------------------------- /libraries/artnet-master/examples/NeoPixel/ArtnetNeoPixelSync/ArtnetNeoPixelSync.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/artnet-master/examples/NeoPixel/ArtnetNeoPixelSync/ArtnetNeoPixelSync.ino -------------------------------------------------------------------------------- /libraries/artnet-master/examples/OctoWS2811/ArtnetOctoWS2811/ArtnetOctoWS2811.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/artnet-master/examples/OctoWS2811/ArtnetOctoWS2811/ArtnetOctoWS2811.ino -------------------------------------------------------------------------------- /libraries/artnet-master/examples/exampleArtnet/exampleArtnet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/artnet-master/examples/exampleArtnet/exampleArtnet.ino -------------------------------------------------------------------------------- /libraries/artnet-master/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/artnet-master/keywords.txt -------------------------------------------------------------------------------- /libraries/newdriveri2s-master/DMABuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/newdriveri2s-master/DMABuffer.h -------------------------------------------------------------------------------- /libraries/newdriveri2s-master/I2S - Copy.cpp.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/newdriveri2s-master/I2S - Copy.cpp.5 -------------------------------------------------------------------------------- /libraries/newdriveri2s-master/I2S - Copy.h.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/newdriveri2s-master/I2S - Copy.h.5 -------------------------------------------------------------------------------- /libraries/newdriveri2s-master/I2S - Copy.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/newdriveri2s-master/I2S - Copy.old -------------------------------------------------------------------------------- /libraries/newdriveri2s-master/I2S.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/newdriveri2s-master/I2S.cpp -------------------------------------------------------------------------------- /libraries/newdriveri2s-master/I2S.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/newdriveri2s-master/I2S.h -------------------------------------------------------------------------------- /libraries/newdriveri2s-master/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/newdriveri2s-master/Log.h -------------------------------------------------------------------------------- /libraries/newdriveri2s-master/README.md: -------------------------------------------------------------------------------- 1 | # newdriveri2s 2 | -------------------------------------------------------------------------------- /libraries/newdriveri2s-master/examples/testI2S/testI2S.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/newdriveri2s-master/examples/testI2S/testI2S.ino -------------------------------------------------------------------------------- /libraries/newdriveri2s-master/fontamstrad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/newdriveri2s-master/fontamstrad.h -------------------------------------------------------------------------------- /libraries/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/libraries/readme.txt -------------------------------------------------------------------------------- /sketch_apr17a/sketch_apr17a.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/sketch_apr17a/sketch_apr17a.ino -------------------------------------------------------------------------------- /sketch_apr30a/sketch_apr30a.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/sketch_apr30a/sketch_apr30a.ino -------------------------------------------------------------------------------- /sketch_aug09a/sketch_aug09a.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/sketch_aug09a/sketch_aug09a.ino -------------------------------------------------------------------------------- /sketch_jul28a/sketch_jul28a.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/sketch_jul28a/sketch_jul28a.ino -------------------------------------------------------------------------------- /sketch_may01a/sketch_may01a.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/sketch_may01a/sketch_may01a.ino -------------------------------------------------------------------------------- /testI2S/testI2S.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/testI2S/testI2S.ino -------------------------------------------------------------------------------- /tools/EspExceptionDecoder/tool/EspExceptionDecoder.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpwit/drieversVirtualspins/HEAD/tools/EspExceptionDecoder/tool/EspExceptionDecoder.jar --------------------------------------------------------------------------------