Skip to content

Commit afb22cb

Browse files
author
M Arslan
committed
project started
0 parents  commit afb22cb

File tree

8 files changed

+37
-0
lines changed

8 files changed

+37
-0
lines changed

.gitignore

Whitespace-only changes.

LICENSE.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
The MIT License (MIT)
2+
---------------------
3+
4+
Copyright © 2014-2019 Benoit BLANCHON
5+
6+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
7+
8+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
9+
10+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Starting place to develop arduino libraries

examples/example.ino

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#include <example.h>
2+
3+
4+
void setup()
5+
{
6+
7+
}
8+
9+
void loop()
10+
{
11+
12+
}

keywords.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
name KEYWORD1
2+
name KEYWORD2
3+

library.properties

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name=Arduino-Template-Library
2+
version=1.0.0
3+
author=Muhammad Arslan
4+
maintainer=Muhammad Arslan
5+
sentence=An easy way to start developing arduino library.
6+
paragraph=Arduino libray template has ✔ keyword file highlighing the keyword, ✔ properties file
7+
category=library devlopment
8+
url=
9+
architectures=*
10+
repository=
11+
license=MIT

src/example.cpp

Whitespace-only changes.

src/example.h

Whitespace-only changes.

0 commit comments

Comments
 (0)