Hello!
I have problem with SIM800 and SoftwareSerial libraries.
When i compile code it give next error message:
In file included from C:\Program Files (x86)\Arduino\libraries\SIM800\SIM800.cpp:8:0:
C:\Program Files (x86)\Arduino\libraries\SIM800\SIM800.h:30:3: error: 'uint8_t' does not name a type
uint8_t year; /* year past 2000, e.g. 15 for 2015 */
^
C:\Program Files (x86)\Arduino\libraries\SIM800\SIM800.h:31:3: error: 'uint8_t' does not name a type
uint8_t month;
^
C:\Program Files (x86)\Arduino\libraries\SIM800\SIM800.h:32:3: error: 'uint8_t' does not name a type
uint8_t day;
^
C:\Program Files (x86)\Arduino\libraries\SIM800\SIM800.h:33:3: error: 'uint8_t' does not name a type
uint8_t hour;
^
C:\Program Files (x86)\Arduino\libraries\SIM800\SIM800.h:34:3: error: 'uint8_t' does not name a type
uint8_t minute;
^
C:\Program Files (x86)\Arduino\libraries\SIM800\SIM800.h:35:3: error: 'uint8_t' does not name a type
uint8_t second;
^
C:\Program Files (x86)\Arduino\libraries\SIM800\SIM800.h:44:5: error: 'byte' does not name a type
byte setup(const char* apn);
^
C:\Program Files (x86)\Arduino\libraries\SIM800\SIM800.h:61:5: error: 'byte' does not name a type
byte httpIsConnected();
^
...
Codes is here: http://etelaniemi.com/Codes.txt
How i fix it?