forked from arduino-libraries/ArduinoIoTCloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathArduino.h
34 lines (25 loc) · 1 KB
/
Arduino.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
Copyright (c) 2019 Arduino. All rights reserved.
*/
#ifndef TEST_ARDUINO_H_
#define TEST_ARDUINO_H_
/******************************************************************************
INCLUDE
******************************************************************************/
#include <string>
/******************************************************************************
DEFINES
******************************************************************************/
#ifndef min
#define min(a,b) ((a)<(b)?(a):(b))
#endif
/******************************************************************************
TYPEDEF
******************************************************************************/
typedef std::string String;
/******************************************************************************
FUNCTION PROTOTYPES
******************************************************************************/
void set_millis(unsigned long const millis);
unsigned long millis();
#endif /* TEST_ARDUINO_H_ */