Skip to content

Commit

Permalink
Version 3.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ArminJo committed Dec 6, 2020
1 parent 01667e0 commit 16e6acc
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# [IRMP](https://github.com/ukw100/IRMP) - Infrared Multi Protocol Decoder + Encoder
Available as Arduino library "IRMP"

### [Version 3.3.4](https://github.com/ukw100/IRMP/releases)
### [Version 3.3.5](https://github.com/ukw100/IRMP/releases) - work in progress

[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)
[![Installation instructions](https://www.ardu-badge.com/badge/irmp.svg?)](https://www.ardu-badge.com/IRMP)
Expand Down Expand Up @@ -263,7 +263,9 @@ The **tone() library (using timer 2) is still available**. You can use it altern
http://www.mikrocontroller.net/articles/IRSND

# Revision History
### Version 3.3.4 - work in progress
### Version 3.3.5 - work in progress

### Version 3.3.4
- Removed convenience function `irmp_tone()`, since it statically allocates the tone interrupt vector.

### Version 3.3.3
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"type": "git",
"url": "https://github.com/ukw100/IRMP"
},
"version": "3.3.3",
"version": "3.3.4",
"exclude": "pictures",
"authors": [
{
Expand Down
4 changes: 2 additions & 2 deletions library.properties
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name=IRMP
version=3.3.3
version=3.3.4
author=Frank Meyer, Armin Joachimsmeyer
maintainer=Armin Joachimsmeyer <armin.joachimsmeyer@gmail.com>, frank@fli4l.de
sentence=Receive and send infrared signals.<br/>
paragraph=<ul><li>Supports <b>50 different IR and 3 RF protocols</b>.</li><li>Can receive <b>40 protocols concurrently</b>.</li><li><b>Small</b> footprint and <b>robust</b> decoding.</li><li>Receive and send can be used in the <b>same sketch.</b></li><li>Supports ATtiny, AVR and MegaAVR boards as well as ESP8266, ESP32, STM32, SAMD and Apollo boards.</li></ul><br/>For a short comparison of 4 popular IR libraries, see <a href="https://github.com/ukw100/IRMP#quick-comparison-of-4-arduino-ir-receiving-libraries">GitHub README</a><br/><br/><b>New: </b>Added ATmega8 and Leonardo support. New IRSND_GENERATE_NO_SEND_RF compile switch.<br/>
paragraph=<ul><li>Supports <b>50 different IR and 3 RF protocols</b>.</li><li>Can receive <b>40 protocols concurrently</b>.</li><li><b>Small</b> footprint and <b>robust</b> decoding.</li><li>Receive and send can be used in the <b>same sketch.</b></li><li>Supports ATtiny, AVR and MegaAVR boards as well as ESP8266, ESP32, STM32, SAMD and Apollo boards.</li></ul><br/>For a short comparison of 4 popular IR libraries, see <a href="https://github.com/ukw100/IRMP#quick-comparison-of-4-arduino-ir-receiving-libraries">GitHub README</a><br/><br/><b>New: </b>Removed convenience function `irmp_tone()`, since it statically allocates the tone interrupt vector.<br/>
category=Signal Input/Output
url=https://github.com/ukw100/IRMP
architectures=avr,megaavr,samd,esp8266,esp32,stm32,STM32F1,apollo3,mbed
2 changes: 1 addition & 1 deletion src/irmpVersion.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#ifndef SRC_LIB_IRMPVERSION_H_
#define SRC_LIB_IRMPVERSION_H_

#define VERSION_IRMP "3.3.3"
#define VERSION_IRMP "3.3.4"
#define VERSION_IRMP_MAJOR 3
#define VERSION_IRMP_MINOR 3

Expand Down

0 comments on commit 16e6acc

Please sign in to comment.