When i trye to install arduino-base64-master.zip with import libery its says
"Invalid library found in C:\Users\Allan\Documents\Arduino\libraries\arduino-base64-master: Missing 'paragraph' from library"
If i try to compile a program that uses base64.h it says.
"test1.ino:2:20: fatal error: Base64.h: No such file or directory
compilation terminated.
Fejl i kompilering."
Can anyone help me, i am new at this Arduino 1.6.1 ESP8266 "And c programmering"
I had the same problem. It turned out I had to find the right base64.h library to install. There seems to be several floating around. Sorry, I do not remember where I found the one that worked. Remember to delete the one that does not work before installing the next.
asm7100 wrote: When i trye to install arduino-base64-master.zip with import libery its says
"Invalid library found in C:\Users\Allan\Documents\Arduino\libraries\arduino-base64-master: Missing 'paragraph' from library"
If i try to compile a program that uses base64.h it says.
"test1.ino:2:20: fatal error: Base64.h: No such file or directory
compilation terminated.
Fejl i kompilering."
Can anyone help me, i am new at this Arduino 1.6.1 ESP8266 "And c programmering"
The ibrary.properties file has the paragraph statement missing. If you add paragraph= to the file thus
name=base64
version=1.0.0
author=Adam Rudd
maintainer=Adam Rudd
sentence=A base64 library for the arduino platform, written in C
paragraph=
category=Data Processing
url=https://github.com/adamvr/arduino-base64
architectures=*
The base64 library will then install correctly.