Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c557001

Browse files
ilcatoaentinger
authored andcommittedAug 14, 2019
Automation types rename
1 parent 9dd4b36 commit c557001

File tree

8 files changed

+40
-0
lines changed

8 files changed

+40
-0
lines changed
 
File renamed without changes.
File renamed without changes.

‎types/Automation/CloudTemperature.h

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
//
2+
// This file is part of ArduinoCloudThing
3+
//
4+
// Copyright 2019 ARDUINO SA (http://www.arduino.cc/)
5+
//
6+
// This software is released under the GNU General Public License version 3,
7+
// which covers the main part of ArduinoCloudThing.
8+
// The terms of this license can be found at:
9+
// https://www.gnu.org/licenses/gpl-3.0.en.html
10+
//
11+
// You can be released from the requirements of the above licenses by purchasing
12+
// a commercial license. Buying such a license is mandatory if you want to modify or
13+
// otherwise use the software for commercial activities involving the Arduino
14+
// software without disclosing the source code of your own applications. To purchase
15+
// a commercial license, send an email to license@arduino.cc.
16+
//
17+
18+
#ifndef CLOUDTEMPERATURE_H_
19+
#define CLOUDTEMPERATURE_H_
20+
21+
/******************************************************************************
22+
INCLUDE
23+
******************************************************************************/
24+
25+
#include <Arduino.h>
26+
#include "../CloudFloat.h"
27+
28+
/******************************************************************************
29+
CLASS DECLARATION
30+
******************************************************************************/
31+
32+
33+
34+
class CloudTemperature : public CloudFloat {
35+
private:
36+
public:
37+
};
38+
39+
40+
#endif /* CLOUDTEMPERATURE_H_ */

0 commit comments

Comments
 (0)
Please sign in to comment.