├── .github └── FUNDING.yml ├── .travis.yml ├── LICENSE ├── New_car.ino ├── NodeMcu V3 Lua ESP8266 WIFI └── sketch_aug19a.ino ├── README.md ├── libraries ├── Bridge │ ├── README.adoc │ ├── examples │ │ ├── Bridge │ │ │ └── Bridge.ino │ │ ├── ConsoleAsciiTable │ │ │ └── ConsoleAsciiTable.ino │ │ ├── ConsolePixel │ │ │ └── ConsolePixel.ino │ │ ├── ConsoleRead │ │ │ └── ConsoleRead.ino │ │ ├── Datalogger │ │ │ └── Datalogger.ino │ │ ├── FileWriteScript │ │ │ └── FileWriteScript.ino │ │ ├── HttpClient │ │ │ └── HttpClient.ino │ │ ├── MailboxReadMessage │ │ │ └── MailboxReadMessage.ino │ │ ├── Process │ │ │ └── Process.ino │ │ ├── ShellCommands │ │ │ └── ShellCommands.ino │ │ ├── SpacebrewYun │ │ │ ├── inputOutput │ │ │ │ └── inputOutput.ino │ │ │ ├── spacebrewBoolean │ │ │ │ └── spacebrewBoolean.ino │ │ │ ├── spacebrewRange │ │ │ │ └── spacebrewRange.ino │ │ │ └── spacebrewString │ │ │ │ └── spacebrewString.ino │ │ ├── TemperatureWebPanel │ │ │ ├── TemperatureWebPanel.ino │ │ │ └── www │ │ │ │ ├── index.html │ │ │ │ └── zepto.min.js │ │ ├── TimeCheck │ │ │ └── TimeCheck.ino │ │ ├── WiFiStatus │ │ │ └── WiFiStatus.ino │ │ └── YunSerialTerminal │ │ │ └── YunSerialTerminal.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── Bridge.cpp │ │ ├── Bridge.h │ │ ├── BridgeClient.cpp │ │ ├── BridgeClient.h │ │ ├── BridgeServer.cpp │ │ ├── BridgeServer.h │ │ ├── BridgeUdp.cpp │ │ ├── BridgeUdp.h │ │ ├── Console.cpp │ │ ├── Console.h │ │ ├── FileIO.cpp │ │ ├── FileIO.h │ │ ├── HttpClient.cpp │ │ ├── HttpClient.h │ │ ├── Mailbox.cpp │ │ ├── Mailbox.h │ │ ├── Process.cpp │ │ ├── Process.h │ │ ├── YunClient.h │ │ └── YunServer.h ├── DHT │ ├── DHT.cpp │ ├── DHT.h │ ├── README.md │ ├── examples │ │ └── DHTtester │ │ │ └── DHTtester.ino │ ├── keywords.txt │ └── library.properties ├── Esplora │ ├── README.adoc │ ├── examples │ │ ├── Beginners │ │ │ ├── EsploraAccelerometer │ │ │ │ └── EsploraAccelerometer.ino │ │ │ ├── EsploraBlink │ │ │ │ └── EsploraBlink.ino │ │ │ ├── EsploraJoystickMouse │ │ │ │ └── EsploraJoystickMouse.ino │ │ │ ├── EsploraLedShow │ │ │ │ └── EsploraLedShow.ino │ │ │ ├── EsploraLedShow2 │ │ │ │ └── EsploraLedShow2.ino │ │ │ ├── EsploraLightCalibrator │ │ │ │ └── EsploraLightCalibrator.ino │ │ │ ├── EsploraMusic │ │ │ │ └── EsploraMusic.ino │ │ │ ├── EsploraSoundSensor │ │ │ │ └── EsploraSoundSensor.ino │ │ │ └── EsploraTemperatureSensor │ │ │ │ └── EsploraTemperatureSensor.ino │ │ └── Experts │ │ │ ├── EsploraKart │ │ │ └── EsploraKart.ino │ │ │ ├── EsploraPong │ │ │ └── EsploraPong.ino │ │ │ ├── EsploraRemote │ │ │ └── EsploraRemote.ino │ │ │ └── EsploraTable │ │ │ └── EsploraTable.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── Esplora.cpp │ │ └── Esplora.h ├── Ethernet │ ├── README.adoc │ ├── examples │ │ ├── AdvancedChatServer │ │ │ └── AdvancedChatServer.ino │ │ ├── BarometricPressureWebServer │ │ │ └── BarometricPressureWebServer.ino │ │ ├── ChatServer │ │ │ └── ChatServer.ino │ │ ├── DhcpAddressPrinter │ │ │ └── DhcpAddressPrinter.ino │ │ ├── DhcpChatServer │ │ │ └── DhcpChatServer.ino │ │ ├── TelnetClient │ │ │ └── TelnetClient.ino │ │ ├── UDPSendReceiveString │ │ │ └── UDPSendReceiveString.ino │ │ ├── UdpNtpClient │ │ │ └── UdpNtpClient.ino │ │ ├── WebClient │ │ │ └── WebClient.ino │ │ ├── WebClientRepeating │ │ │ └── WebClientRepeating.ino │ │ └── WebServer │ │ │ └── WebServer.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── Dhcp.cpp │ │ ├── Dhcp.h │ │ ├── Dns.cpp │ │ ├── Dns.h │ │ ├── Ethernet.cpp │ │ ├── Ethernet.h │ │ ├── EthernetClient.cpp │ │ ├── EthernetClient.h │ │ ├── EthernetServer.cpp │ │ ├── EthernetServer.h │ │ ├── EthernetUdp.cpp │ │ ├── EthernetUdp.h │ │ └── utility │ │ ├── socket.cpp │ │ ├── socket.h │ │ ├── util.h │ │ ├── w5100.cpp │ │ └── w5100.h ├── Firmata │ ├── .gitignore │ ├── Boards.h │ ├── Firmata.cpp │ ├── Firmata.h │ ├── examples │ │ ├── AllInputsFirmata │ │ │ └── AllInputsFirmata.ino │ │ ├── AnalogFirmata │ │ │ └── AnalogFirmata.ino │ │ ├── EchoString │ │ │ └── EchoString.ino │ │ ├── OldStandardFirmata │ │ │ ├── LICENSE.txt │ │ │ └── OldStandardFirmata.ino │ │ ├── ServoFirmata │ │ │ └── ServoFirmata.ino │ │ ├── SimpleAnalogFirmata │ │ │ └── SimpleAnalogFirmata.ino │ │ ├── SimpleDigitalFirmata │ │ │ └── SimpleDigitalFirmata.ino │ │ ├── StandardFirmata │ │ │ ├── LICENSE.txt │ │ │ └── StandardFirmata.ino │ │ ├── StandardFirmataChipKIT │ │ │ ├── LICENSE.txt │ │ │ └── StandardFirmataChipKIT.ino │ │ ├── StandardFirmataEthernet │ │ │ ├── LICENSE.txt │ │ │ └── StandardFirmataEthernet.ino │ │ ├── StandardFirmataEthernetPlus │ │ │ ├── LICENSE.txt │ │ │ └── StandardFirmataEthernetPlus.ino │ │ └── StandardFirmataPlus │ │ │ ├── LICENSE.txt │ │ │ └── StandardFirmataPlus.ino │ ├── extras │ │ ├── LICENSE.txt │ │ └── revisions.txt │ ├── keywords.txt │ ├── library.properties │ ├── readme.md │ ├── release.sh │ ├── test │ │ ├── firmata_test │ │ │ └── firmata_test.ino │ │ └── readme.md │ └── utility │ │ ├── EthernetClientStream.cpp │ │ ├── EthernetClientStream.h │ │ ├── firmataDebug.h │ │ └── serialUtils.h ├── GSM │ ├── README.adoc │ ├── examples │ │ ├── GsmWebClient │ │ │ └── GsmWebClient.ino │ │ ├── GsmWebServer │ │ │ └── GsmWebServer.ino │ │ ├── MakeVoiceCall │ │ │ └── MakeVoiceCall.ino │ │ ├── ReceiveSMS │ │ │ └── ReceiveSMS.ino │ │ ├── ReceiveVoiceCall │ │ │ └── ReceiveVoiceCall.ino │ │ ├── SendSMS │ │ │ └── SendSMS.ino │ │ └── Tools │ │ │ ├── BandManagement │ │ │ └── BandManagement.ino │ │ │ ├── GsmScanNetworks │ │ │ └── GsmScanNetworks.ino │ │ │ ├── PinManagement │ │ │ └── PinManagement.ino │ │ │ ├── TestGPRS │ │ │ └── TestGPRS.ino │ │ │ ├── TestModem │ │ │ └── TestModem.ino │ │ │ └── TestWebServer │ │ │ └── TestWebServer.ino │ ├── extras │ │ └── License.txt │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── GSM.h │ │ ├── GSM3CircularBuffer.cpp │ │ ├── GSM3CircularBuffer.h │ │ ├── GSM3IO.h │ │ ├── GSM3MobileAccessProvider.cpp │ │ ├── GSM3MobileAccessProvider.h │ │ ├── GSM3MobileCellManagement.cpp │ │ ├── GSM3MobileCellManagement.h │ │ ├── GSM3MobileClientProvider.cpp │ │ ├── GSM3MobileClientProvider.h │ │ ├── GSM3MobileClientService.cpp │ │ ├── GSM3MobileClientService.h │ │ ├── GSM3MobileDataNetworkProvider.cpp │ │ ├── GSM3MobileDataNetworkProvider.h │ │ ├── GSM3MobileMockupProvider.cpp │ │ ├── GSM3MobileMockupProvider.h │ │ ├── GSM3MobileNetworkProvider.cpp │ │ ├── GSM3MobileNetworkProvider.h │ │ ├── GSM3MobileNetworkRegistry.cpp │ │ ├── GSM3MobileNetworkRegistry.h │ │ ├── GSM3MobileSMSProvider.cpp │ │ ├── GSM3MobileSMSProvider.h │ │ ├── GSM3MobileServerProvider.cpp │ │ ├── GSM3MobileServerProvider.h │ │ ├── GSM3MobileServerService.cpp │ │ ├── GSM3MobileServerService.h │ │ ├── GSM3MobileVoiceProvider.cpp │ │ ├── GSM3MobileVoiceProvider.h │ │ ├── GSM3SMSService.cpp │ │ ├── GSM3SMSService.h │ │ ├── GSM3ShieldV1.cpp │ │ ├── GSM3ShieldV1.h │ │ ├── GSM3ShieldV1AccessProvider.cpp │ │ ├── GSM3ShieldV1AccessProvider.h │ │ ├── GSM3ShieldV1BandManagement.cpp │ │ ├── GSM3ShieldV1BandManagement.h │ │ ├── GSM3ShieldV1BaseProvider.cpp │ │ ├── GSM3ShieldV1BaseProvider.h │ │ ├── GSM3ShieldV1CellManagement.cpp │ │ ├── GSM3ShieldV1CellManagement.h │ │ ├── GSM3ShieldV1ClientProvider.cpp │ │ ├── GSM3ShieldV1ClientProvider.h │ │ ├── GSM3ShieldV1DataNetworkProvider.cpp │ │ ├── GSM3ShieldV1DataNetworkProvider.h │ │ ├── GSM3ShieldV1DirectModemProvider.cpp │ │ ├── GSM3ShieldV1DirectModemProvider.h │ │ ├── GSM3ShieldV1ModemCore.cpp │ │ ├── GSM3ShieldV1ModemCore.h │ │ ├── GSM3ShieldV1ModemVerification.cpp │ │ ├── GSM3ShieldV1ModemVerification.h │ │ ├── GSM3ShieldV1MultiClientProvider.cpp │ │ ├── GSM3ShieldV1MultiClientProvider.h │ │ ├── GSM3ShieldV1MultiServerProvider.cpp │ │ ├── GSM3ShieldV1MultiServerProvider.h │ │ ├── GSM3ShieldV1PinManagement.cpp │ │ ├── GSM3ShieldV1PinManagement.h │ │ ├── GSM3ShieldV1SMSProvider.cpp │ │ ├── GSM3ShieldV1SMSProvider.h │ │ ├── GSM3ShieldV1ScanNetworks.cpp │ │ ├── GSM3ShieldV1ScanNetworks.h │ │ ├── GSM3ShieldV1ServerProvider.cpp │ │ ├── GSM3ShieldV1ServerProvider.h │ │ ├── GSM3ShieldV1VoiceProvider.cpp │ │ ├── GSM3ShieldV1VoiceProvider.h │ │ ├── GSM3SoftSerial.cpp │ │ ├── GSM3SoftSerial.h │ │ ├── GSM3VoiceCallService.cpp │ │ └── GSM3VoiceCallService.h ├── Keyboard │ ├── README.adoc │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── Keyboard.cpp │ │ └── Keyboard.h ├── LiquidCrystal_I2C │ ├── FastIO.cpp │ ├── FastIO.h │ ├── I2CIO.cpp │ ├── I2CIO.h │ ├── LCD.cpp │ ├── LCD.h │ ├── LiquidCrystal.cpp │ ├── LiquidCrystal.h │ ├── LiquidCrystal_I2C.cpp │ ├── LiquidCrystal_I2C.h │ ├── LiquidCrystal_I2C_ByVac.cpp │ ├── LiquidCrystal_I2C_ByVac.h │ ├── LiquidCrystal_SI2C.cpp │ ├── LiquidCrystal_SI2C.h │ ├── LiquidCrystal_SR.cpp │ ├── LiquidCrystal_SR.h │ ├── LiquidCrystal_SR1W.cpp │ ├── LiquidCrystal_SR1W.h │ ├── LiquidCrystal_SR2W.cpp │ ├── LiquidCrystal_SR2W.h │ ├── LiquidCrystal_SR3W.cpp │ ├── LiquidCrystal_SR3W.h │ ├── README.md │ ├── SI2CIO.cpp │ ├── SI2CIO.h │ ├── SoftI2CMaster.h │ ├── def │ │ └── doxygen.def │ ├── doxygen_entrydb_2806.tmp │ ├── doxygen_objdb_2806.tmp │ ├── examples │ │ ├── HelloWorld_4bit │ │ │ └── HelloWorld_4bit.pde │ │ ├── HelloWorld_SR │ │ │ └── HelloWorld_SR.pde │ │ ├── HelloWorld_byVac │ │ │ └── HelloWorld_byVac.ino │ │ ├── HelloWorld_i2c │ │ │ └── HelloWorld_i2c.pde │ │ ├── HelloWorld_si2c │ │ │ └── HelloWorld_si2c.ino │ │ ├── LCDiSpeed │ │ │ ├── LCDiSpeed.pde │ │ │ └── LCDiSpeed.txt │ │ ├── SerialDisplay │ │ │ └── SerialDisplay.pde │ │ ├── i2cLCDextraIO │ │ │ └── i2cLCDextraIO.pde │ │ ├── i2cLCDextraIO_tempLeonardo │ │ │ └── i2cLCDextraIO_tempLeonardo.ino │ │ └── performanceLCD │ │ │ └── performanceLCD.pde │ ├── keywords.txt │ ├── thirdparty libraries │ │ ├── SoftI2CMaster │ │ │ ├── README.md │ │ │ ├── SoftI2CMaster.h │ │ │ ├── examples │ │ │ │ ├── BMA020Soft │ │ │ │ │ └── BMA020Soft.ino │ │ │ │ ├── Eeprom24AA1024Soft │ │ │ │ │ └── Eeprom24AA1024Soft.ino │ │ │ │ ├── I2CScanSoft │ │ │ │ │ └── I2CScanSoft.ino │ │ │ │ ├── MLX90614Soft │ │ │ │ │ └── MLX90614Soft.ino │ │ │ │ ├── TSL2561Soft │ │ │ │ │ ├── TSL2561Soft.h │ │ │ │ │ └── TSL2561Soft.ino │ │ │ │ └── stretchTest │ │ │ │ │ └── stretchTest.ino │ │ │ └── license.txt │ │ └── SoftI2CMaster_ │ │ │ ├── SoftI2CMaster.cpp │ │ │ ├── SoftI2CMaster.h │ │ │ └── SoftI2CMaster_LICENSE.txt │ └── utility │ │ └── docs │ │ ├── Doxyfile │ │ ├── def │ │ ├── doxygen.def │ │ └── doxygen.def.txt │ │ └── html │ │ ├── _fast_i_o_8cpp.html │ │ ├── _fast_i_o_8cpp_source.html │ │ ├── _fast_i_o_8h.html │ │ ├── _fast_i_o_8h_source.html │ │ ├── _i2_c_i_o_8cpp.html │ │ ├── _i2_c_i_o_8cpp_source.html │ │ ├── _i2_c_i_o_8h.html │ │ ├── _i2_c_i_o_8h_source.html │ │ ├── _l_c_d_8cpp.html │ │ ├── _l_c_d_8cpp_source.html │ │ ├── _l_c_d_8h.html │ │ ├── _l_c_d_8h_source.html │ │ ├── _liquid_crystal_8cpp.html │ │ ├── _liquid_crystal_8cpp_source.html │ │ ├── _liquid_crystal_8h.html │ │ ├── _liquid_crystal_8h_source.html │ │ ├── _liquid_crystal___i2_c_8cpp.html │ │ ├── _liquid_crystal___i2_c_8cpp_source.html │ │ ├── _liquid_crystal___i2_c_8h.html │ │ ├── _liquid_crystal___i2_c_8h_source.html │ │ ├── _liquid_crystal___i2_c___by_vac_8cpp.html │ │ ├── _liquid_crystal___i2_c___by_vac_8cpp_source.html │ │ ├── _liquid_crystal___i2_c___by_vac_8h.html │ │ ├── _liquid_crystal___i2_c___by_vac_8h_source.html │ │ ├── _liquid_crystal___s_i2_c_8h_source.html │ │ ├── _liquid_crystal___s_r1_w_8cpp.html │ │ ├── _liquid_crystal___s_r1_w_8cpp_source.html │ │ ├── _liquid_crystal___s_r1_w_8h.html │ │ ├── _liquid_crystal___s_r1_w_8h_source.html │ │ ├── _liquid_crystal___s_r2_w_8cpp.html │ │ ├── _liquid_crystal___s_r2_w_8cpp_source.html │ │ ├── _liquid_crystal___s_r2_w_8h.html │ │ ├── _liquid_crystal___s_r2_w_8h_source.html │ │ ├── _liquid_crystal___s_r3_w_8cpp.html │ │ ├── _liquid_crystal___s_r3_w_8cpp_source.html │ │ ├── _liquid_crystal___s_r3_w_8h.html │ │ ├── _liquid_crystal___s_r3_w_8h_source.html │ │ ├── _liquid_crystal___s_r_8cpp.html │ │ ├── _liquid_crystal___s_r_8cpp_source.html │ │ ├── _liquid_crystal___s_r_8h.html │ │ ├── _liquid_crystal___s_r_8h_source.html │ │ ├── _liquid_crystal___s_r___l_c_d3_8cpp.html │ │ ├── _liquid_crystal___s_r___l_c_d3_8cpp_source.html │ │ ├── _liquid_crystal___s_r___l_c_d3_8h.html │ │ ├── _liquid_crystal___s_r___l_c_d3_8h_source.html │ │ ├── _s_i2_c_i_o_8h_source.html │ │ ├── _soft_i2_c_master_8h_source.html │ │ ├── annotated.html │ │ ├── annotated_dup.js │ │ ├── arrowdown.png │ │ ├── arrowright.png │ │ ├── bc_s.png │ │ ├── bdwn.png │ │ ├── class_i2_c_i_o-members.html │ │ ├── class_i2_c_i_o.html │ │ ├── class_i2_c_i_o.js │ │ ├── class_l_c_d-members.html │ │ ├── class_l_c_d.html │ │ ├── class_l_c_d.js │ │ ├── class_l_c_d.png │ │ ├── class_liquid_crystal-members.html │ │ ├── class_liquid_crystal.html │ │ ├── class_liquid_crystal.js │ │ ├── class_liquid_crystal.png │ │ ├── class_liquid_crystal___i2_c-members.html │ │ ├── class_liquid_crystal___i2_c.html │ │ ├── class_liquid_crystal___i2_c.js │ │ ├── class_liquid_crystal___i2_c.png │ │ ├── class_liquid_crystal___i2_c___by_vac-members.html │ │ ├── class_liquid_crystal___i2_c___by_vac.html │ │ ├── class_liquid_crystal___i2_c___by_vac.js │ │ ├── class_liquid_crystal___i2_c___by_vac.png │ │ ├── class_liquid_crystal___s_i2_c-members.html │ │ ├── class_liquid_crystal___s_i2_c.html │ │ ├── class_liquid_crystal___s_i2_c.js │ │ ├── class_liquid_crystal___s_i2_c.png │ │ ├── class_liquid_crystal___s_r-members.html │ │ ├── class_liquid_crystal___s_r.html │ │ ├── class_liquid_crystal___s_r.js │ │ ├── class_liquid_crystal___s_r.png │ │ ├── class_liquid_crystal___s_r1_w-members.html │ │ ├── class_liquid_crystal___s_r1_w.html │ │ ├── class_liquid_crystal___s_r1_w.js │ │ ├── class_liquid_crystal___s_r1_w.png │ │ ├── class_liquid_crystal___s_r2_w-members.html │ │ ├── class_liquid_crystal___s_r2_w.html │ │ ├── class_liquid_crystal___s_r2_w.js │ │ ├── class_liquid_crystal___s_r2_w.png │ │ ├── class_liquid_crystal___s_r3_w-members.html │ │ ├── class_liquid_crystal___s_r3_w.html │ │ ├── class_liquid_crystal___s_r3_w.js │ │ ├── class_liquid_crystal___s_r3_w.png │ │ ├── class_liquid_crystal___s_r___l_c_d3-members.html │ │ ├── class_liquid_crystal___s_r___l_c_d3.html │ │ ├── class_liquid_crystal___s_r___l_c_d3.png │ │ ├── class_s_i2_c_i_o-members.html │ │ ├── class_s_i2_c_i_o.html │ │ ├── class_s_i2_c_i_o.js │ │ ├── class_soft_i2_c_master-members.html │ │ ├── class_soft_i2_c_master.html │ │ ├── class_soft_i2_c_master.js │ │ ├── classes.html │ │ ├── closed.png │ │ ├── doc.png │ │ ├── doxygen.css │ │ ├── doxygen.png │ │ ├── dynsections.js │ │ ├── files.html │ │ ├── files.js │ │ ├── folderclosed.png │ │ ├── folderopen.png │ │ ├── ftv2blank.png │ │ ├── ftv2doc.png │ │ ├── ftv2folderclosed.png │ │ ├── ftv2folderopen.png │ │ ├── ftv2lastnode.png │ │ ├── ftv2link.png │ │ ├── ftv2mlastnode.png │ │ ├── ftv2mnode.png │ │ ├── ftv2node.png │ │ ├── ftv2plastnode.png │ │ ├── ftv2pnode.png │ │ ├── ftv2splitbar.png │ │ ├── ftv2vertline.png │ │ ├── functions.html │ │ ├── functions_func.html │ │ ├── functions_vars.html │ │ ├── globals.html │ │ ├── globals_defs.html │ │ ├── globals_enum.html │ │ ├── globals_eval.html │ │ ├── globals_func.html │ │ ├── globals_type.html │ │ ├── hierarchy.html │ │ ├── hierarchy.js │ │ ├── index.html │ │ ├── installdox │ │ ├── jquery.js │ │ ├── logoGoogle.jpg │ │ ├── md___users_fmalpartida__documents_development_mercurial_repos__s_w__newliquid_crystal__r_e_a_d_m_e.html │ │ ├── nav_f.png │ │ ├── nav_g.png │ │ ├── nav_h.png │ │ ├── navtree.css │ │ ├── navtree.js │ │ ├── navtreedata.js │ │ ├── navtreeindex0.js │ │ ├── open.png │ │ ├── pages.html │ │ ├── resize.js │ │ ├── search │ │ ├── all_0.html │ │ ├── all_0.js │ │ ├── all_1.html │ │ ├── all_1.js │ │ ├── all_2.html │ │ ├── all_2.js │ │ ├── all_3.html │ │ ├── all_3.js │ │ ├── all_4.html │ │ ├── all_4.js │ │ ├── all_5.html │ │ ├── all_5.js │ │ ├── all_5f.html │ │ ├── all_6.html │ │ ├── all_6.js │ │ ├── all_61.html │ │ ├── all_62.html │ │ ├── all_63.html │ │ ├── all_64.html │ │ ├── all_65.html │ │ ├── all_66.html │ │ ├── all_68.html │ │ ├── all_69.html │ │ ├── all_6c.html │ │ ├── all_6d.html │ │ ├── all_6e.html │ │ ├── all_6f.html │ │ ├── all_7.html │ │ ├── all_7.js │ │ ├── all_70.html │ │ ├── all_72.html │ │ ├── all_73.html │ │ ├── all_74.html │ │ ├── all_77.html │ │ ├── all_8.html │ │ ├── all_8.js │ │ ├── all_9.html │ │ ├── all_9.js │ │ ├── all_a.html │ │ ├── all_a.js │ │ ├── all_b.html │ │ ├── all_b.js │ │ ├── all_c.html │ │ ├── all_c.js │ │ ├── all_d.html │ │ ├── all_d.js │ │ ├── classes_0.html │ │ ├── classes_0.js │ │ ├── classes_1.html │ │ ├── classes_1.js │ │ ├── classes_2.html │ │ ├── classes_2.js │ │ ├── classes_69.html │ │ ├── classes_6c.html │ │ ├── close.png │ │ ├── defines_5f.html │ │ ├── defines_61.html │ │ ├── defines_62.html │ │ ├── defines_63.html │ │ ├── defines_64.html │ │ ├── defines_65.html │ │ ├── defines_66.html │ │ ├── defines_68.html │ │ ├── defines_6c.html │ │ ├── defines_72.html │ │ ├── defines_73.html │ │ ├── defines_74.html │ │ ├── enums_74.html │ │ ├── enumvalues_68.html │ │ ├── enumvalues_6e.html │ │ ├── enumvalues_70.html │ │ ├── enumvalues_73.html │ │ ├── files_66.html │ │ ├── files_69.html │ │ ├── files_6c.html │ │ ├── functions_0.html │ │ ├── functions_0.js │ │ ├── functions_1.html │ │ ├── functions_1.js │ │ ├── functions_2.html │ │ ├── functions_2.js │ │ ├── functions_3.html │ │ ├── functions_3.js │ │ ├── functions_4.html │ │ ├── functions_4.js │ │ ├── functions_5.html │ │ ├── functions_5.js │ │ ├── functions_6.html │ │ ├── functions_6.js │ │ ├── functions_61.html │ │ ├── functions_62.html │ │ ├── functions_63.html │ │ ├── functions_64.html │ │ ├── functions_65.html │ │ ├── functions_66.html │ │ ├── functions_68.html │ │ ├── functions_69.html │ │ ├── functions_6c.html │ │ ├── functions_6d.html │ │ ├── functions_6e.html │ │ ├── functions_6f.html │ │ ├── functions_7.html │ │ ├── functions_7.js │ │ ├── functions_70.html │ │ ├── functions_72.html │ │ ├── functions_73.html │ │ ├── functions_77.html │ │ ├── functions_8.html │ │ ├── functions_8.js │ │ ├── functions_9.html │ │ ├── functions_9.js │ │ ├── functions_a.html │ │ ├── functions_a.js │ │ ├── functions_b.html │ │ ├── functions_b.js │ │ ├── functions_c.html │ │ ├── functions_c.js │ │ ├── functions_d.html │ │ ├── functions_d.js │ │ ├── mag_sel.png │ │ ├── nomatches.html │ │ ├── pages_0.html │ │ ├── pages_0.js │ │ ├── search.css │ │ ├── search.js │ │ ├── search_l.png │ │ ├── search_m.png │ │ ├── search_r.png │ │ ├── searchdata.js │ │ ├── typedefs_66.html │ │ └── variables_5f.html │ │ ├── splitbar.png │ │ ├── sync_off.png │ │ ├── sync_on.png │ │ ├── tab_a.png │ │ ├── tab_b.png │ │ ├── tab_h.png │ │ ├── tab_s.png │ │ └── tabs.css ├── Mouse │ ├── README.adoc │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── Mouse.cpp │ │ └── Mouse.h ├── NewPing │ ├── NewPing.cpp │ ├── NewPing.h │ ├── examples │ │ ├── NewPing15Sensors │ │ │ └── NewPing15Sensors.pde │ │ ├── NewPingEventTimer │ │ │ └── NewPingEventTimer.pde │ │ ├── NewPingExample │ │ │ └── NewPingExample.pde │ │ └── TimerExample │ │ │ └── TimerExample.pde │ └── keywords.txt ├── RobotIRremote │ ├── README.adoc │ ├── extras │ │ ├── LICENSE.txt │ │ └── readme │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── IRremote.cpp │ │ ├── IRremote.h │ │ ├── IRremoteInt.h │ │ ├── IRremoteTools.cpp │ │ └── IRremoteTools.h ├── Robot_Control │ ├── README.adoc │ ├── examples │ │ ├── explore │ │ │ ├── R01_Logo │ │ │ │ └── R01_Logo.ino │ │ │ ├── R02_Line_Follow │ │ │ │ └── R02_Line_Follow.ino │ │ │ ├── R03_Disco_Bot │ │ │ │ └── R03_Disco_Bot.ino │ │ │ ├── R04_Compass │ │ │ │ └── R04_Compass.ino │ │ │ ├── R05_Inputs │ │ │ │ └── R05_Inputs.ino │ │ │ ├── R06_Wheel_Calibration │ │ │ │ ├── R06_Wheel_Calibration.ino │ │ │ │ └── scripts_library.h │ │ │ ├── R07_Runaway_Robot │ │ │ │ └── R07_Runaway_Robot.ino │ │ │ ├── R08_Remote_Control │ │ │ │ └── R08_Remote_Control.ino │ │ │ ├── R09_Picture_Browser │ │ │ │ └── R09_Picture_Browser.ino │ │ │ ├── R10_Rescue │ │ │ │ └── R10_Rescue.ino │ │ │ └── R11_Hello_User │ │ │ │ └── R11_Hello_User.ino │ │ └── learn │ │ │ ├── AllIOPorts │ │ │ └── AllIOPorts.ino │ │ │ ├── Beep │ │ │ └── Beep.ino │ │ │ ├── CleanEEPROM │ │ │ └── CleanEEPROM.ino │ │ │ ├── Compass │ │ │ └── Compass.ino │ │ │ ├── IRArray │ │ │ └── IRArray.ino │ │ │ ├── LCDDebugPrint │ │ │ └── LCDDebugPrint.ino │ │ │ ├── LCDPrint │ │ │ └── LCDPrint.ino │ │ │ ├── LCDWriteText │ │ │ └── LCDWriteText.ino │ │ │ ├── LineFollowWithPause │ │ │ └── LineFollowWithPause.ino │ │ │ ├── Melody │ │ │ └── Melody.ino │ │ │ ├── MotorTest │ │ │ └── MotorTest.ino │ │ │ ├── SpeedByPotentiometer │ │ │ └── SpeedByPotentiometer.ino │ │ │ ├── TurnTest │ │ │ └── TurnTest.ino │ │ │ └── keyboardTest │ │ │ └── keyboardTest.ino │ ├── library.properties │ └── src │ │ ├── ArduinoRobot.cpp │ │ ├── ArduinoRobot.h │ │ ├── Arduino_LCD.cpp │ │ ├── Arduino_LCD.h │ │ ├── Compass.cpp │ │ ├── Compass.h │ │ ├── EEPROM_I2C.cpp │ │ ├── EEPROM_I2C.h │ │ ├── EasyTransfer2.cpp │ │ ├── EasyTransfer2.h │ │ ├── Fat16.cpp │ │ ├── Fat16.h │ │ ├── Fat16Config.h │ │ ├── Fat16mainpage.h │ │ ├── Fat16util.h │ │ ├── FatStructs.h │ │ ├── Melody.cpp │ │ ├── Motors.cpp │ │ ├── Multiplexer.cpp │ │ ├── Multiplexer.h │ │ ├── RobotSdCard.cpp │ │ ├── SdCard.cpp │ │ ├── SdCard.h │ │ ├── SdInfo.h │ │ ├── Sensors.cpp │ │ ├── Squawk.cpp │ │ ├── Squawk.h │ │ ├── SquawkSD.cpp │ │ ├── SquawkSD.h │ │ ├── communication.cpp │ │ ├── glcdfont.c │ │ ├── helper.cpp │ │ ├── information.cpp │ │ ├── keyboard.cpp │ │ ├── lcd.cpp │ │ └── utility │ │ ├── Adafruit_GFX.cpp │ │ ├── Adafruit_GFX.h │ │ ├── RobotTextManager.cpp │ │ ├── RobotTextManager.h │ │ ├── VirtualKeyboard.cpp │ │ ├── VirtualKeyboard.h │ │ └── scripts_Hello_User.h ├── Robot_Motor │ ├── README.adoc │ ├── examples │ │ ├── Robot_IR_Array_Test │ │ │ └── Robot_IR_Array_Test.ino │ │ └── Robot_Motor_Core │ │ │ └── Robot_Motor_Core.ino │ ├── library.properties │ └── src │ │ ├── ArduinoRobotMotorBoard.cpp │ │ ├── ArduinoRobotMotorBoard.h │ │ ├── EasyTransfer2.cpp │ │ ├── EasyTransfer2.h │ │ ├── LineFollow.h │ │ ├── Multiplexer.cpp │ │ ├── Multiplexer.h │ │ └── lineFollow.cpp ├── SD │ ├── README.adoc │ ├── examples │ │ ├── CardInfo │ │ │ └── CardInfo.ino │ │ ├── Datalogger │ │ │ └── Datalogger.ino │ │ ├── DumpFile │ │ │ └── DumpFile.ino │ │ ├── Files │ │ │ └── Files.ino │ │ ├── ReadWrite │ │ │ └── ReadWrite.ino │ │ └── listfiles │ │ │ └── listfiles.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── File.cpp │ │ ├── README.txt │ │ ├── SD.cpp │ │ ├── SD.h │ │ └── utility │ │ ├── FatStructs.h │ │ ├── Sd2Card.cpp │ │ ├── Sd2Card.h │ │ ├── Sd2PinMap.h │ │ ├── SdFat.h │ │ ├── SdFatUtil.h │ │ ├── SdFatmainpage.h │ │ ├── SdFile.cpp │ │ ├── SdInfo.h │ │ └── SdVolume.cpp ├── Servo │ ├── README.adoc │ ├── examples │ │ ├── Knob │ │ │ └── Knob.ino │ │ └── Sweep │ │ │ └── Sweep.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── Servo.h │ │ ├── avr │ │ ├── Servo.cpp │ │ └── ServoTimers.h │ │ ├── sam │ │ ├── Servo.cpp │ │ └── ServoTimers.h │ │ └── samd │ │ ├── Servo.cpp │ │ └── ServoTimers.h ├── SpacebrewYun │ ├── README.adoc │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── SpacebrewYun.cpp │ │ └── SpacebrewYun.h ├── Stepper │ ├── README.adoc │ ├── examples │ │ ├── MotorKnob │ │ │ └── MotorKnob.ino │ │ ├── stepper_oneRevolution │ │ │ └── stepper_oneRevolution.ino │ │ ├── stepper_oneStepAtATime │ │ │ └── stepper_oneStepAtATime.ino │ │ └── stepper_speedControl │ │ │ └── stepper_speedControl.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── Stepper.cpp │ │ └── Stepper.h ├── TFT │ ├── README.adoc │ ├── examples │ │ ├── Arduino │ │ │ ├── TFTBitmapLogo │ │ │ │ ├── TFTBitmapLogo.ino │ │ │ │ └── arduino.bmp │ │ │ ├── TFTColorPicker │ │ │ │ └── TFTColorPicker.ino │ │ │ ├── TFTDisplayText │ │ │ │ └── TFTDisplayText.ino │ │ │ ├── TFTEtchASketch │ │ │ │ └── TFTEtchASketch.ino │ │ │ ├── TFTGraph │ │ │ │ └── TFTGraph.ino │ │ │ └── TFTPong │ │ │ │ └── TFTPong.ino │ │ └── Esplora │ │ │ ├── EsploraTFTBitmapLogo │ │ │ ├── EsploraTFTBitmapLogo.ino │ │ │ └── arduino.bmp │ │ │ ├── EsploraTFTColorPicker │ │ │ └── EsploraTFTColorPicker.ino │ │ │ ├── EsploraTFTEtchASketch │ │ │ └── EsploraTFTEtchASketch.ino │ │ │ ├── EsploraTFTGraph │ │ │ └── EsploraTFTGraph.ino │ │ │ ├── EsploraTFTHorizon │ │ │ └── EsploraTFTHorizon.ino │ │ │ ├── EsploraTFTPong │ │ │ └── EsploraTFTPong.ino │ │ │ └── EsploraTFTTemp │ │ │ └── EsploraTFTTemp.ino │ ├── extras │ │ ├── Adafruit-README.txt │ │ ├── Adafruit-license.txt │ │ └── README.md │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── TFT.cpp │ │ ├── TFT.h │ │ └── utility │ │ ├── Adafruit_GFX.cpp │ │ ├── Adafruit_GFX.h │ │ ├── Adafruit_ST7735.cpp │ │ ├── Adafruit_ST7735.h │ │ ├── PImage.h │ │ ├── glcdfont.c │ │ └── keywords.txt ├── Temboo │ ├── README.adoc │ ├── examples │ │ └── ArduinoYun │ │ │ ├── GetYahooWeatherReport │ │ │ ├── GetYahooWeatherReport.ino │ │ │ └── TembooAccount.h │ │ │ ├── ReadATweet │ │ │ ├── ReadATweet.ino │ │ │ └── TembooAccount.h │ │ │ ├── SendATweet │ │ │ ├── SendATweet.ino │ │ │ └── TembooAccount.h │ │ │ ├── SendAnEmail │ │ │ ├── SendAnEmail.ino │ │ │ └── TembooAccount.h │ │ │ ├── SendAnSMS │ │ │ ├── SendAnSMS.ino │ │ │ └── TembooAccount.h │ │ │ ├── SendDataToGoogleSpreadsheet │ │ │ ├── SendDataToGoogleSpreadsheet.ino │ │ │ └── TembooAccount.h │ │ │ ├── ToxicFacilitiesSearch │ │ │ ├── TembooAccount.h │ │ │ └── ToxicFacilitiesSearch.ino │ │ │ ├── UpdateFacebookStatus │ │ │ ├── TembooAccount.h │ │ │ └── UpdateFacebookStatus.ino │ │ │ └── UploadToDropbox │ │ │ ├── TembooAccount.h │ │ │ └── UploadToDropbox.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── Temboo.cpp │ │ ├── Temboo.h │ │ ├── TembooCoAPEdgeDevice.cpp │ │ ├── TembooCoAPEdgeDevice.h │ │ ├── TembooMQTTEdgeDevice.cpp │ │ ├── TembooMQTTEdgeDevice.h │ │ └── utility │ │ ├── ArduinoTimer.h │ │ ├── BaseFormatter.cpp │ │ ├── BaseFormatter.h │ │ ├── ChoreoInput.cpp │ │ ├── ChoreoInput.h │ │ ├── ChoreoInputFormatter.cpp │ │ ├── ChoreoInputFormatter.h │ │ ├── ChoreoInputSet.cpp │ │ ├── ChoreoInputSet.h │ │ ├── ChoreoOutput.cpp │ │ ├── ChoreoOutput.h │ │ ├── ChoreoOutputFormatter.cpp │ │ ├── ChoreoOutputFormatter.h │ │ ├── ChoreoOutputSet.cpp │ │ ├── ChoreoOutputSet.h │ │ ├── ChoreoPreset.cpp │ │ ├── ChoreoPreset.h │ │ ├── ChoreoPresetFormatter.cpp │ │ ├── ChoreoPresetFormatter.h │ │ ├── CoapMessageLayer.cpp │ │ ├── CoapMessageLayer.h │ │ ├── CoapMsg.cpp │ │ ├── CoapMsg.h │ │ ├── CoapRRLayer.cpp │ │ ├── CoapRRLayer.h │ │ ├── DataFormatter.cpp │ │ ├── DataFormatter.h │ │ ├── FP.h │ │ ├── MQTTClient.h │ │ ├── MQTTConnect.h │ │ ├── MQTTConnectClient.c │ │ ├── MQTTConnectServer.c │ │ ├── MQTTDeserializePublish.c │ │ ├── MQTTFormat.c │ │ ├── MQTTFormat.h │ │ ├── MQTTLogging.h │ │ ├── MQTTPacket.c │ │ ├── MQTTPacket.h │ │ ├── MQTTPublish.h │ │ ├── MQTTSerializePublish.c │ │ ├── MQTTSubscribe.h │ │ ├── MQTTSubscribeClient.c │ │ ├── MQTTSubscribeServer.c │ │ ├── MQTTUnsubscribe.h │ │ ├── MQTTUnsubscribeClient.c │ │ ├── MQTTUnsubscribeServer.c │ │ ├── StackTrace.h │ │ ├── TembooCoAPIPStack.h │ │ ├── TembooCoAPSession.cpp │ │ ├── TembooCoAPSession.h │ │ ├── TembooGlobal.c │ │ ├── TembooGlobal.h │ │ ├── TembooMQTTIPStack.h │ │ ├── TembooMQTTSession.cpp │ │ ├── TembooMQTTSession.h │ │ ├── TembooSession.cpp │ │ ├── TembooSession.h │ │ ├── TembooTags.h │ │ ├── TembooTimer.h │ │ ├── tmbhmac.cpp │ │ ├── tmbhmac.h │ │ ├── tmbmd5.cpp │ │ └── tmbmd5.h ├── Ultrasonic │ ├── Ultrasonic.cpp │ ├── Ultrasonic.h │ ├── examples │ │ └── UltrasonicDemo │ │ │ └── UltrasonicDemo.pde │ └── keywords.txt ├── WiFi │ ├── README.adoc │ ├── examples │ │ ├── ConnectNoEncryption │ │ │ └── ConnectNoEncryption.ino │ │ ├── ConnectWithWEP │ │ │ └── ConnectWithWEP.ino │ │ ├── ConnectWithWPA │ │ │ └── ConnectWithWPA.ino │ │ ├── ScanNetworks │ │ │ └── ScanNetworks.ino │ │ ├── SimpleWebServerWiFi │ │ │ └── SimpleWebServerWiFi.ino │ │ ├── WiFiChatServer │ │ │ └── WiFiChatServer.ino │ │ ├── WiFiUdpNtpClient │ │ │ └── WiFiUdpNtpClient.ino │ │ ├── WiFiUdpSendReceiveString │ │ │ └── WiFiUdpSendReceiveString.ino │ │ ├── WiFiWebClient │ │ │ └── WiFiWebClient.ino │ │ ├── WiFiWebClientRepeating │ │ │ └── WiFiWebClientRepeating.ino │ │ └── WiFiWebServer │ │ │ └── WiFiWebServer.ino │ ├── extras │ │ ├── binary │ │ │ ├── wifiHD.elf │ │ │ ├── wifiHD.hex │ │ │ ├── wifiHD_2_1.elf │ │ │ ├── wifi_dnld.elf │ │ │ ├── wifi_dnld.hex │ │ │ └── wifi_dnld_2_1.elf │ │ ├── scripts │ │ │ └── ArduinoWifiShield_upgrade.sh │ │ ├── wifiHD │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ ├── Release │ │ │ │ ├── wifiHD.elf │ │ │ │ └── wifiHD.hex │ │ │ ├── src │ │ │ │ ├── CONFIG │ │ │ │ │ ├── conf_access.h │ │ │ │ │ ├── conf_at45dbx.h │ │ │ │ │ ├── conf_ebi.h │ │ │ │ │ └── conf_sd_mmc_spi.h │ │ │ │ ├── SOFTWARE_FRAMEWORK │ │ │ │ │ ├── ASM │ │ │ │ │ │ └── trampoline.x │ │ │ │ │ ├── BOARDS │ │ │ │ │ │ ├── ARDUINO │ │ │ │ │ │ │ ├── arduino.h │ │ │ │ │ │ │ ├── led.c │ │ │ │ │ │ │ └── led.h │ │ │ │ │ │ ├── EVK1105 │ │ │ │ │ │ │ ├── evk1105.h │ │ │ │ │ │ │ ├── led.c │ │ │ │ │ │ │ └── led.h │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.h.my │ │ │ │ │ ├── COMPONENTS │ │ │ │ │ │ ├── MEMORY │ │ │ │ │ │ │ └── DATA_FLASH │ │ │ │ │ │ │ │ └── AT45DBX │ │ │ │ │ │ │ │ ├── at45dbx.c │ │ │ │ │ │ │ │ ├── at45dbx.h │ │ │ │ │ │ │ │ ├── at45dbx_mem.c │ │ │ │ │ │ │ │ └── at45dbx_mem.h │ │ │ │ │ │ └── WIFI │ │ │ │ │ │ │ └── HD │ │ │ │ │ │ │ ├── v2.7.0 │ │ │ │ │ │ │ ├── UCR1 │ │ │ │ │ │ │ │ └── GCC │ │ │ │ │ │ │ │ │ ├── lib_ucr1_hd_sdio_v2.7.0.a │ │ │ │ │ │ │ │ │ ├── lib_ucr1_hd_spi_v2.7.0.a │ │ │ │ │ │ │ │ │ └── lib_ucr1_hd_wl_sta_intwpa_v2.7.0.a │ │ │ │ │ │ │ ├── UCR2 │ │ │ │ │ │ │ │ └── GCC │ │ │ │ │ │ │ │ │ ├── lib_ucr2_hd_sdio_v2.7.0.a │ │ │ │ │ │ │ │ │ ├── lib_ucr2_hd_spi_v2.7.0.a │ │ │ │ │ │ │ │ │ └── lib_ucr2_hd_wl_sta_intwpa_v2.7.0.a │ │ │ │ │ │ │ └── revision.txt │ │ │ │ │ │ │ ├── wl_api.h │ │ │ │ │ │ │ ├── wl_fw.h │ │ │ │ │ │ │ ├── wl_os.h │ │ │ │ │ │ │ ├── wl_sdio.h │ │ │ │ │ │ │ ├── wl_spi.h │ │ │ │ │ │ │ └── wlap_api.h │ │ │ │ │ ├── DRIVERS │ │ │ │ │ │ ├── CPU │ │ │ │ │ │ │ └── CYCLE_COUNTER │ │ │ │ │ │ │ │ └── cycle_counter.h │ │ │ │ │ │ ├── EBI │ │ │ │ │ │ │ └── SMC │ │ │ │ │ │ │ │ ├── smc.c │ │ │ │ │ │ │ │ └── smc.h │ │ │ │ │ │ ├── EIC │ │ │ │ │ │ │ ├── eic.c │ │ │ │ │ │ │ └── eic.h │ │ │ │ │ │ ├── FLASHC │ │ │ │ │ │ │ ├── flashc.c │ │ │ │ │ │ │ └── flashc.h │ │ │ │ │ │ ├── GPIO │ │ │ │ │ │ │ ├── gpio.c │ │ │ │ │ │ │ └── gpio.h │ │ │ │ │ │ ├── INTC │ │ │ │ │ │ │ ├── exception.x │ │ │ │ │ │ │ ├── intc.c │ │ │ │ │ │ │ └── intc.h │ │ │ │ │ │ ├── PDCA │ │ │ │ │ │ │ ├── pdca.c │ │ │ │ │ │ │ └── pdca.h │ │ │ │ │ │ ├── PM │ │ │ │ │ │ │ ├── pm.c │ │ │ │ │ │ │ ├── pm.h │ │ │ │ │ │ │ ├── pm_conf_clocks.c │ │ │ │ │ │ │ ├── power_clocks_lib.c │ │ │ │ │ │ │ └── power_clocks_lib.h │ │ │ │ │ │ ├── RTC │ │ │ │ │ │ │ ├── rtc.c │ │ │ │ │ │ │ └── rtc.h │ │ │ │ │ │ ├── SPI │ │ │ │ │ │ │ ├── spi.c │ │ │ │ │ │ │ └── spi.h │ │ │ │ │ │ ├── TC │ │ │ │ │ │ │ ├── tc.c │ │ │ │ │ │ │ └── tc.h │ │ │ │ │ │ └── USART │ │ │ │ │ │ │ ├── usart.c │ │ │ │ │ │ │ └── usart.h │ │ │ │ │ ├── SERVICES │ │ │ │ │ │ ├── DELAY │ │ │ │ │ │ │ ├── delay.c │ │ │ │ │ │ │ └── delay.h │ │ │ │ │ │ ├── LWIP │ │ │ │ │ │ │ ├── lwip-1.3.2 │ │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ │ ├── dhcp.c │ │ │ │ │ │ │ │ │ ├── dns.c │ │ │ │ │ │ │ │ │ ├── init.c │ │ │ │ │ │ │ │ │ ├── ipv4 │ │ │ │ │ │ │ │ │ │ ├── autoip.c │ │ │ │ │ │ │ │ │ │ ├── icmp.c │ │ │ │ │ │ │ │ │ │ ├── igmp.c │ │ │ │ │ │ │ │ │ │ ├── inet.c │ │ │ │ │ │ │ │ │ │ ├── inet_chksum.c │ │ │ │ │ │ │ │ │ │ ├── ip.c │ │ │ │ │ │ │ │ │ │ ├── ip_addr.c │ │ │ │ │ │ │ │ │ │ └── ip_frag.c │ │ │ │ │ │ │ │ │ ├── mem.c │ │ │ │ │ │ │ │ │ ├── memp.c │ │ │ │ │ │ │ │ │ ├── netif.c │ │ │ │ │ │ │ │ │ ├── pbuf.c │ │ │ │ │ │ │ │ │ ├── raw.c │ │ │ │ │ │ │ │ │ ├── stats.c │ │ │ │ │ │ │ │ │ ├── tcp.c │ │ │ │ │ │ │ │ │ ├── tcp_in.c │ │ │ │ │ │ │ │ │ ├── tcp_out.c │ │ │ │ │ │ │ │ │ └── udp.c │ │ │ │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ │ │ ├── ipv4 │ │ │ │ │ │ │ │ │ │ └── lwip │ │ │ │ │ │ │ │ │ │ │ ├── autoip.h │ │ │ │ │ │ │ │ │ │ │ ├── icmp.h │ │ │ │ │ │ │ │ │ │ │ ├── igmp.h │ │ │ │ │ │ │ │ │ │ │ ├── inet.h │ │ │ │ │ │ │ │ │ │ │ ├── inet_chksum.h │ │ │ │ │ │ │ │ │ │ │ ├── ip.h │ │ │ │ │ │ │ │ │ │ │ ├── ip_addr.h │ │ │ │ │ │ │ │ │ │ │ └── ip_frag.h │ │ │ │ │ │ │ │ │ ├── lwip │ │ │ │ │ │ │ │ │ │ ├── api.h │ │ │ │ │ │ │ │ │ │ ├── api_msg.h │ │ │ │ │ │ │ │ │ │ ├── arch.h │ │ │ │ │ │ │ │ │ │ ├── debug.h │ │ │ │ │ │ │ │ │ │ ├── def.h │ │ │ │ │ │ │ │ │ │ ├── dhcp.h │ │ │ │ │ │ │ │ │ │ ├── dns.h │ │ │ │ │ │ │ │ │ │ ├── err.h │ │ │ │ │ │ │ │ │ │ ├── init.h │ │ │ │ │ │ │ │ │ │ ├── mem.h │ │ │ │ │ │ │ │ │ │ ├── memp.h │ │ │ │ │ │ │ │ │ │ ├── memp_std.h │ │ │ │ │ │ │ │ │ │ ├── netbuf.h │ │ │ │ │ │ │ │ │ │ ├── netdb.h │ │ │ │ │ │ │ │ │ │ ├── netif.h │ │ │ │ │ │ │ │ │ │ ├── netifapi.h │ │ │ │ │ │ │ │ │ │ ├── opt.h │ │ │ │ │ │ │ │ │ │ ├── pbuf.h │ │ │ │ │ │ │ │ │ │ ├── raw.h │ │ │ │ │ │ │ │ │ │ ├── sio.h │ │ │ │ │ │ │ │ │ │ ├── snmp.h │ │ │ │ │ │ │ │ │ │ ├── snmp_asn1.h │ │ │ │ │ │ │ │ │ │ ├── snmp_msg.h │ │ │ │ │ │ │ │ │ │ ├── snmp_structs.h │ │ │ │ │ │ │ │ │ │ ├── sockets.h │ │ │ │ │ │ │ │ │ │ ├── stats.h │ │ │ │ │ │ │ │ │ │ ├── sys.h │ │ │ │ │ │ │ │ │ │ ├── tcp.h │ │ │ │ │ │ │ │ │ │ ├── tcpip.h │ │ │ │ │ │ │ │ │ │ └── udp.h │ │ │ │ │ │ │ │ │ └── netif │ │ │ │ │ │ │ │ │ │ ├── etharp.h │ │ │ │ │ │ │ │ │ │ ├── loopif.h │ │ │ │ │ │ │ │ │ │ ├── ppp_oe.h │ │ │ │ │ │ │ │ │ │ └── slipif.h │ │ │ │ │ │ │ │ │ └── netif │ │ │ │ │ │ │ │ │ ├── etharp.c │ │ │ │ │ │ │ │ │ └── loopif.c │ │ │ │ │ │ │ └── lwip-port-1.3.2 │ │ │ │ │ │ │ │ └── HD │ │ │ │ │ │ │ │ ├── if │ │ │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ │ │ ├── arch │ │ │ │ │ │ │ │ │ │ ├── cc.h │ │ │ │ │ │ │ │ │ │ └── perf.h │ │ │ │ │ │ │ │ │ ├── lwipopts.h │ │ │ │ │ │ │ │ │ └── netif │ │ │ │ │ │ │ │ │ │ └── wlif.h │ │ │ │ │ │ │ │ └── netif │ │ │ │ │ │ │ │ │ └── wlif.c │ │ │ │ │ │ │ │ └── readme.txt │ │ │ │ │ │ └── MEMORY │ │ │ │ │ │ │ └── CTRL_ACCESS │ │ │ │ │ │ │ ├── ctrl_access.c │ │ │ │ │ │ │ └── ctrl_access.h │ │ │ │ │ └── UTILS │ │ │ │ │ │ ├── DEBUG │ │ │ │ │ │ ├── debug.c │ │ │ │ │ │ ├── debug.h │ │ │ │ │ │ ├── print_funcs.c │ │ │ │ │ │ └── print_funcs.h │ │ │ │ │ │ ├── LIBS │ │ │ │ │ │ └── NEWLIB_ADDONS │ │ │ │ │ │ │ ├── INCLUDE │ │ │ │ │ │ │ ├── nlao_cpu.h │ │ │ │ │ │ │ ├── nlao_exceptions.h │ │ │ │ │ │ │ ├── nlao_interrupts.h │ │ │ │ │ │ │ ├── nlao_io.h │ │ │ │ │ │ │ └── nlao_usart.h │ │ │ │ │ │ │ └── libnewlib_addons-at32ucr2-speed_opt.a │ │ │ │ │ │ ├── LINKER_SCRIPTS │ │ │ │ │ │ └── AT32UC3A │ │ │ │ │ │ │ ├── 1256 │ │ │ │ │ │ │ └── GCC │ │ │ │ │ │ │ │ └── link_uc3a1256.lds │ │ │ │ │ │ │ └── 0512 │ │ │ │ │ │ │ └── GCC │ │ │ │ │ │ │ └── link_uc3a0512.lds │ │ │ │ │ │ ├── PREPROCESSOR │ │ │ │ │ │ ├── mrepeat.h │ │ │ │ │ │ ├── preprocessor.h │ │ │ │ │ │ ├── stringz.h │ │ │ │ │ │ └── tpaste.h │ │ │ │ │ │ ├── STARTUP_FILES │ │ │ │ │ │ └── GCC │ │ │ │ │ │ │ └── crt0.x │ │ │ │ │ │ ├── compiler.h │ │ │ │ │ │ ├── conf_isp.h │ │ │ │ │ │ └── parts.h │ │ │ │ ├── ard_spi.c │ │ │ │ ├── ard_spi.h │ │ │ │ ├── ard_tcp.c │ │ │ │ ├── ard_tcp.h │ │ │ │ ├── ard_utils.c │ │ │ │ ├── ard_utils.h │ │ │ │ ├── avr32_spi.c │ │ │ │ ├── board_init.c │ │ │ │ ├── board_init.h │ │ │ │ ├── cmd_wl.c │ │ │ │ ├── cmd_wl.h │ │ │ │ ├── console.c │ │ │ │ ├── console.h │ │ │ │ ├── debug.h │ │ │ │ ├── fw_download.h │ │ │ │ ├── fw_download_extflash.c │ │ │ │ ├── license.txt │ │ │ │ ├── lwip_setup.c │ │ │ │ ├── lwip_setup.h │ │ │ │ ├── lwipopts.h │ │ │ │ ├── main.c │ │ │ │ ├── nvram.c │ │ │ │ ├── nvram.h │ │ │ │ ├── owl_os.c │ │ │ │ ├── ping.c │ │ │ │ ├── ping.h │ │ │ │ ├── printf-stdarg.c │ │ │ │ ├── printf-stdarg.h │ │ │ │ ├── timer.c │ │ │ │ ├── timer.h │ │ │ │ ├── top_defs.h │ │ │ │ ├── trace.h │ │ │ │ ├── util.c │ │ │ │ ├── util.h │ │ │ │ ├── wifi_spi.h │ │ │ │ ├── wl_cm.c │ │ │ │ ├── wl_cm.h │ │ │ │ └── wl_definitions.h │ │ │ └── wifiHD.cproj │ │ ├── wifi_dnld │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ ├── Release │ │ │ │ └── wifi_dnld.elf │ │ │ ├── src │ │ │ │ ├── CONFIG │ │ │ │ │ ├── conf_access.h │ │ │ │ │ └── conf_at45dbx.h │ │ │ │ ├── Doc │ │ │ │ │ ├── SPB104 product brief.pdf │ │ │ │ │ └── gettingstarted.pdf │ │ │ │ ├── SOFTWARE_FRAMEWORK │ │ │ │ │ ├── ASM │ │ │ │ │ │ └── trampoline.x │ │ │ │ │ ├── BOARDS │ │ │ │ │ │ ├── ARDUINO │ │ │ │ │ │ │ ├── arduino.h │ │ │ │ │ │ │ ├── led.c │ │ │ │ │ │ │ └── led.h │ │ │ │ │ │ ├── EVK1105 │ │ │ │ │ │ │ ├── evk1105.h │ │ │ │ │ │ │ ├── led.c │ │ │ │ │ │ │ └── led.h │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.h.ori │ │ │ │ │ ├── COMPONENTS │ │ │ │ │ │ └── MEMORY │ │ │ │ │ │ │ └── DATA_FLASH │ │ │ │ │ │ │ └── AT45DBX │ │ │ │ │ │ │ ├── at45dbx.c │ │ │ │ │ │ │ ├── at45dbx.h │ │ │ │ │ │ │ ├── at45dbx_mem.c │ │ │ │ │ │ │ └── at45dbx_mem.h │ │ │ │ │ ├── DRIVERS │ │ │ │ │ │ ├── FLASHC │ │ │ │ │ │ │ ├── flashc.c │ │ │ │ │ │ │ └── flashc.h │ │ │ │ │ │ ├── GPIO │ │ │ │ │ │ │ ├── gpio.c │ │ │ │ │ │ │ └── gpio.h │ │ │ │ │ │ ├── INTC │ │ │ │ │ │ │ ├── exception.x │ │ │ │ │ │ │ ├── intc.c │ │ │ │ │ │ │ └── intc.h │ │ │ │ │ │ ├── PM │ │ │ │ │ │ │ ├── pm.c │ │ │ │ │ │ │ ├── pm.h │ │ │ │ │ │ │ ├── pm_conf_clocks.c │ │ │ │ │ │ │ ├── power_clocks_lib.c │ │ │ │ │ │ │ └── power_clocks_lib.h │ │ │ │ │ │ ├── SPI │ │ │ │ │ │ │ ├── spi.c │ │ │ │ │ │ │ └── spi.h │ │ │ │ │ │ └── USART │ │ │ │ │ │ │ ├── usart.c │ │ │ │ │ │ │ └── usart.h │ │ │ │ │ ├── SERVICES │ │ │ │ │ │ └── MEMORY │ │ │ │ │ │ │ └── CTRL_ACCESS │ │ │ │ │ │ │ ├── ctrl_access.c │ │ │ │ │ │ │ └── ctrl_access.h │ │ │ │ │ └── UTILS │ │ │ │ │ │ ├── DEBUG │ │ │ │ │ │ ├── debug.c │ │ │ │ │ │ ├── debug.h │ │ │ │ │ │ ├── print_funcs.c │ │ │ │ │ │ └── print_funcs.h │ │ │ │ │ │ ├── LIBS │ │ │ │ │ │ └── NEWLIB_ADDONS │ │ │ │ │ │ │ ├── INCLUDE │ │ │ │ │ │ │ ├── nlao_cpu.h │ │ │ │ │ │ │ ├── nlao_exceptions.h │ │ │ │ │ │ │ ├── nlao_interrupts.h │ │ │ │ │ │ │ ├── nlao_io.h │ │ │ │ │ │ │ └── nlao_usart.h │ │ │ │ │ │ │ └── libnewlib_addons-at32ucr2-speed_opt.a │ │ │ │ │ │ ├── LINKER_SCRIPTS │ │ │ │ │ │ └── AT32UC3A │ │ │ │ │ │ │ ├── 1256 │ │ │ │ │ │ │ └── GCC │ │ │ │ │ │ │ │ └── link_uc3a1256.lds │ │ │ │ │ │ │ └── 0512 │ │ │ │ │ │ │ └── GCC │ │ │ │ │ │ │ └── link_uc3a0512.lds │ │ │ │ │ │ ├── PREPROCESSOR │ │ │ │ │ │ ├── mrepeat.h │ │ │ │ │ │ ├── preprocessor.h │ │ │ │ │ │ ├── stringz.h │ │ │ │ │ │ └── tpaste.h │ │ │ │ │ │ ├── STARTUP_FILES │ │ │ │ │ │ └── GCC │ │ │ │ │ │ │ └── crt0.x │ │ │ │ │ │ ├── compiler.h │ │ │ │ │ │ ├── conf_isp.h │ │ │ │ │ │ └── parts.h │ │ │ │ ├── clocks.c │ │ │ │ ├── clocks.h │ │ │ │ ├── flash_fw.c │ │ │ │ ├── license.txt │ │ │ │ ├── nor_flash.c │ │ │ │ ├── nor_flash.h │ │ │ │ ├── printf-stdarg.c │ │ │ │ ├── printf-stdarg.h │ │ │ │ ├── startup.c │ │ │ │ ├── startup.h │ │ │ │ └── wl_fw.h │ │ │ └── wifi_dnld.cproj │ │ └── wifishield.atsln │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── WiFi.cpp │ │ ├── WiFi.h │ │ ├── WiFiClient.cpp │ │ ├── WiFiClient.h │ │ ├── WiFiServer.cpp │ │ ├── WiFiServer.h │ │ ├── WiFiUdp.cpp │ │ ├── WiFiUdp.h │ │ └── utility │ │ ├── debug.h │ │ ├── server_drv.cpp │ │ ├── server_drv.h │ │ ├── spi_drv.cpp │ │ ├── spi_drv.h │ │ ├── wifi_drv.cpp │ │ ├── wifi_drv.h │ │ ├── wifi_spi.h │ │ ├── wl_definitions.h │ │ └── wl_types.h └── readme.txt └── src ├── DH11.ino ├── Sensor_Ultra_Sonico_HC-SR04.ino.ino ├── Sensor_Ultra_Sonico_HC-SR04_2.ino ├── TesteScreen_20x4.ino ├── code_snappy.ino ├── screen_16x2.ino ├── screen_20x4.ino └── webController └── webTest /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/LICENSE -------------------------------------------------------------------------------- /New_car.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/New_car.ino -------------------------------------------------------------------------------- /NodeMcu V3 Lua ESP8266 WIFI/sketch_aug19a.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/NodeMcu V3 Lua ESP8266 WIFI/sketch_aug19a.ino -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/README.md -------------------------------------------------------------------------------- /libraries/Bridge/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Bridge/README.adoc -------------------------------------------------------------------------------- /libraries/Bridge/examples/Bridge/Bridge.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Bridge/examples/Bridge/Bridge.ino -------------------------------------------------------------------------------- /libraries/Bridge/examples/ConsoleAsciiTable/ConsoleAsciiTable.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Bridge/examples/ConsoleAsciiTable/ConsoleAsciiTable.ino -------------------------------------------------------------------------------- /libraries/Bridge/examples/ConsolePixel/ConsolePixel.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Bridge/examples/ConsolePixel/ConsolePixel.ino -------------------------------------------------------------------------------- /libraries/Bridge/examples/ConsoleRead/ConsoleRead.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Bridge/examples/ConsoleRead/ConsoleRead.ino -------------------------------------------------------------------------------- /libraries/Bridge/examples/Datalogger/Datalogger.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Bridge/examples/Datalogger/Datalogger.ino -------------------------------------------------------------------------------- /libraries/Bridge/examples/FileWriteScript/FileWriteScript.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Bridge/examples/FileWriteScript/FileWriteScript.ino -------------------------------------------------------------------------------- /libraries/Bridge/examples/HttpClient/HttpClient.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Bridge/examples/HttpClient/HttpClient.ino -------------------------------------------------------------------------------- /libraries/Bridge/examples/MailboxReadMessage/MailboxReadMessage.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Bridge/examples/MailboxReadMessage/MailboxReadMessage.ino -------------------------------------------------------------------------------- /libraries/Bridge/examples/Process/Process.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Bridge/examples/Process/Process.ino -------------------------------------------------------------------------------- /libraries/Bridge/examples/ShellCommands/ShellCommands.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Bridge/examples/ShellCommands/ShellCommands.ino -------------------------------------------------------------------------------- /libraries/Bridge/examples/SpacebrewYun/inputOutput/inputOutput.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Bridge/examples/SpacebrewYun/inputOutput/inputOutput.ino -------------------------------------------------------------------------------- /libraries/Bridge/examples/TemperatureWebPanel/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Bridge/examples/TemperatureWebPanel/www/index.html -------------------------------------------------------------------------------- /libraries/Bridge/examples/TemperatureWebPanel/www/zepto.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Bridge/examples/TemperatureWebPanel/www/zepto.min.js -------------------------------------------------------------------------------- /libraries/Bridge/examples/TimeCheck/TimeCheck.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Bridge/examples/TimeCheck/TimeCheck.ino -------------------------------------------------------------------------------- /libraries/Bridge/examples/WiFiStatus/WiFiStatus.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Bridge/examples/WiFiStatus/WiFiStatus.ino -------------------------------------------------------------------------------- /libraries/Bridge/examples/YunSerialTerminal/YunSerialTerminal.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Bridge/examples/YunSerialTerminal/YunSerialTerminal.ino -------------------------------------------------------------------------------- /libraries/Bridge/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Bridge/keywords.txt -------------------------------------------------------------------------------- /libraries/Bridge/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Bridge/library.properties -------------------------------------------------------------------------------- /libraries/Bridge/src/Bridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Bridge/src/Bridge.cpp -------------------------------------------------------------------------------- /libraries/Bridge/src/Bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Bridge/src/Bridge.h -------------------------------------------------------------------------------- /libraries/Bridge/src/BridgeClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Bridge/src/BridgeClient.cpp -------------------------------------------------------------------------------- /libraries/Bridge/src/BridgeClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Bridge/src/BridgeClient.h -------------------------------------------------------------------------------- /libraries/Bridge/src/BridgeServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Bridge/src/BridgeServer.cpp -------------------------------------------------------------------------------- /libraries/Bridge/src/BridgeServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Bridge/src/BridgeServer.h -------------------------------------------------------------------------------- /libraries/Bridge/src/BridgeUdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Bridge/src/BridgeUdp.cpp -------------------------------------------------------------------------------- /libraries/Bridge/src/BridgeUdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Bridge/src/BridgeUdp.h -------------------------------------------------------------------------------- /libraries/Bridge/src/Console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Bridge/src/Console.cpp -------------------------------------------------------------------------------- /libraries/Bridge/src/Console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Bridge/src/Console.h -------------------------------------------------------------------------------- /libraries/Bridge/src/FileIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Bridge/src/FileIO.cpp -------------------------------------------------------------------------------- /libraries/Bridge/src/FileIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Bridge/src/FileIO.h -------------------------------------------------------------------------------- /libraries/Bridge/src/HttpClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Bridge/src/HttpClient.cpp -------------------------------------------------------------------------------- /libraries/Bridge/src/HttpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Bridge/src/HttpClient.h -------------------------------------------------------------------------------- /libraries/Bridge/src/Mailbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Bridge/src/Mailbox.cpp -------------------------------------------------------------------------------- /libraries/Bridge/src/Mailbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Bridge/src/Mailbox.h -------------------------------------------------------------------------------- /libraries/Bridge/src/Process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Bridge/src/Process.cpp -------------------------------------------------------------------------------- /libraries/Bridge/src/Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Bridge/src/Process.h -------------------------------------------------------------------------------- /libraries/Bridge/src/YunClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Bridge/src/YunClient.h -------------------------------------------------------------------------------- /libraries/Bridge/src/YunServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Bridge/src/YunServer.h -------------------------------------------------------------------------------- /libraries/DHT/DHT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/DHT/DHT.cpp -------------------------------------------------------------------------------- /libraries/DHT/DHT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/DHT/DHT.h -------------------------------------------------------------------------------- /libraries/DHT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/DHT/README.md -------------------------------------------------------------------------------- /libraries/DHT/examples/DHTtester/DHTtester.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/DHT/examples/DHTtester/DHTtester.ino -------------------------------------------------------------------------------- /libraries/DHT/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/DHT/keywords.txt -------------------------------------------------------------------------------- /libraries/DHT/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/DHT/library.properties -------------------------------------------------------------------------------- /libraries/Esplora/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Esplora/README.adoc -------------------------------------------------------------------------------- /libraries/Esplora/examples/Beginners/EsploraBlink/EsploraBlink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Esplora/examples/Beginners/EsploraBlink/EsploraBlink.ino -------------------------------------------------------------------------------- /libraries/Esplora/examples/Beginners/EsploraMusic/EsploraMusic.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Esplora/examples/Beginners/EsploraMusic/EsploraMusic.ino -------------------------------------------------------------------------------- /libraries/Esplora/examples/Experts/EsploraKart/EsploraKart.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Esplora/examples/Experts/EsploraKart/EsploraKart.ino -------------------------------------------------------------------------------- /libraries/Esplora/examples/Experts/EsploraPong/EsploraPong.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Esplora/examples/Experts/EsploraPong/EsploraPong.ino -------------------------------------------------------------------------------- /libraries/Esplora/examples/Experts/EsploraRemote/EsploraRemote.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Esplora/examples/Experts/EsploraRemote/EsploraRemote.ino -------------------------------------------------------------------------------- /libraries/Esplora/examples/Experts/EsploraTable/EsploraTable.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Esplora/examples/Experts/EsploraTable/EsploraTable.ino -------------------------------------------------------------------------------- /libraries/Esplora/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Esplora/keywords.txt -------------------------------------------------------------------------------- /libraries/Esplora/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Esplora/library.properties -------------------------------------------------------------------------------- /libraries/Esplora/src/Esplora.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Esplora/src/Esplora.cpp -------------------------------------------------------------------------------- /libraries/Esplora/src/Esplora.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Esplora/src/Esplora.h -------------------------------------------------------------------------------- /libraries/Ethernet/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Ethernet/README.adoc -------------------------------------------------------------------------------- /libraries/Ethernet/examples/ChatServer/ChatServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Ethernet/examples/ChatServer/ChatServer.ino -------------------------------------------------------------------------------- /libraries/Ethernet/examples/DhcpChatServer/DhcpChatServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Ethernet/examples/DhcpChatServer/DhcpChatServer.ino -------------------------------------------------------------------------------- /libraries/Ethernet/examples/TelnetClient/TelnetClient.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Ethernet/examples/TelnetClient/TelnetClient.ino -------------------------------------------------------------------------------- /libraries/Ethernet/examples/UdpNtpClient/UdpNtpClient.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Ethernet/examples/UdpNtpClient/UdpNtpClient.ino -------------------------------------------------------------------------------- /libraries/Ethernet/examples/WebClient/WebClient.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Ethernet/examples/WebClient/WebClient.ino -------------------------------------------------------------------------------- /libraries/Ethernet/examples/WebServer/WebServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Ethernet/examples/WebServer/WebServer.ino -------------------------------------------------------------------------------- /libraries/Ethernet/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Ethernet/keywords.txt -------------------------------------------------------------------------------- /libraries/Ethernet/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Ethernet/library.properties -------------------------------------------------------------------------------- /libraries/Ethernet/src/Dhcp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Ethernet/src/Dhcp.cpp -------------------------------------------------------------------------------- /libraries/Ethernet/src/Dhcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Ethernet/src/Dhcp.h -------------------------------------------------------------------------------- /libraries/Ethernet/src/Dns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Ethernet/src/Dns.cpp -------------------------------------------------------------------------------- /libraries/Ethernet/src/Dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Ethernet/src/Dns.h -------------------------------------------------------------------------------- /libraries/Ethernet/src/Ethernet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Ethernet/src/Ethernet.cpp -------------------------------------------------------------------------------- /libraries/Ethernet/src/Ethernet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Ethernet/src/Ethernet.h -------------------------------------------------------------------------------- /libraries/Ethernet/src/EthernetClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Ethernet/src/EthernetClient.cpp -------------------------------------------------------------------------------- /libraries/Ethernet/src/EthernetClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Ethernet/src/EthernetClient.h -------------------------------------------------------------------------------- /libraries/Ethernet/src/EthernetServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Ethernet/src/EthernetServer.cpp -------------------------------------------------------------------------------- /libraries/Ethernet/src/EthernetServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Ethernet/src/EthernetServer.h -------------------------------------------------------------------------------- /libraries/Ethernet/src/EthernetUdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Ethernet/src/EthernetUdp.cpp -------------------------------------------------------------------------------- /libraries/Ethernet/src/EthernetUdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Ethernet/src/EthernetUdp.h -------------------------------------------------------------------------------- /libraries/Ethernet/src/utility/socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Ethernet/src/utility/socket.cpp -------------------------------------------------------------------------------- /libraries/Ethernet/src/utility/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Ethernet/src/utility/socket.h -------------------------------------------------------------------------------- /libraries/Ethernet/src/utility/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Ethernet/src/utility/util.h -------------------------------------------------------------------------------- /libraries/Ethernet/src/utility/w5100.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Ethernet/src/utility/w5100.cpp -------------------------------------------------------------------------------- /libraries/Ethernet/src/utility/w5100.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Ethernet/src/utility/w5100.h -------------------------------------------------------------------------------- /libraries/Firmata/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /libraries/Firmata/Boards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Firmata/Boards.h -------------------------------------------------------------------------------- /libraries/Firmata/Firmata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Firmata/Firmata.cpp -------------------------------------------------------------------------------- /libraries/Firmata/Firmata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Firmata/Firmata.h -------------------------------------------------------------------------------- /libraries/Firmata/examples/AllInputsFirmata/AllInputsFirmata.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Firmata/examples/AllInputsFirmata/AllInputsFirmata.ino -------------------------------------------------------------------------------- /libraries/Firmata/examples/AnalogFirmata/AnalogFirmata.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Firmata/examples/AnalogFirmata/AnalogFirmata.ino -------------------------------------------------------------------------------- /libraries/Firmata/examples/EchoString/EchoString.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Firmata/examples/EchoString/EchoString.ino -------------------------------------------------------------------------------- /libraries/Firmata/examples/OldStandardFirmata/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Firmata/examples/OldStandardFirmata/LICENSE.txt -------------------------------------------------------------------------------- /libraries/Firmata/examples/ServoFirmata/ServoFirmata.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Firmata/examples/ServoFirmata/ServoFirmata.ino -------------------------------------------------------------------------------- /libraries/Firmata/examples/StandardFirmata/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Firmata/examples/StandardFirmata/LICENSE.txt -------------------------------------------------------------------------------- /libraries/Firmata/examples/StandardFirmata/StandardFirmata.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Firmata/examples/StandardFirmata/StandardFirmata.ino -------------------------------------------------------------------------------- /libraries/Firmata/examples/StandardFirmataChipKIT/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Firmata/examples/StandardFirmataChipKIT/LICENSE.txt -------------------------------------------------------------------------------- /libraries/Firmata/examples/StandardFirmataEthernet/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Firmata/examples/StandardFirmataEthernet/LICENSE.txt -------------------------------------------------------------------------------- /libraries/Firmata/examples/StandardFirmataEthernetPlus/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Firmata/examples/StandardFirmataEthernetPlus/LICENSE.txt -------------------------------------------------------------------------------- /libraries/Firmata/examples/StandardFirmataPlus/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Firmata/examples/StandardFirmataPlus/LICENSE.txt -------------------------------------------------------------------------------- /libraries/Firmata/extras/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Firmata/extras/LICENSE.txt -------------------------------------------------------------------------------- /libraries/Firmata/extras/revisions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Firmata/extras/revisions.txt -------------------------------------------------------------------------------- /libraries/Firmata/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Firmata/keywords.txt -------------------------------------------------------------------------------- /libraries/Firmata/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Firmata/library.properties -------------------------------------------------------------------------------- /libraries/Firmata/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Firmata/readme.md -------------------------------------------------------------------------------- /libraries/Firmata/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Firmata/release.sh -------------------------------------------------------------------------------- /libraries/Firmata/test/firmata_test/firmata_test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Firmata/test/firmata_test/firmata_test.ino -------------------------------------------------------------------------------- /libraries/Firmata/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Firmata/test/readme.md -------------------------------------------------------------------------------- /libraries/Firmata/utility/EthernetClientStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Firmata/utility/EthernetClientStream.cpp -------------------------------------------------------------------------------- /libraries/Firmata/utility/EthernetClientStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Firmata/utility/EthernetClientStream.h -------------------------------------------------------------------------------- /libraries/Firmata/utility/firmataDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Firmata/utility/firmataDebug.h -------------------------------------------------------------------------------- /libraries/Firmata/utility/serialUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Firmata/utility/serialUtils.h -------------------------------------------------------------------------------- /libraries/GSM/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/README.adoc -------------------------------------------------------------------------------- /libraries/GSM/examples/GsmWebClient/GsmWebClient.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/examples/GsmWebClient/GsmWebClient.ino -------------------------------------------------------------------------------- /libraries/GSM/examples/GsmWebServer/GsmWebServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/examples/GsmWebServer/GsmWebServer.ino -------------------------------------------------------------------------------- /libraries/GSM/examples/MakeVoiceCall/MakeVoiceCall.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/examples/MakeVoiceCall/MakeVoiceCall.ino -------------------------------------------------------------------------------- /libraries/GSM/examples/ReceiveSMS/ReceiveSMS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/examples/ReceiveSMS/ReceiveSMS.ino -------------------------------------------------------------------------------- /libraries/GSM/examples/ReceiveVoiceCall/ReceiveVoiceCall.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/examples/ReceiveVoiceCall/ReceiveVoiceCall.ino -------------------------------------------------------------------------------- /libraries/GSM/examples/SendSMS/SendSMS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/examples/SendSMS/SendSMS.ino -------------------------------------------------------------------------------- /libraries/GSM/examples/Tools/BandManagement/BandManagement.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/examples/Tools/BandManagement/BandManagement.ino -------------------------------------------------------------------------------- /libraries/GSM/examples/Tools/GsmScanNetworks/GsmScanNetworks.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/examples/Tools/GsmScanNetworks/GsmScanNetworks.ino -------------------------------------------------------------------------------- /libraries/GSM/examples/Tools/PinManagement/PinManagement.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/examples/Tools/PinManagement/PinManagement.ino -------------------------------------------------------------------------------- /libraries/GSM/examples/Tools/TestGPRS/TestGPRS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/examples/Tools/TestGPRS/TestGPRS.ino -------------------------------------------------------------------------------- /libraries/GSM/examples/Tools/TestModem/TestModem.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/examples/Tools/TestModem/TestModem.ino -------------------------------------------------------------------------------- /libraries/GSM/examples/Tools/TestWebServer/TestWebServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/examples/Tools/TestWebServer/TestWebServer.ino -------------------------------------------------------------------------------- /libraries/GSM/extras/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/extras/License.txt -------------------------------------------------------------------------------- /libraries/GSM/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/keywords.txt -------------------------------------------------------------------------------- /libraries/GSM/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/library.properties -------------------------------------------------------------------------------- /libraries/GSM/src/GSM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3CircularBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3CircularBuffer.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3CircularBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3CircularBuffer.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3IO.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileAccessProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3MobileAccessProvider.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileAccessProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3MobileAccessProvider.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileCellManagement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3MobileCellManagement.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileCellManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3MobileCellManagement.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileClientProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3MobileClientProvider.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileClientProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3MobileClientProvider.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileClientService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3MobileClientService.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileClientService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3MobileClientService.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileDataNetworkProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3MobileDataNetworkProvider.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileDataNetworkProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3MobileDataNetworkProvider.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileMockupProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3MobileMockupProvider.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileMockupProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3MobileMockupProvider.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileNetworkProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3MobileNetworkProvider.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileNetworkProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3MobileNetworkProvider.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileNetworkRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3MobileNetworkRegistry.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileNetworkRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3MobileNetworkRegistry.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileSMSProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3MobileSMSProvider.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileSMSProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3MobileSMSProvider.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileServerProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3MobileServerProvider.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileServerProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3MobileServerProvider.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileServerService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3MobileServerService.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileServerService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3MobileServerService.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileVoiceProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3MobileVoiceProvider.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileVoiceProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3MobileVoiceProvider.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3SMSService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3SMSService.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3SMSService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3SMSService.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3ShieldV1.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3ShieldV1.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1AccessProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3ShieldV1AccessProvider.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1AccessProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3ShieldV1AccessProvider.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1BandManagement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3ShieldV1BandManagement.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1BandManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3ShieldV1BandManagement.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1BaseProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3ShieldV1BaseProvider.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1BaseProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3ShieldV1BaseProvider.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1CellManagement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3ShieldV1CellManagement.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1CellManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3ShieldV1CellManagement.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1ClientProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3ShieldV1ClientProvider.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1ClientProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3ShieldV1ClientProvider.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1DataNetworkProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3ShieldV1DataNetworkProvider.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1DataNetworkProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3ShieldV1DataNetworkProvider.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1DirectModemProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3ShieldV1DirectModemProvider.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1DirectModemProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3ShieldV1DirectModemProvider.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1ModemCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3ShieldV1ModemCore.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1ModemCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3ShieldV1ModemCore.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1ModemVerification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3ShieldV1ModemVerification.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1ModemVerification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3ShieldV1ModemVerification.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1MultiClientProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3ShieldV1MultiClientProvider.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1MultiClientProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3ShieldV1MultiClientProvider.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1MultiServerProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3ShieldV1MultiServerProvider.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1MultiServerProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3ShieldV1MultiServerProvider.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1PinManagement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3ShieldV1PinManagement.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1PinManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3ShieldV1PinManagement.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1SMSProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3ShieldV1SMSProvider.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1SMSProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3ShieldV1SMSProvider.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1ScanNetworks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3ShieldV1ScanNetworks.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1ScanNetworks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3ShieldV1ScanNetworks.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1ServerProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3ShieldV1ServerProvider.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1ServerProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3ShieldV1ServerProvider.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1VoiceProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3ShieldV1VoiceProvider.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1VoiceProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3ShieldV1VoiceProvider.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3SoftSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3SoftSerial.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3SoftSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3SoftSerial.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3VoiceCallService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3VoiceCallService.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3VoiceCallService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/GSM/src/GSM3VoiceCallService.h -------------------------------------------------------------------------------- /libraries/Keyboard/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Keyboard/README.adoc -------------------------------------------------------------------------------- /libraries/Keyboard/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Keyboard/keywords.txt -------------------------------------------------------------------------------- /libraries/Keyboard/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Keyboard/library.properties -------------------------------------------------------------------------------- /libraries/Keyboard/src/Keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Keyboard/src/Keyboard.cpp -------------------------------------------------------------------------------- /libraries/Keyboard/src/Keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Keyboard/src/Keyboard.h -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/FastIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/FastIO.cpp -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/FastIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/FastIO.h -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/I2CIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/I2CIO.cpp -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/I2CIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/I2CIO.h -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/LCD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/LCD.cpp -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/LCD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/LCD.h -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/LiquidCrystal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/LiquidCrystal.cpp -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/LiquidCrystal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/LiquidCrystal.h -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/LiquidCrystal_I2C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/LiquidCrystal_I2C.cpp -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/LiquidCrystal_I2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/LiquidCrystal_I2C.h -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/LiquidCrystal_I2C_ByVac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/LiquidCrystal_I2C_ByVac.cpp -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/LiquidCrystal_I2C_ByVac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/LiquidCrystal_I2C_ByVac.h -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/LiquidCrystal_SI2C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/LiquidCrystal_SI2C.cpp -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/LiquidCrystal_SI2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/LiquidCrystal_SI2C.h -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/LiquidCrystal_SR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/LiquidCrystal_SR.cpp -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/LiquidCrystal_SR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/LiquidCrystal_SR.h -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/LiquidCrystal_SR1W.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/LiquidCrystal_SR1W.cpp -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/LiquidCrystal_SR1W.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/LiquidCrystal_SR1W.h -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/LiquidCrystal_SR2W.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/LiquidCrystal_SR2W.cpp -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/LiquidCrystal_SR2W.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/LiquidCrystal_SR2W.h -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/LiquidCrystal_SR3W.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/LiquidCrystal_SR3W.cpp -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/LiquidCrystal_SR3W.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/LiquidCrystal_SR3W.h -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/README.md -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/SI2CIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/SI2CIO.cpp -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/SI2CIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/SI2CIO.h -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/SoftI2CMaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/SoftI2CMaster.h -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/def/doxygen.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/def/doxygen.def -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/doxygen_entrydb_2806.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/doxygen_entrydb_2806.tmp -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/doxygen_objdb_2806.tmp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/examples/LCDiSpeed/LCDiSpeed.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/examples/LCDiSpeed/LCDiSpeed.pde -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/examples/LCDiSpeed/LCDiSpeed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/examples/LCDiSpeed/LCDiSpeed.txt -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/keywords.txt -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/Doxyfile -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/def/doxygen.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/def/doxygen.def -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/def/doxygen.def.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/def/doxygen.def.txt -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/_fast_i_o_8cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/_fast_i_o_8cpp.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/_fast_i_o_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/_fast_i_o_8h.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/_i2_c_i_o_8cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/_i2_c_i_o_8cpp.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/_i2_c_i_o_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/_i2_c_i_o_8h.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/_l_c_d_8cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/_l_c_d_8cpp.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/_l_c_d_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/_l_c_d_8h.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/_l_c_d_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/_l_c_d_8h_source.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/annotated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/annotated.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/annotated_dup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/annotated_dup.js -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/arrowdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/arrowdown.png -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/arrowright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/arrowright.png -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/bc_s.png -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/bdwn.png -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/class_i2_c_i_o.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/class_i2_c_i_o.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/class_i2_c_i_o.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/class_i2_c_i_o.js -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/class_l_c_d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/class_l_c_d.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/class_l_c_d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/class_l_c_d.js -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/class_l_c_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/class_l_c_d.png -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/class_s_i2_c_i_o.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/class_s_i2_c_i_o.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/class_s_i2_c_i_o.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/class_s_i2_c_i_o.js -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/classes.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/closed.png -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/doc.png -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/doxygen.css -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/doxygen.png -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/dynsections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/dynsections.js -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/files.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/files.js -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/folderclosed.png -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/folderopen.png -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/ftv2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/ftv2blank.png -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/ftv2doc.png -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/ftv2folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/ftv2folderclosed.png -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/ftv2folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/ftv2folderopen.png -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/ftv2lastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/ftv2lastnode.png -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/ftv2link.png -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/ftv2mlastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/ftv2mlastnode.png -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/ftv2mnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/ftv2mnode.png -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/ftv2node.png -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/ftv2plastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/ftv2plastnode.png -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/ftv2pnode.png -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/ftv2splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/ftv2splitbar.png -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/ftv2vertline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/ftv2vertline.png -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/functions.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/functions_func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/functions_func.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/functions_vars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/functions_vars.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/globals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/globals.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/globals_defs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/globals_defs.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/globals_enum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/globals_enum.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/globals_eval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/globals_eval.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/globals_func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/globals_func.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/globals_type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/globals_type.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/hierarchy.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/hierarchy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/hierarchy.js -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/index.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/installdox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/installdox -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/jquery.js -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/logoGoogle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/logoGoogle.jpg -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/nav_f.png -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/nav_g.png -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/nav_h.png -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/navtree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/navtree.css -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/navtree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/navtree.js -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/navtreedata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/navtreedata.js -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/navtreeindex0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/navtreeindex0.js -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/open.png -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/pages.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/resize.js -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_0.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_0.js -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_1.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_1.js -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_2.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_2.js -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_3.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_3.js -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_4.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_4.js -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_5.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_5.js -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_5f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_5f.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_6.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_6.js -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_61.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_61.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_62.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_62.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_63.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_63.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_64.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_65.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_65.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_66.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_66.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_68.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_68.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_69.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_69.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_6c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_6c.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_6d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_6d.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_6e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_6e.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_6f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_6f.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_7.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_7.js -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_70.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_70.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_72.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_72.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_73.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_73.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_74.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_74.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_77.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_77.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_8.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_8.js -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_9.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_9.js -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_a.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_a.js -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_b.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_b.js -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_c.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_c.js -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_d.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/all_d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/all_d.js -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/classes_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/classes_0.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/classes_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/classes_0.js -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/classes_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/classes_1.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/classes_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/classes_1.js -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/classes_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/classes_2.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/classes_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/classes_2.js -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/close.png -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/enums_74.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/enums_74.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/files_66.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/files_66.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/files_69.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/files_69.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/files_6c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/files_6c.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/functions_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/functions_0.js -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/functions_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/functions_1.js -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/functions_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/functions_2.js -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/functions_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/functions_3.js -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/mag_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/mag_sel.png -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/pages_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/pages_0.html -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/pages_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/pages_0.js -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/search.css -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/search.js -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/search_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/search_l.png -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/search_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/search_m.png -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/search/search_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/search/search_r.png -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/splitbar.png -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/sync_off.png -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/sync_on.png -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/tab_a.png -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/tab_b.png -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/tab_h.png -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/tab_s.png -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/utility/docs/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/LiquidCrystal_I2C/utility/docs/html/tabs.css -------------------------------------------------------------------------------- /libraries/Mouse/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Mouse/README.adoc -------------------------------------------------------------------------------- /libraries/Mouse/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Mouse/keywords.txt -------------------------------------------------------------------------------- /libraries/Mouse/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Mouse/library.properties -------------------------------------------------------------------------------- /libraries/Mouse/src/Mouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Mouse/src/Mouse.cpp -------------------------------------------------------------------------------- /libraries/Mouse/src/Mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Mouse/src/Mouse.h -------------------------------------------------------------------------------- /libraries/NewPing/NewPing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/NewPing/NewPing.cpp -------------------------------------------------------------------------------- /libraries/NewPing/NewPing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/NewPing/NewPing.h -------------------------------------------------------------------------------- /libraries/NewPing/examples/NewPing15Sensors/NewPing15Sensors.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/NewPing/examples/NewPing15Sensors/NewPing15Sensors.pde -------------------------------------------------------------------------------- /libraries/NewPing/examples/NewPingExample/NewPingExample.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/NewPing/examples/NewPingExample/NewPingExample.pde -------------------------------------------------------------------------------- /libraries/NewPing/examples/TimerExample/TimerExample.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/NewPing/examples/TimerExample/TimerExample.pde -------------------------------------------------------------------------------- /libraries/NewPing/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/NewPing/keywords.txt -------------------------------------------------------------------------------- /libraries/RobotIRremote/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/RobotIRremote/README.adoc -------------------------------------------------------------------------------- /libraries/RobotIRremote/extras/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/RobotIRremote/extras/LICENSE.txt -------------------------------------------------------------------------------- /libraries/RobotIRremote/extras/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/RobotIRremote/extras/readme -------------------------------------------------------------------------------- /libraries/RobotIRremote/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/RobotIRremote/keywords.txt -------------------------------------------------------------------------------- /libraries/RobotIRremote/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/RobotIRremote/library.properties -------------------------------------------------------------------------------- /libraries/RobotIRremote/src/IRremote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/RobotIRremote/src/IRremote.cpp -------------------------------------------------------------------------------- /libraries/RobotIRremote/src/IRremote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/RobotIRremote/src/IRremote.h -------------------------------------------------------------------------------- /libraries/RobotIRremote/src/IRremoteInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/RobotIRremote/src/IRremoteInt.h -------------------------------------------------------------------------------- /libraries/RobotIRremote/src/IRremoteTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/RobotIRremote/src/IRremoteTools.cpp -------------------------------------------------------------------------------- /libraries/RobotIRremote/src/IRremoteTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/RobotIRremote/src/IRremoteTools.h -------------------------------------------------------------------------------- /libraries/Robot_Control/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/README.adoc -------------------------------------------------------------------------------- /libraries/Robot_Control/examples/explore/R01_Logo/R01_Logo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/examples/explore/R01_Logo/R01_Logo.ino -------------------------------------------------------------------------------- /libraries/Robot_Control/examples/learn/AllIOPorts/AllIOPorts.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/examples/learn/AllIOPorts/AllIOPorts.ino -------------------------------------------------------------------------------- /libraries/Robot_Control/examples/learn/Beep/Beep.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/examples/learn/Beep/Beep.ino -------------------------------------------------------------------------------- /libraries/Robot_Control/examples/learn/Compass/Compass.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/examples/learn/Compass/Compass.ino -------------------------------------------------------------------------------- /libraries/Robot_Control/examples/learn/IRArray/IRArray.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/examples/learn/IRArray/IRArray.ino -------------------------------------------------------------------------------- /libraries/Robot_Control/examples/learn/LCDPrint/LCDPrint.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/examples/learn/LCDPrint/LCDPrint.ino -------------------------------------------------------------------------------- /libraries/Robot_Control/examples/learn/Melody/Melody.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/examples/learn/Melody/Melody.ino -------------------------------------------------------------------------------- /libraries/Robot_Control/examples/learn/MotorTest/MotorTest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/examples/learn/MotorTest/MotorTest.ino -------------------------------------------------------------------------------- /libraries/Robot_Control/examples/learn/TurnTest/TurnTest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/examples/learn/TurnTest/TurnTest.ino -------------------------------------------------------------------------------- /libraries/Robot_Control/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/library.properties -------------------------------------------------------------------------------- /libraries/Robot_Control/src/ArduinoRobot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/ArduinoRobot.cpp -------------------------------------------------------------------------------- /libraries/Robot_Control/src/ArduinoRobot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/ArduinoRobot.h -------------------------------------------------------------------------------- /libraries/Robot_Control/src/Arduino_LCD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/Arduino_LCD.cpp -------------------------------------------------------------------------------- /libraries/Robot_Control/src/Arduino_LCD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/Arduino_LCD.h -------------------------------------------------------------------------------- /libraries/Robot_Control/src/Compass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/Compass.cpp -------------------------------------------------------------------------------- /libraries/Robot_Control/src/Compass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/Compass.h -------------------------------------------------------------------------------- /libraries/Robot_Control/src/EEPROM_I2C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/EEPROM_I2C.cpp -------------------------------------------------------------------------------- /libraries/Robot_Control/src/EEPROM_I2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/EEPROM_I2C.h -------------------------------------------------------------------------------- /libraries/Robot_Control/src/EasyTransfer2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/EasyTransfer2.cpp -------------------------------------------------------------------------------- /libraries/Robot_Control/src/EasyTransfer2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/EasyTransfer2.h -------------------------------------------------------------------------------- /libraries/Robot_Control/src/Fat16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/Fat16.cpp -------------------------------------------------------------------------------- /libraries/Robot_Control/src/Fat16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/Fat16.h -------------------------------------------------------------------------------- /libraries/Robot_Control/src/Fat16Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/Fat16Config.h -------------------------------------------------------------------------------- /libraries/Robot_Control/src/Fat16mainpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/Fat16mainpage.h -------------------------------------------------------------------------------- /libraries/Robot_Control/src/Fat16util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/Fat16util.h -------------------------------------------------------------------------------- /libraries/Robot_Control/src/FatStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/FatStructs.h -------------------------------------------------------------------------------- /libraries/Robot_Control/src/Melody.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/Melody.cpp -------------------------------------------------------------------------------- /libraries/Robot_Control/src/Motors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/Motors.cpp -------------------------------------------------------------------------------- /libraries/Robot_Control/src/Multiplexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/Multiplexer.cpp -------------------------------------------------------------------------------- /libraries/Robot_Control/src/Multiplexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/Multiplexer.h -------------------------------------------------------------------------------- /libraries/Robot_Control/src/RobotSdCard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/RobotSdCard.cpp -------------------------------------------------------------------------------- /libraries/Robot_Control/src/SdCard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/SdCard.cpp -------------------------------------------------------------------------------- /libraries/Robot_Control/src/SdCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/SdCard.h -------------------------------------------------------------------------------- /libraries/Robot_Control/src/SdInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/SdInfo.h -------------------------------------------------------------------------------- /libraries/Robot_Control/src/Sensors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/Sensors.cpp -------------------------------------------------------------------------------- /libraries/Robot_Control/src/Squawk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/Squawk.cpp -------------------------------------------------------------------------------- /libraries/Robot_Control/src/Squawk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/Squawk.h -------------------------------------------------------------------------------- /libraries/Robot_Control/src/SquawkSD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/SquawkSD.cpp -------------------------------------------------------------------------------- /libraries/Robot_Control/src/SquawkSD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/SquawkSD.h -------------------------------------------------------------------------------- /libraries/Robot_Control/src/communication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/communication.cpp -------------------------------------------------------------------------------- /libraries/Robot_Control/src/glcdfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/glcdfont.c -------------------------------------------------------------------------------- /libraries/Robot_Control/src/helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/helper.cpp -------------------------------------------------------------------------------- /libraries/Robot_Control/src/information.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/information.cpp -------------------------------------------------------------------------------- /libraries/Robot_Control/src/keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/keyboard.cpp -------------------------------------------------------------------------------- /libraries/Robot_Control/src/lcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/lcd.cpp -------------------------------------------------------------------------------- /libraries/Robot_Control/src/utility/Adafruit_GFX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/utility/Adafruit_GFX.cpp -------------------------------------------------------------------------------- /libraries/Robot_Control/src/utility/Adafruit_GFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/utility/Adafruit_GFX.h -------------------------------------------------------------------------------- /libraries/Robot_Control/src/utility/RobotTextManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/utility/RobotTextManager.cpp -------------------------------------------------------------------------------- /libraries/Robot_Control/src/utility/RobotTextManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/utility/RobotTextManager.h -------------------------------------------------------------------------------- /libraries/Robot_Control/src/utility/VirtualKeyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/utility/VirtualKeyboard.cpp -------------------------------------------------------------------------------- /libraries/Robot_Control/src/utility/VirtualKeyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/utility/VirtualKeyboard.h -------------------------------------------------------------------------------- /libraries/Robot_Control/src/utility/scripts_Hello_User.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Control/src/utility/scripts_Hello_User.h -------------------------------------------------------------------------------- /libraries/Robot_Motor/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Motor/README.adoc -------------------------------------------------------------------------------- /libraries/Robot_Motor/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Motor/library.properties -------------------------------------------------------------------------------- /libraries/Robot_Motor/src/ArduinoRobotMotorBoard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Motor/src/ArduinoRobotMotorBoard.cpp -------------------------------------------------------------------------------- /libraries/Robot_Motor/src/ArduinoRobotMotorBoard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Motor/src/ArduinoRobotMotorBoard.h -------------------------------------------------------------------------------- /libraries/Robot_Motor/src/EasyTransfer2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Motor/src/EasyTransfer2.cpp -------------------------------------------------------------------------------- /libraries/Robot_Motor/src/EasyTransfer2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Motor/src/EasyTransfer2.h -------------------------------------------------------------------------------- /libraries/Robot_Motor/src/LineFollow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Motor/src/LineFollow.h -------------------------------------------------------------------------------- /libraries/Robot_Motor/src/Multiplexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Motor/src/Multiplexer.cpp -------------------------------------------------------------------------------- /libraries/Robot_Motor/src/Multiplexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Motor/src/Multiplexer.h -------------------------------------------------------------------------------- /libraries/Robot_Motor/src/lineFollow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Robot_Motor/src/lineFollow.cpp -------------------------------------------------------------------------------- /libraries/SD/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/SD/README.adoc -------------------------------------------------------------------------------- /libraries/SD/examples/CardInfo/CardInfo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/SD/examples/CardInfo/CardInfo.ino -------------------------------------------------------------------------------- /libraries/SD/examples/Datalogger/Datalogger.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/SD/examples/Datalogger/Datalogger.ino -------------------------------------------------------------------------------- /libraries/SD/examples/DumpFile/DumpFile.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/SD/examples/DumpFile/DumpFile.ino -------------------------------------------------------------------------------- /libraries/SD/examples/Files/Files.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/SD/examples/Files/Files.ino -------------------------------------------------------------------------------- /libraries/SD/examples/ReadWrite/ReadWrite.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/SD/examples/ReadWrite/ReadWrite.ino -------------------------------------------------------------------------------- /libraries/SD/examples/listfiles/listfiles.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/SD/examples/listfiles/listfiles.ino -------------------------------------------------------------------------------- /libraries/SD/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/SD/keywords.txt -------------------------------------------------------------------------------- /libraries/SD/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/SD/library.properties -------------------------------------------------------------------------------- /libraries/SD/src/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/SD/src/File.cpp -------------------------------------------------------------------------------- /libraries/SD/src/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/SD/src/README.txt -------------------------------------------------------------------------------- /libraries/SD/src/SD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/SD/src/SD.cpp -------------------------------------------------------------------------------- /libraries/SD/src/SD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/SD/src/SD.h -------------------------------------------------------------------------------- /libraries/SD/src/utility/FatStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/SD/src/utility/FatStructs.h -------------------------------------------------------------------------------- /libraries/SD/src/utility/Sd2Card.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/SD/src/utility/Sd2Card.cpp -------------------------------------------------------------------------------- /libraries/SD/src/utility/Sd2Card.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/SD/src/utility/Sd2Card.h -------------------------------------------------------------------------------- /libraries/SD/src/utility/Sd2PinMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/SD/src/utility/Sd2PinMap.h -------------------------------------------------------------------------------- /libraries/SD/src/utility/SdFat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/SD/src/utility/SdFat.h -------------------------------------------------------------------------------- /libraries/SD/src/utility/SdFatUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/SD/src/utility/SdFatUtil.h -------------------------------------------------------------------------------- /libraries/SD/src/utility/SdFatmainpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/SD/src/utility/SdFatmainpage.h -------------------------------------------------------------------------------- /libraries/SD/src/utility/SdFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/SD/src/utility/SdFile.cpp -------------------------------------------------------------------------------- /libraries/SD/src/utility/SdInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/SD/src/utility/SdInfo.h -------------------------------------------------------------------------------- /libraries/SD/src/utility/SdVolume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/SD/src/utility/SdVolume.cpp -------------------------------------------------------------------------------- /libraries/Servo/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Servo/README.adoc -------------------------------------------------------------------------------- /libraries/Servo/examples/Knob/Knob.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Servo/examples/Knob/Knob.ino -------------------------------------------------------------------------------- /libraries/Servo/examples/Sweep/Sweep.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Servo/examples/Sweep/Sweep.ino -------------------------------------------------------------------------------- /libraries/Servo/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Servo/keywords.txt -------------------------------------------------------------------------------- /libraries/Servo/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Servo/library.properties -------------------------------------------------------------------------------- /libraries/Servo/src/Servo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Servo/src/Servo.h -------------------------------------------------------------------------------- /libraries/Servo/src/avr/Servo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Servo/src/avr/Servo.cpp -------------------------------------------------------------------------------- /libraries/Servo/src/avr/ServoTimers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Servo/src/avr/ServoTimers.h -------------------------------------------------------------------------------- /libraries/Servo/src/sam/Servo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Servo/src/sam/Servo.cpp -------------------------------------------------------------------------------- /libraries/Servo/src/sam/ServoTimers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Servo/src/sam/ServoTimers.h -------------------------------------------------------------------------------- /libraries/Servo/src/samd/Servo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Servo/src/samd/Servo.cpp -------------------------------------------------------------------------------- /libraries/Servo/src/samd/ServoTimers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Servo/src/samd/ServoTimers.h -------------------------------------------------------------------------------- /libraries/SpacebrewYun/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/SpacebrewYun/README.adoc -------------------------------------------------------------------------------- /libraries/SpacebrewYun/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/SpacebrewYun/keywords.txt -------------------------------------------------------------------------------- /libraries/SpacebrewYun/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/SpacebrewYun/library.properties -------------------------------------------------------------------------------- /libraries/SpacebrewYun/src/SpacebrewYun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/SpacebrewYun/src/SpacebrewYun.cpp -------------------------------------------------------------------------------- /libraries/SpacebrewYun/src/SpacebrewYun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/SpacebrewYun/src/SpacebrewYun.h -------------------------------------------------------------------------------- /libraries/Stepper/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Stepper/README.adoc -------------------------------------------------------------------------------- /libraries/Stepper/examples/MotorKnob/MotorKnob.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Stepper/examples/MotorKnob/MotorKnob.ino -------------------------------------------------------------------------------- /libraries/Stepper/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Stepper/keywords.txt -------------------------------------------------------------------------------- /libraries/Stepper/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Stepper/library.properties -------------------------------------------------------------------------------- /libraries/Stepper/src/Stepper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Stepper/src/Stepper.cpp -------------------------------------------------------------------------------- /libraries/Stepper/src/Stepper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Stepper/src/Stepper.h -------------------------------------------------------------------------------- /libraries/TFT/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/TFT/README.adoc -------------------------------------------------------------------------------- /libraries/TFT/examples/Arduino/TFTBitmapLogo/TFTBitmapLogo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/TFT/examples/Arduino/TFTBitmapLogo/TFTBitmapLogo.ino -------------------------------------------------------------------------------- /libraries/TFT/examples/Arduino/TFTBitmapLogo/arduino.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/TFT/examples/Arduino/TFTBitmapLogo/arduino.bmp -------------------------------------------------------------------------------- /libraries/TFT/examples/Arduino/TFTColorPicker/TFTColorPicker.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/TFT/examples/Arduino/TFTColorPicker/TFTColorPicker.ino -------------------------------------------------------------------------------- /libraries/TFT/examples/Arduino/TFTDisplayText/TFTDisplayText.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/TFT/examples/Arduino/TFTDisplayText/TFTDisplayText.ino -------------------------------------------------------------------------------- /libraries/TFT/examples/Arduino/TFTEtchASketch/TFTEtchASketch.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/TFT/examples/Arduino/TFTEtchASketch/TFTEtchASketch.ino -------------------------------------------------------------------------------- /libraries/TFT/examples/Arduino/TFTGraph/TFTGraph.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/TFT/examples/Arduino/TFTGraph/TFTGraph.ino -------------------------------------------------------------------------------- /libraries/TFT/examples/Arduino/TFTPong/TFTPong.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/TFT/examples/Arduino/TFTPong/TFTPong.ino -------------------------------------------------------------------------------- /libraries/TFT/examples/Esplora/EsploraTFTBitmapLogo/arduino.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/TFT/examples/Esplora/EsploraTFTBitmapLogo/arduino.bmp -------------------------------------------------------------------------------- /libraries/TFT/examples/Esplora/EsploraTFTPong/EsploraTFTPong.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/TFT/examples/Esplora/EsploraTFTPong/EsploraTFTPong.ino -------------------------------------------------------------------------------- /libraries/TFT/examples/Esplora/EsploraTFTTemp/EsploraTFTTemp.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/TFT/examples/Esplora/EsploraTFTTemp/EsploraTFTTemp.ino -------------------------------------------------------------------------------- /libraries/TFT/extras/Adafruit-README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/TFT/extras/Adafruit-README.txt -------------------------------------------------------------------------------- /libraries/TFT/extras/Adafruit-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/TFT/extras/Adafruit-license.txt -------------------------------------------------------------------------------- /libraries/TFT/extras/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/TFT/extras/README.md -------------------------------------------------------------------------------- /libraries/TFT/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/TFT/keywords.txt -------------------------------------------------------------------------------- /libraries/TFT/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/TFT/library.properties -------------------------------------------------------------------------------- /libraries/TFT/src/TFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/TFT/src/TFT.cpp -------------------------------------------------------------------------------- /libraries/TFT/src/TFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/TFT/src/TFT.h -------------------------------------------------------------------------------- /libraries/TFT/src/utility/Adafruit_GFX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/TFT/src/utility/Adafruit_GFX.cpp -------------------------------------------------------------------------------- /libraries/TFT/src/utility/Adafruit_GFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/TFT/src/utility/Adafruit_GFX.h -------------------------------------------------------------------------------- /libraries/TFT/src/utility/Adafruit_ST7735.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/TFT/src/utility/Adafruit_ST7735.cpp -------------------------------------------------------------------------------- /libraries/TFT/src/utility/Adafruit_ST7735.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/TFT/src/utility/Adafruit_ST7735.h -------------------------------------------------------------------------------- /libraries/TFT/src/utility/PImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/TFT/src/utility/PImage.h -------------------------------------------------------------------------------- /libraries/TFT/src/utility/glcdfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/TFT/src/utility/glcdfont.c -------------------------------------------------------------------------------- /libraries/TFT/src/utility/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/TFT/src/utility/keywords.txt -------------------------------------------------------------------------------- /libraries/Temboo/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/README.adoc -------------------------------------------------------------------------------- /libraries/Temboo/examples/ArduinoYun/ReadATweet/ReadATweet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/examples/ArduinoYun/ReadATweet/ReadATweet.ino -------------------------------------------------------------------------------- /libraries/Temboo/examples/ArduinoYun/ReadATweet/TembooAccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/examples/ArduinoYun/ReadATweet/TembooAccount.h -------------------------------------------------------------------------------- /libraries/Temboo/examples/ArduinoYun/SendATweet/SendATweet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/examples/ArduinoYun/SendATweet/SendATweet.ino -------------------------------------------------------------------------------- /libraries/Temboo/examples/ArduinoYun/SendATweet/TembooAccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/examples/ArduinoYun/SendATweet/TembooAccount.h -------------------------------------------------------------------------------- /libraries/Temboo/examples/ArduinoYun/SendAnEmail/SendAnEmail.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/examples/ArduinoYun/SendAnEmail/SendAnEmail.ino -------------------------------------------------------------------------------- /libraries/Temboo/examples/ArduinoYun/SendAnEmail/TembooAccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/examples/ArduinoYun/SendAnEmail/TembooAccount.h -------------------------------------------------------------------------------- /libraries/Temboo/examples/ArduinoYun/SendAnSMS/SendAnSMS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/examples/ArduinoYun/SendAnSMS/SendAnSMS.ino -------------------------------------------------------------------------------- /libraries/Temboo/examples/ArduinoYun/SendAnSMS/TembooAccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/examples/ArduinoYun/SendAnSMS/TembooAccount.h -------------------------------------------------------------------------------- /libraries/Temboo/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/keywords.txt -------------------------------------------------------------------------------- /libraries/Temboo/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/library.properties -------------------------------------------------------------------------------- /libraries/Temboo/src/Temboo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/Temboo.cpp -------------------------------------------------------------------------------- /libraries/Temboo/src/Temboo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/Temboo.h -------------------------------------------------------------------------------- /libraries/Temboo/src/TembooCoAPEdgeDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/TembooCoAPEdgeDevice.cpp -------------------------------------------------------------------------------- /libraries/Temboo/src/TembooCoAPEdgeDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/TembooCoAPEdgeDevice.h -------------------------------------------------------------------------------- /libraries/Temboo/src/TembooMQTTEdgeDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/TembooMQTTEdgeDevice.cpp -------------------------------------------------------------------------------- /libraries/Temboo/src/TembooMQTTEdgeDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/TembooMQTTEdgeDevice.h -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/ArduinoTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/ArduinoTimer.h -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/BaseFormatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/BaseFormatter.cpp -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/BaseFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/BaseFormatter.h -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/ChoreoInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/ChoreoInput.cpp -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/ChoreoInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/ChoreoInput.h -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/ChoreoInputFormatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/ChoreoInputFormatter.cpp -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/ChoreoInputFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/ChoreoInputFormatter.h -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/ChoreoInputSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/ChoreoInputSet.cpp -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/ChoreoInputSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/ChoreoInputSet.h -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/ChoreoOutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/ChoreoOutput.cpp -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/ChoreoOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/ChoreoOutput.h -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/ChoreoOutputFormatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/ChoreoOutputFormatter.cpp -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/ChoreoOutputFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/ChoreoOutputFormatter.h -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/ChoreoOutputSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/ChoreoOutputSet.cpp -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/ChoreoOutputSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/ChoreoOutputSet.h -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/ChoreoPreset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/ChoreoPreset.cpp -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/ChoreoPreset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/ChoreoPreset.h -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/ChoreoPresetFormatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/ChoreoPresetFormatter.cpp -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/ChoreoPresetFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/ChoreoPresetFormatter.h -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/CoapMessageLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/CoapMessageLayer.cpp -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/CoapMessageLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/CoapMessageLayer.h -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/CoapMsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/CoapMsg.cpp -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/CoapMsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/CoapMsg.h -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/CoapRRLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/CoapRRLayer.cpp -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/CoapRRLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/CoapRRLayer.h -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/DataFormatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/DataFormatter.cpp -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/DataFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/DataFormatter.h -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/FP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/FP.h -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/MQTTClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/MQTTClient.h -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/MQTTConnect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/MQTTConnect.h -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/MQTTConnectClient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/MQTTConnectClient.c -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/MQTTConnectServer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/MQTTConnectServer.c -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/MQTTDeserializePublish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/MQTTDeserializePublish.c -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/MQTTFormat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/MQTTFormat.c -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/MQTTFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/MQTTFormat.h -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/MQTTLogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/MQTTLogging.h -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/MQTTPacket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/MQTTPacket.c -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/MQTTPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/MQTTPacket.h -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/MQTTPublish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/MQTTPublish.h -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/MQTTSerializePublish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/MQTTSerializePublish.c -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/MQTTSubscribe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/MQTTSubscribe.h -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/MQTTSubscribeClient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/MQTTSubscribeClient.c -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/MQTTSubscribeServer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/MQTTSubscribeServer.c -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/MQTTUnsubscribe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/MQTTUnsubscribe.h -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/MQTTUnsubscribeClient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/MQTTUnsubscribeClient.c -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/MQTTUnsubscribeServer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/MQTTUnsubscribeServer.c -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/StackTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/StackTrace.h -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/TembooCoAPIPStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/TembooCoAPIPStack.h -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/TembooCoAPSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/TembooCoAPSession.cpp -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/TembooCoAPSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/TembooCoAPSession.h -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/TembooGlobal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/TembooGlobal.c -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/TembooGlobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/TembooGlobal.h -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/TembooMQTTIPStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/TembooMQTTIPStack.h -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/TembooMQTTSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/TembooMQTTSession.cpp -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/TembooMQTTSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/TembooMQTTSession.h -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/TembooSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/TembooSession.cpp -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/TembooSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/TembooSession.h -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/TembooTags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/TembooTags.h -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/TembooTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/TembooTimer.h -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/tmbhmac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/tmbhmac.cpp -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/tmbhmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/tmbhmac.h -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/tmbmd5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/tmbmd5.cpp -------------------------------------------------------------------------------- /libraries/Temboo/src/utility/tmbmd5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Temboo/src/utility/tmbmd5.h -------------------------------------------------------------------------------- /libraries/Ultrasonic/Ultrasonic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Ultrasonic/Ultrasonic.cpp -------------------------------------------------------------------------------- /libraries/Ultrasonic/Ultrasonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Ultrasonic/Ultrasonic.h -------------------------------------------------------------------------------- /libraries/Ultrasonic/examples/UltrasonicDemo/UltrasonicDemo.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Ultrasonic/examples/UltrasonicDemo/UltrasonicDemo.pde -------------------------------------------------------------------------------- /libraries/Ultrasonic/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/Ultrasonic/keywords.txt -------------------------------------------------------------------------------- /libraries/WiFi/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/README.adoc -------------------------------------------------------------------------------- /libraries/WiFi/examples/ConnectWithWEP/ConnectWithWEP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/examples/ConnectWithWEP/ConnectWithWEP.ino -------------------------------------------------------------------------------- /libraries/WiFi/examples/ConnectWithWPA/ConnectWithWPA.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/examples/ConnectWithWPA/ConnectWithWPA.ino -------------------------------------------------------------------------------- /libraries/WiFi/examples/ScanNetworks/ScanNetworks.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/examples/ScanNetworks/ScanNetworks.ino -------------------------------------------------------------------------------- /libraries/WiFi/examples/WiFiChatServer/WiFiChatServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/examples/WiFiChatServer/WiFiChatServer.ino -------------------------------------------------------------------------------- /libraries/WiFi/examples/WiFiUdpNtpClient/WiFiUdpNtpClient.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/examples/WiFiUdpNtpClient/WiFiUdpNtpClient.ino -------------------------------------------------------------------------------- /libraries/WiFi/examples/WiFiWebClient/WiFiWebClient.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/examples/WiFiWebClient/WiFiWebClient.ino -------------------------------------------------------------------------------- /libraries/WiFi/examples/WiFiWebServer/WiFiWebServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/examples/WiFiWebServer/WiFiWebServer.ino -------------------------------------------------------------------------------- /libraries/WiFi/extras/binary/wifiHD.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/binary/wifiHD.elf -------------------------------------------------------------------------------- /libraries/WiFi/extras/binary/wifiHD.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/binary/wifiHD.hex -------------------------------------------------------------------------------- /libraries/WiFi/extras/binary/wifiHD_2_1.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/binary/wifiHD_2_1.elf -------------------------------------------------------------------------------- /libraries/WiFi/extras/binary/wifi_dnld.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/binary/wifi_dnld.elf -------------------------------------------------------------------------------- /libraries/WiFi/extras/binary/wifi_dnld.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/binary/wifi_dnld.hex -------------------------------------------------------------------------------- /libraries/WiFi/extras/binary/wifi_dnld_2_1.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/binary/wifi_dnld_2_1.elf -------------------------------------------------------------------------------- /libraries/WiFi/extras/scripts/ArduinoWifiShield_upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/scripts/ArduinoWifiShield_upgrade.sh -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/.cproject -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/.project -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/Release/wifiHD.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/Release/wifiHD.elf -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/Release/wifiHD.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/Release/wifiHD.hex -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/CONFIG/conf_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/CONFIG/conf_access.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/CONFIG/conf_at45dbx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/CONFIG/conf_at45dbx.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/CONFIG/conf_ebi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/CONFIG/conf_ebi.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/CONFIG/conf_sd_mmc_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/CONFIG/conf_sd_mmc_spi.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/WIFI/HD/v2.7.0/revision.txt: -------------------------------------------------------------------------------- 1 | Revision: 2491 2 | -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/parts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/parts.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/ard_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/ard_spi.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/ard_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/ard_spi.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/ard_tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/ard_tcp.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/ard_tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/ard_tcp.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/ard_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/ard_utils.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/ard_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/ard_utils.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/avr32_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/avr32_spi.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/board_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/board_init.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/board_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/board_init.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/cmd_wl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/cmd_wl.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/cmd_wl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/cmd_wl.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/console.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/console.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/debug.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/fw_download.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/fw_download.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/fw_download_extflash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/fw_download_extflash.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/license.txt -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/lwip_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/lwip_setup.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/lwip_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/lwip_setup.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/lwipopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/lwipopts.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/main.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/nvram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/nvram.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/nvram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/nvram.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/owl_os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/owl_os.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/ping.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/ping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/ping.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/printf-stdarg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/printf-stdarg.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/printf-stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/printf-stdarg.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/timer.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/timer.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/top_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/top_defs.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/trace.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/util.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/util.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/wifi_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/wifi_spi.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/wl_cm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/wl_cm.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/wl_cm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/wl_cm.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/wl_definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/src/wl_definitions.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/wifiHD.cproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifiHD/wifiHD.cproj -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifi_dnld/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifi_dnld/.cproject -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifi_dnld/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifi_dnld/.project -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifi_dnld/Release/wifi_dnld.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifi_dnld/Release/wifi_dnld.elf -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifi_dnld/src/CONFIG/conf_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifi_dnld/src/CONFIG/conf_access.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifi_dnld/src/CONFIG/conf_at45dbx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifi_dnld/src/CONFIG/conf_at45dbx.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifi_dnld/src/Doc/SPB104 product brief.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifi_dnld/src/Doc/SPB104 product brief.pdf -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifi_dnld/src/Doc/gettingstarted.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifi_dnld/src/Doc/gettingstarted.pdf -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifi_dnld/src/clocks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifi_dnld/src/clocks.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifi_dnld/src/clocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifi_dnld/src/clocks.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifi_dnld/src/flash_fw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifi_dnld/src/flash_fw.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifi_dnld/src/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifi_dnld/src/license.txt -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifi_dnld/src/nor_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifi_dnld/src/nor_flash.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifi_dnld/src/nor_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifi_dnld/src/nor_flash.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifi_dnld/src/printf-stdarg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifi_dnld/src/printf-stdarg.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifi_dnld/src/printf-stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifi_dnld/src/printf-stdarg.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifi_dnld/src/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifi_dnld/src/startup.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifi_dnld/src/startup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifi_dnld/src/startup.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifi_dnld/src/wl_fw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifi_dnld/src/wl_fw.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifi_dnld/wifi_dnld.cproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifi_dnld/wifi_dnld.cproj -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifishield.atsln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/extras/wifishield.atsln -------------------------------------------------------------------------------- /libraries/WiFi/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/keywords.txt -------------------------------------------------------------------------------- /libraries/WiFi/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/library.properties -------------------------------------------------------------------------------- /libraries/WiFi/src/WiFi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/src/WiFi.cpp -------------------------------------------------------------------------------- /libraries/WiFi/src/WiFi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/src/WiFi.h -------------------------------------------------------------------------------- /libraries/WiFi/src/WiFiClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/src/WiFiClient.cpp -------------------------------------------------------------------------------- /libraries/WiFi/src/WiFiClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/src/WiFiClient.h -------------------------------------------------------------------------------- /libraries/WiFi/src/WiFiServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/src/WiFiServer.cpp -------------------------------------------------------------------------------- /libraries/WiFi/src/WiFiServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/src/WiFiServer.h -------------------------------------------------------------------------------- /libraries/WiFi/src/WiFiUdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/src/WiFiUdp.cpp -------------------------------------------------------------------------------- /libraries/WiFi/src/WiFiUdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/src/WiFiUdp.h -------------------------------------------------------------------------------- /libraries/WiFi/src/utility/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/src/utility/debug.h -------------------------------------------------------------------------------- /libraries/WiFi/src/utility/server_drv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/src/utility/server_drv.cpp -------------------------------------------------------------------------------- /libraries/WiFi/src/utility/server_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/src/utility/server_drv.h -------------------------------------------------------------------------------- /libraries/WiFi/src/utility/spi_drv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/src/utility/spi_drv.cpp -------------------------------------------------------------------------------- /libraries/WiFi/src/utility/spi_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/src/utility/spi_drv.h -------------------------------------------------------------------------------- /libraries/WiFi/src/utility/wifi_drv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/src/utility/wifi_drv.cpp -------------------------------------------------------------------------------- /libraries/WiFi/src/utility/wifi_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/src/utility/wifi_drv.h -------------------------------------------------------------------------------- /libraries/WiFi/src/utility/wifi_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/src/utility/wifi_spi.h -------------------------------------------------------------------------------- /libraries/WiFi/src/utility/wl_definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/src/utility/wl_definitions.h -------------------------------------------------------------------------------- /libraries/WiFi/src/utility/wl_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/WiFi/src/utility/wl_types.h -------------------------------------------------------------------------------- /libraries/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/libraries/readme.txt -------------------------------------------------------------------------------- /src/DH11.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/src/DH11.ino -------------------------------------------------------------------------------- /src/Sensor_Ultra_Sonico_HC-SR04.ino.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/src/Sensor_Ultra_Sonico_HC-SR04.ino.ino -------------------------------------------------------------------------------- /src/Sensor_Ultra_Sonico_HC-SR04_2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/src/Sensor_Ultra_Sonico_HC-SR04_2.ino -------------------------------------------------------------------------------- /src/TesteScreen_20x4.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/src/TesteScreen_20x4.ino -------------------------------------------------------------------------------- /src/code_snappy.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/src/code_snappy.ino -------------------------------------------------------------------------------- /src/screen_16x2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/src/screen_16x2.ino -------------------------------------------------------------------------------- /src/screen_20x4.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnappyDroid/SnappyDroid_V1_code_robot/HEAD/src/screen_20x4.ino -------------------------------------------------------------------------------- /src/webController/webTest: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------