initial commit

This commit is contained in:
Aruna Tennakoon
2022-07-27 08:44:06 +07:00
commit f30d70cdaf
7 changed files with 98 additions and 0 deletions

View 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

Binary file not shown.

View File

@ -0,0 +1,6 @@
#ifndef HELLO_H
#define HELLO_H
int add(int x, int y);
#endif