mirror of
https://github.com/RobTillaart/Arduino.git
synced 2024-10-03 18:09:02 -04:00
0.1.2 palindrome
This commit is contained in:
parent
a142fa8189
commit
4bca1212b1
@ -1,3 +1,18 @@
|
||||
platforms:
|
||||
rpipico:
|
||||
board: rp2040:rp2040:rpipico
|
||||
package: rp2040:rp2040
|
||||
gcc:
|
||||
features:
|
||||
defines:
|
||||
- ARDUINO_ARCH_RP2040
|
||||
warnings:
|
||||
flags:
|
||||
|
||||
packages:
|
||||
rp2040:rp2040:
|
||||
url: https://github.com/earlephilhower/arduino-pico/releases/download/global/package_rp2040_index.json
|
||||
|
||||
compile:
|
||||
# Choosing to run compilation tests on 2 different Arduino platforms
|
||||
platforms:
|
||||
@ -8,4 +23,6 @@ compile:
|
||||
- m4
|
||||
- esp32
|
||||
# - esp8266
|
||||
# - mega2560
|
||||
# - mega2560
|
||||
- rpipico
|
||||
|
||||
|
21
libraries/palindrome/CHANGELOG.md
Normal file
21
libraries/palindrome/CHANGELOG.md
Normal file
@ -0,0 +1,21 @@
|
||||
# Change Log palindrome
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
||||
and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
|
||||
## [0.1.2] - 2022-11-19
|
||||
- add RP2040 in build-CI
|
||||
- add changelog.md
|
||||
- update keywords.txt
|
||||
|
||||
|
||||
## [0.1.1] - 2021-12-03
|
||||
- add palindromeCount()
|
||||
- add palindromePercentage()
|
||||
|
||||
## [0.1.0] - 2021-12-02
|
||||
- initial version.
|
||||
|
@ -5,11 +5,15 @@ palindrome KEYWORD1
|
||||
|
||||
|
||||
# Methods and Functions (KEYWORD2)
|
||||
KEYWORD2
|
||||
KEYWORD2
|
||||
findPalindrome KEYWORD2
|
||||
findEvenPalindrome KEYWORD2
|
||||
findOddPalindrome KEYWORD2
|
||||
isPalindrome KEYWORD2
|
||||
palindromeCount KEYWORD2
|
||||
palindromePercentage KEYWORD2
|
||||
|
||||
|
||||
# Constants (LITERAL1)
|
||||
|
||||
Constants (LITERAL1)
|
||||
PALINDROME_LIB_VERSION LITERAL1
|
||||
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
"type": "git",
|
||||
"url": "https://github.com/RobTillaart/palindrome.git"
|
||||
},
|
||||
"version": "0.1.1",
|
||||
"version": "0.1.2",
|
||||
"license": "MIT",
|
||||
"frameworks": "arduino",
|
||||
"platforms": "*",
|
||||
|
@ -1,5 +1,5 @@
|
||||
name=palindrome
|
||||
version=0.1.1
|
||||
version=0.1.2
|
||||
author=Rob Tillaart <rob.tillaart@gmail.com>
|
||||
maintainer=Rob Tillaart <rob.tillaart@gmail.com>
|
||||
sentence=Palindrome library
|
||||
|
@ -1,14 +1,9 @@
|
||||
//
|
||||
// FILE: palindrome.cpp
|
||||
// AUTHOR: Rob Tillaart
|
||||
// VERSION: 0.1.1
|
||||
// VERSION: 0.1.2
|
||||
// PURPOSE: Arduino library to do palindrome experiments.
|
||||
// URL: https://github.com/RobTillaart/palindrome
|
||||
//
|
||||
// HISTORY:
|
||||
// 0.1.0 2021-12-02 initial version
|
||||
// 0.1.1 2021-12-03 add palindromeCount(), palindromePercentage()
|
||||
|
||||
|
||||
|
||||
#include "palindrome.h"
|
||||
|
@ -2,7 +2,7 @@
|
||||
//
|
||||
// FILE: palindrome.h
|
||||
// AUTHOR: Rob Tillaart
|
||||
// VERSION: 0.1.1
|
||||
// VERSION: 0.1.2
|
||||
// PURPOSE: Arduino library to do palindrome experiments.
|
||||
// URL: https://github.com/RobTillaart/palindrome
|
||||
//
|
||||
@ -10,7 +10,7 @@
|
||||
|
||||
#include "Arduino.h"
|
||||
|
||||
#define PALINDROME_LIB_VERSION (F("0.1.1"))
|
||||
#define PALINDROME_LIB_VERSION (F("0.1.2"))
|
||||
|
||||
|
||||
class palindrome
|
||||
|
Loading…
Reference in New Issue
Block a user