Skip to content

Commit b18e47a

Browse files
release 0.99.0
Update "LATEST BLUEPAD VERSION" to v2.2.1 Includes "Arduino.h" instead of "Serial.h" Removes debug
1 parent 29598c9 commit b18e47a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=Bluepad32
2-
version=0.9.0
2+
version=0.99.0
33
author=Ricardo Quesada
44
maintainer=Ricardo Quesada <ricardoquesada@gmail.com>
55
sentence=Enables gamepad support for NINA-based boards like Nano RP2040 Connect, Nano 33 IoT, etc.

src/bluepad32.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,15 @@
33

44
#include "bluepad32.h"
55

6+
#include <Arduino.h>
67
#include <inttypes.h>
78

89
#include "constants.h"
910
#include "utility/debug.h"
1011
#include "utility/spi_drv.h"
1112
#include "utility/wl_types.h"
1213

13-
const char BLUEPAD32_LATEST_FIRMWARE_VERSION[] = "v0.5.0";
14+
const char BLUEPAD32_LATEST_FIRMWARE_VERSION[] = "v2.2.1";
1415

1516
Bluepad32::Bluepad32()
1617
: _prevConnectedGamepads(0), _gamepads(), _onConnect(), _onDisconnect() {}

src/utility/debug.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
#ifndef Debug_H
2828
#define Debug_H
2929

30-
#include <Serial.h>
3130
#include <stdio.h>
3231
#include <string.h>
3332

0 commit comments

Comments
 (0)