This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* FTP Serveur for ESP8266 | |
* based on FTP Serveur for Arduino Due and Ethernet shield (W5100) or WIZ820io (W5200) | |
* based on Jean-Michel Gallego's work | |
* modified to work with esp8266 SPIFFS by David Paiva [email protected] | |
* | |
* This program is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation, either version 3 of the License, or | |
* (at your option) any later version. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @file APDS-9930.cpp | |
* @brief Library for the SparkFun APDS-9930 breakout board | |
* @author Shawn Hymel (SparkFun Electronics) | |
* | |
* @copyright This code is public domain but you buy me a beer if you use | |
* this and we meet someday (Beerware license). | |
* | |
* This library interfaces the Avago APDS-9930 to Arduino over I2C. The library | |
* relies on the Arduino Wire (I2C) library. to use the library, instantiate an |