mirror of
https://github.com/RobTillaart/Arduino.git
synced 2024-10-03 18:09:02 -04:00
0.3.2 Heartbeat
This commit is contained in:
parent
0124661de8
commit
387d82a368
@ -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:
|
||||
@ -9,5 +24,6 @@ compile:
|
||||
- esp32
|
||||
# - esp8266
|
||||
# - mega2560
|
||||
- rpipico
|
||||
libraries:
|
||||
- "SRF05"
|
||||
|
53
libraries/HeartBeat/CHANGELOG.md
Normal file
53
libraries/HeartBeat/CHANGELOG.md
Normal file
@ -0,0 +1,53 @@
|
||||
# Change Log HearBeat
|
||||
|
||||
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.3.2] - 2022-11-09
|
||||
- add changelog.md
|
||||
- add rp2040 to build-CI
|
||||
- update readme.md
|
||||
|
||||
|
||||
## [0.3.1] - 2022-07-26
|
||||
- move all code to .cpp
|
||||
- add isEnabled()
|
||||
- rename examples
|
||||
- add example SRF05 distance sensor
|
||||
|
||||
## [0.3.0] - 2022-02-04
|
||||
- added HeartBeatDiag class.
|
||||
- added HeartBeatSL class (slightly simpler).
|
||||
|
||||
----
|
||||
|
||||
## [0.2.1] - 2021-12-18
|
||||
- update library.json,
|
||||
- update license
|
||||
- minor edits
|
||||
|
||||
## [0.2.0] - 2021-11-02
|
||||
- update Build-CI
|
||||
- add badges
|
||||
- add getFrequency(), getDutyCycle();
|
||||
- add getState().
|
||||
- remove set()
|
||||
|
||||
----
|
||||
|
||||
## [0.1.3] - 2021-05-27
|
||||
- fix Arduino-lint
|
||||
|
||||
## [0.1.2] - 2021-01-15
|
||||
- rename all to HeartBeat
|
||||
- add dutyCycle
|
||||
|
||||
## [0.1.1] - 2020-12-24
|
||||
- add Arduino-CI
|
||||
|
||||
## [0.1.0] - 2019-06-12
|
||||
- initial version
|
||||
|
@ -6,26 +6,7 @@
|
||||
// DATE: 2019-06-12
|
||||
// URL: https://github.com/RobTillaart/HeartBeat
|
||||
//
|
||||
// HISTORY:
|
||||
// 0.1.0 2019-06-12 initial version
|
||||
// 0.1.1 2020-12-24 Arduino-CI
|
||||
// 0.1.2 2021-01-15 renamed all to HeartBeat
|
||||
// added dutyCycle
|
||||
// 0.1.3 2021-05-27 fix Arduino-lint
|
||||
//
|
||||
// 0.2.0 2021-11-02 update Build-CI, add badges
|
||||
// add getFrequency(), getDutyCycle();
|
||||
// add getState().
|
||||
// removed set()
|
||||
// 0.2.1 2021-12-18 update library.json, license, minor edits
|
||||
//
|
||||
// 0.3.0 2022-02-04 added HeartBeatDiag class.
|
||||
// added HeartBeatSL class (slightly simpler).
|
||||
// 0.3.1 2022-07-26 move all code to .cpp
|
||||
// add isEnabled()
|
||||
// rename examples
|
||||
// add example SRF05 distance sensor
|
||||
|
||||
// HISTORY: see changelog
|
||||
|
||||
|
||||
#include "HeartBeat.h"
|
||||
|
@ -2,7 +2,7 @@
|
||||
//
|
||||
// FILE: HeartBeat.h
|
||||
// AUTHOR: Rob Tillaart
|
||||
// VERSION: 0.3.1
|
||||
// VERSION: 0.3.2
|
||||
// PURPOSE: Arduino library for HeartBeat with frequency and dutyCycle
|
||||
// DATE: 2019-06-12
|
||||
// URL: https://github.com/RobTillaart/HeartBeat
|
||||
@ -10,7 +10,7 @@
|
||||
|
||||
#include "Arduino.h"
|
||||
|
||||
#define HEARTBEAT_LIB_VERSION (F("0.3.1"))
|
||||
#define HEARTBEAT_LIB_VERSION (F("0.3.2"))
|
||||
|
||||
|
||||
class HeartBeat
|
||||
|
@ -225,10 +225,15 @@ See examples
|
||||
|
||||
## Future
|
||||
|
||||
- add examples
|
||||
- SRF05 distance sensor
|
||||
- ACS712 current sensor
|
||||
#### must
|
||||
- test HeartBeatDiag version in more detail.
|
||||
|
||||
#### should
|
||||
- add examples
|
||||
- ACS712 current sensor
|
||||
- buffer % filled (e.g. stream)
|
||||
|
||||
#### could
|
||||
- investigate a pattern recognizer (fun)
|
||||
- e.g. with an LDR or lux sensor.
|
||||
- separate changelog.md
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
"type": "git",
|
||||
"url": "https://github.com/RobTillaart/HeartBeat.git"
|
||||
},
|
||||
"version": "0.3.1",
|
||||
"version": "0.3.2",
|
||||
"license": "MIT",
|
||||
"frameworks": "arduino",
|
||||
"platforms": "*",
|
||||
|
@ -1,5 +1,5 @@
|
||||
name=HeartBeat
|
||||
version=0.3.1
|
||||
version=0.3.2
|
||||
author=Rob Tillaart <rob.tillaart@gmail.com>
|
||||
maintainer=Rob Tillaart <rob.tillaart@gmail.com>
|
||||
sentence=Arduino library for HeartBeat with frequency and duty cycle.
|
||||
|
Loading…
Reference in New Issue
Block a user