Skip to content

Commit

Permalink
Merge pull request #61 from hideakitai/feature/support-arduino-giga-r…
Browse files Browse the repository at this point in the history
…1-wifi

Feature/support arduino giga r1 wifi
  • Loading branch information
hideakitai authored Nov 7, 2024
2 parents c6ae15b + e3b5cbd commit 6e481e9
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 26 deletions.
5 changes: 3 additions & 2 deletions ArduinoOSCWiFi.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@

#if defined(ESP_PLATFORM) || defined(ESP8266) || defined(ARDUINO_AVR_UNO_WIFI_REV2) \
|| defined(ARDUINO_SAMD_MKRWIFI1010) || defined(ARDUINO_SAMD_MKRVIDOR4000) || defined(ARDUINO_SAMD_MKR1000) \
|| defined(ARDUINO_SAMD_NANO_33_IOT) || defined(ARDUINO_RASPBERRY_PI_PICO_W) || defined(ARDUINO_UNOR4_WIFI)
|| defined(ARDUINO_SAMD_NANO_33_IOT) || defined(ARDUINO_RASPBERRY_PI_PICO_W) || defined(ARDUINO_UNOR4_WIFI) \
|| defined(ARDUINO_GIGA)
#define ARDUINOOSC_ENABLE_WIFI
#endif

#ifdef ARDUINOOSC_ENABLE_WIFI
#if defined(ESP_PLATFORM) || defined(ARDUINO_ARCH_RP2040)
#if defined(ESP_PLATFORM) || defined(ARDUINO_ARCH_RP2040) || defined(ARDUINO_GIGA)
#include <WiFi.h>
#include <WiFiUdp.h>
#elif defined(ESP8266)
Expand Down
45 changes: 22 additions & 23 deletions library.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,24 @@
{
"name": "ArduinoOSC",
"keywords": "osc,wifi,ethernet,udp",
"description": "OSC subscriber / publisher for Arduino",
"repository": {
"type": "git",
"url": "https://github.com/hideakitai/ArduinoOSC.git"
},
"authors": {
"name": "Hideaki Tai",
"url": "https://github.com/hideakitai",
"maintainer": true
},
"version": "0.5.0",
"license": "MIT",
"frameworks": "arduino",
"platforms": "*",
"dependencies":
{
"hideakitai/ArxContainer": ">=0.6.0",
"hideakitai/ArxSmartPtr": "*",
"hideakitai/ArxTypeTraits": "*",
"hideakitai/DebugLog": ">=0.8.1"
}
"name": "ArduinoOSC",
"keywords": "osc,wifi,ethernet,udp",
"description": "OSC subscriber / publisher for Arduino",
"repository": {
"type": "git",
"url": "https://github.com/hideakitai/ArduinoOSC.git"
},
"authors": {
"name": "Hideaki Tai",
"url": "https://github.com/hideakitai",
"maintainer": true
},
"version": "0.5.1",
"license": "MIT",
"frameworks": "arduino",
"platforms": "*",
"dependencies": {
"hideakitai/ArxContainer": ">=0.6.0",
"hideakitai/ArxSmartPtr": "*",
"hideakitai/ArxTypeTraits": "*",
"hideakitai/DebugLog": ">=0.8.1"
}
}
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=ArduinoOSC
version=0.5.0
version=0.5.1
author=hideakitai
maintainer=hideakitai
sentence=OSC subscriber / publisher for Arduino
Expand Down

0 comments on commit 6e481e9

Please sign in to comment.