├── .travis.yml ├── LICENSE ├── README.md ├── examples ├── CLKOUT │ └── CLKOUT.ino └── simple │ └── simple.ino ├── keywords.txt ├── library.properties └── src ├── PCF8563.cpp └── PCF8563.h /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill2462/PCF8563-Arduino-Library/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill2462/PCF8563-Arduino-Library/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill2462/PCF8563-Arduino-Library/HEAD/README.md -------------------------------------------------------------------------------- /examples/CLKOUT/CLKOUT.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill2462/PCF8563-Arduino-Library/HEAD/examples/CLKOUT/CLKOUT.ino -------------------------------------------------------------------------------- /examples/simple/simple.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill2462/PCF8563-Arduino-Library/HEAD/examples/simple/simple.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill2462/PCF8563-Arduino-Library/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill2462/PCF8563-Arduino-Library/HEAD/library.properties -------------------------------------------------------------------------------- /src/PCF8563.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill2462/PCF8563-Arduino-Library/HEAD/src/PCF8563.cpp -------------------------------------------------------------------------------- /src/PCF8563.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill2462/PCF8563-Arduino-Library/HEAD/src/PCF8563.h --------------------------------------------------------------------------------