Skip to content

Commit 341057a

Browse files
authored
Merge pull request emilv#3 from kevinrigot/master
Add ArduinoSort to PlatformIo libraries
2 parents bb1d4d3 + b18b7ab commit 341057a

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

library.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"name": "ArduinoSort",
3+
"keywords": "sort, sorting",
4+
"description": "Easy sorting of arrays for Arduino, with focus on low memory footprint.",
5+
"homepage": "https://github.com/emilv/ArduinoSort",
6+
"repository": {
7+
"type": "git",
8+
"url": "https://github.com/emilv/ArduinoSort.git"
9+
},
10+
"version": "1.0.0",
11+
"frameworks": "arduino",
12+
"platforms": "*"
13+
}

library.properties

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name=ArduinoSort
2+
version=1.0.0
3+
author=Emil Vikström
4+
maintainer=Emil Vikström
5+
sentence=Easy sorting of arrays for Arduino, with focus on low memory footprint.
6+
paragraph=Easy sorting of arrays for Arduino, with focus on low memory footprint. Easy to use. Small. Less program storage space than bubble sort or qsort! Fast. Works with most data types, including int, float, String and bool. Advanced users can add their own comparison function!
7+
category=Data Processing
8+
url=https://github.com/emilv/ArduinoSort
9+
architectures=*
10+
repository=https://github.com/emilv/ArduinoSort.git
11+
license=MIT

0 commit comments

Comments
 (0)