├── .gitignore └── README.markdown /.gitignore: -------------------------------------------------------------------------------- 1 | [Bb]in/ 2 | obj/ 3 | _ReSharper*/ 4 | *.suo 5 | *.csproj.user 6 | -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- 1 | # NOTICE 2 | 3 | This Repository has been suspended. It used to contain multiple Arduino libraries. However, following Arduino Library guidelines, each of these libraries has gotten it's own repository. See below to find these 4 | 5 | ## DCF77 6 | 7 | The DCF77 library adds the ability to read and decode the atomic time broadcasted by the 8 | DCF77 radiostation. It has been designed to work in conjunction with the Arduino Time 9 | library and allows a sketch to get the precise CET time and date as a standard C time_t. 10 | The DCF77 Library download. Example sketches have been added to 11 | 1) illustrate and debug the incoming signal 12 | 2) use the library, using the setSyncProvider callback and converting to different 13 | time zones. In order to exploit all features in the library, Both the Time and 14 | TimeZone library are included. 15 | 16 | This library can now be found here: https://github.com/thijse/Arduino-DCF77 17 | 18 | 19 | ## EEPROMex 20 | 21 | The EEPROMex library is an extension of the standard Arduino EEPROM library. It extends the functionality of the original Arduino EEPROM library with: 22 | 23 | - Reading, writing to basic types and single bits 24 | - Reading, writing of any data format. This can be for example structs, strings, etc. 25 | - Reading, writing of arrays of any format. 26 | 27 | This library can now be found here: https://github.com/thijse/Arduino-EEPROMEx 28 | 29 | 30 | ## CmdMessenger 31 | 32 | CmdMessenger is a messaging library afor the Arduino Platform (and .NET/Mono platform). It has uses the serial port as its transport layer** 33 | 34 | The library can 35 | 36 | - Send and receive of commands 37 | - Write and read multiple arguments 38 | - Write and read all primary data types 39 | - Attach callback functions any received command 40 | 41 | This library can now be found here: https://github.com/thijse/Arduino-CmdMessenger 42 | --------------------------------------------------------------------------------