Skip to content

Commit

Permalink
v3.1.2 make esp component
Browse files Browse the repository at this point in the history
  • Loading branch information
joshua-8 committed Feb 27, 2024
1 parent 314d747 commit c7a4a19
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 2 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/publish to ESPIDF component registry.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: publish ESPIDF component
on:
push:
tags:
- v*
jobs:
upload_components:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: "recursive"
- name: Upload component to the component registry
uses: espressif/upload-components-ci-action@v1
with:
name: "Derivs_Limiter"
version: ${{ github.ref_name }}
namespace: "joshua-8"
api_token: ${{ secrets.IDF_COMPONENT_API_TOKEN }}
4 changes: 4 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
idf_component_register(
SRCS "src/Derivs_Limiter.h"
INCLUDE_DIRS "src"
)
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2021 Joshua Phelps
Copyright (c) 2021-2024 Joshua Phelps

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
7 changes: 7 additions & 0 deletions idf_component.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
description: This library can be used to limit the first and second derivative of a variable as it approaches a target value.
url: https://github.com/joshua-8/derivs_limiter
documentation: https://joshua-8.github.io/Derivs_Limiter/class_derivs___limiter.html
discussion: https://github.com/joshua-8/Derivs_Limiter/discussions
issues: https://github.com/joshua-8/Derivs_Limiter/issues
dependencies:
espressif/arduino-esp32: ">2.0"
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=Derivs_Limiter
version=3.1.1
version=3.1.2
author=Joshua Phelps <[email protected]>
maintainer=Joshua Phelps <[email protected]>
sentence=This library can be used to limit the first and second derivative of a variable as it approaches a target value.
Expand Down

0 comments on commit c7a4a19

Please sign in to comment.