feat: 全量同步 254 个常用的 Arduino 扩展库文件
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
|
||||
Easy to Use example of rBASE64 Library
|
||||
|
||||
This example shows the calling convention for the various functions.
|
||||
|
||||
For more information about this library please visit us at
|
||||
http://github.com/boseji/BASE64
|
||||
|
||||
Created by Abhijit Bose (boseji) on 22/02/16.
|
||||
Copyright 2016 - Under creative commons license 3.0:
|
||||
Attribution-ShareAlike CC BY-SA
|
||||
|
||||
@version API 1.0.0
|
||||
@author boseji - salearj@hotmail.com
|
||||
|
||||
*/
|
||||
|
||||
#include <rBase64.h>
|
||||
|
||||
void setup() {
|
||||
Serial.begin(115200);
|
||||
}
|
||||
|
||||
void loop() {
|
||||
Serial.println(rbase64.encode("Hello There, I am doing Good."));
|
||||
Serial.println(rbase64.decode("SGVsbG8gVGhlcmUsIEkgYW0gZG9pbmcgR29vZC4="));
|
||||
delay(2000);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user