mirror of
https://github.com/kakopappa/how-to-make-a-precompiled-arduino-library-for-esp8266-esp32.git
synced 2025-07-26 05:21:04 +03:00
initial commit
This commit is contained in:
10
arduino-helloworld-lib/library.properties
Normal file
10
arduino-helloworld-lib/library.properties
Normal file
@ -0,0 +1,10 @@
|
||||
name=hello
|
||||
version=1.0.0
|
||||
author=aruna
|
||||
maintainer=aruna
|
||||
sentence=A simple library
|
||||
architectures=esp32
|
||||
includes=hello.h
|
||||
paragraph=
|
||||
precompiled=true
|
||||
url=https://www.sinric.com
|
BIN
arduino-helloworld-lib/src/esp32/libhello.a
Normal file
BIN
arduino-helloworld-lib/src/esp32/libhello.a
Normal file
Binary file not shown.
6
arduino-helloworld-lib/src/hello.h
Normal file
6
arduino-helloworld-lib/src/hello.h
Normal file
@ -0,0 +1,6 @@
|
||||
#ifndef HELLO_H
|
||||
#define HELLO_H
|
||||
|
||||
int add(int x, int y);
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user