feat: 全量同步 254 个常用的 Arduino 扩展库文件

This commit is contained in:
yczpf2019
2026-01-24 16:05:38 +08:00
parent c665ba662b
commit 397b9a23a3
6878 changed files with 2732224 additions and 1 deletions

View File

@@ -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);
}