Skip to content

Commit

Permalink
v1.0.11-Use TimeLib.h instead of Time.h
Browse files Browse the repository at this point in the history
  • Loading branch information
chris lee authored and chris lee committed Apr 12, 2018
1 parent f965095 commit b7dd5c0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Here is Thing+ arduino_libaray features.<br>
- Automatic time synchronzing

### News
- Apr.12.2018 : v1.0.11 Released
- Jan.18.2017 : v1.0.10 Released
- Dec.02.2016 : v1.0.9 Released
- Dec.01.2016 : v1.0.8 Released
Expand All @@ -28,6 +29,9 @@ Here is Thing+ arduino_libaray features.<br>
- Jun.18.2016 : Now you can install Thingplus library with Arduino library manager

### Release Note
- v1.0.10
- Use TimeLib.h instead of Time.h

- v1.0.10
- New example added for Arduino + Esp8266
- WARNING : This example CAN NOT receive actuator command from Thing+ due to WiFiEsp library Bugs.
Expand Down
4 changes: 2 additions & 2 deletions library.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name=Thingplus
version=1.0.10
author=Younghyun Jo
version=1.0.11
author=Daliworks
maintainer=Daliworks <dev@daliworks.net>
sentence=Helps connecting your Arduino board to Thing+ cloud easly and fast
paragraph=Helps connecting your Arduino board to Thing+ cloud easly and fast
Expand Down
2 changes: 1 addition & 1 deletion src/Thingplus.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#include <Arduino.h>
#include <ArduinoJson.h>
#include <PubSubClient.h>
#include <Time.h>
#include <TimeLib.h>

#include "platform.h"
#include "Thingplus.h"
Expand Down
2 changes: 1 addition & 1 deletion src/Thingplus.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include <Arduino.h>
#include <ArduinoJson.h>
#include <PubSubClient.h>
#include <Time.h>
#include <TimeLib.h>

class ThingplusClass {
public:
Expand Down

0 comments on commit b7dd5c0

Please sign in to comment.