项目作者: hideakitai

项目描述 :
OSC subscriber / publisher for Arduino
高级语言: C++
项目地址: git://github.com/hideakitai/ArduinoOSC.git
创建时间: 2017-09-29T04:27:56Z
项目社区:https://github.com/hideakitai/ArduinoOSC

开源协议:MIT License

下载


ArduinoOSC

OSC subscriber / publisher for Arduino

NOTE (>= v0.3.x) : BREAKING API CHANGES

  • almost all apis has have changed and got much simpler
  • dropped support for OscSerial (recommend to use MsgPacketizer for much smaller packet size)

NOTE (>= v0.4.0) : DEPENDENT LIBRARIES REMOVED

If you have already installed this library, please follow:

  • Cloned from GitHub (manually): Please install dependent libraries manually
  • Installed from library manager: re-install this library from library manager
    • Dependent libraries will be installed automatically

Feature

  • simple usage
    • flexible callback registration with lambda
    • directly binding osc packet to values
    • osc packet sending in one-line
    • publishing osc packet in one-line
  • support basic OSC types based on oscpkt
    • TF (bool: true, false)
    • i (int32_t)
    • h (int64_t)
    • f (float)
    • d (double)
    • s (string)
    • b (bundle)
  • support pattern-matching (wildcards)

Usage

Include ArduinoOSC

Please include #include "ArduinoOSC.h first.

If you use the board which has both WiFi and Ethernet, you can’t use #include <ArduinoOSC.h>. Please replace it with #include <ArduinoOSCWiFi.h> or #include <ArduinoOSCEther.h> depending on the interface you want to use.

  1. // For the boards which can use ether WiFi or Ethernet
  2. #include <ArduinoOSC.h>
  3. // OR use WiFi on the board which can use both WiFi and Ethernet
  4. #include <ArduinoOSCWiFi.h>
  5. // OR use Ethenet on the board which can use both WiFi and Ethernet
  6. #include <ArduinoOSCEther.h>

Following examples use OscWiFi.
To use with Ethernet, please change OscWiFi to OscEther.

One-Line Subscriber / Publisher

  1. #include <ArduinoOSCWiFi.h>
  2. // #include <ArduinoOSC.h> // you can use this if your borad supports only WiFi or Ethernet
  3. int i; float f; String s;
  4. void setup() {
  5. // WiFi stuff
  6. WiFi.begin(ssid, pwd);
  7. WiFi.config(ip, gateway, subnet);
  8. // subscribe osc packet and directly bind to variable
  9. OscWiFi.subscribe(bind_port, "/bind/values", i, f, s);
  10. // publish osc packet in 30 times/sec (default)
  11. OscWiFi.publish(host, publish_port, "/publish/value", i, f, s);
  12. // function can also be published
  13. OscWiFi.publish(host, publish_port, "/publish/func", &millis, µs)
  14. ->setFrameRate(1); // and publish it once per second
  15. }
  16. void loop() {
  17. OscWiFi.update(); // should be called to subscribe + publish osc
  18. }

Bind OSC to Lambda Arguments and One-Line Send

  1. void setup() {
  2. // WiFi stuff
  3. // ...
  4. OscWiFi.subscribe(bind_port, "/lambda/bind/args",
  5. [&](int& i, float& f, String& s) {
  6. Serial.print("/lambda/bind/args ");
  7. Serial.print(i); Serial.print(" ");
  8. Serial.print(f); Serial.print(" ");
  9. Serial.print(s); Serial.println();
  10. // One-Line Send Back
  11. OscWiFi.send(host, send_port, "/reply", i, f, s);
  12. }
  13. );
  14. }
  15. void loop() {
  16. OscWiFi.update(); // should be called
  17. }

Other Way to Subscribe

  1. // OscMessage as lambda argument
  2. OscWiFi.subscribe(recv_port, "/lambda/msg",
  3. [](const OscMessage& m) {
  4. Serial.print(m.remoteIP()); Serial.print(" ");
  5. Serial.print(m.remotePort()); Serial.print(" ");
  6. Serial.print(m.size()); Serial.print(" ");
  7. Serial.print(m.address()); Serial.print(" ");
  8. Serial.print(m.arg<int>(0)); Serial.print(" ");
  9. Serial.print(m.arg<float>(1)); Serial.print(" ");
  10. Serial.print(m.arg<String>(2)); Serial.println();
  11. }
  12. );
  13. // wildcard address pattern matching
  14. OscWiFi.subscribe(recv_port, "/wildcard/*/test",
  15. [](const OscMessage& m) {
  16. Serial.print(m.remoteIP()); Serial.print(" ");
  17. Serial.print(m.remotePort()); Serial.print(" ");
  18. Serial.print(m.size()); Serial.print(" ");
  19. Serial.print(m.address()); Serial.print(" ");
  20. Serial.print(m.arg<int>(0)); Serial.println();
  21. }
  22. );
  23. // no arguments
  24. OscWiFi.subscribe(recv_port, "/need/reply", []() {
  25. OscWiFi.send(host, send_port, "/reply", i, f, s);
  26. });
  27. // pre-defined callback
  28. OscWiFi.subscribe(recv_port, "/callback", onOscReceived);

Supported Platform

This library currently supports following platforms and interfaces.
Please feel free to send PR or request for more board support!

WiFi

  • ESP32
  • ESP8266
  • Raspberry Pi Pico W
  • Arduino Uno R4 WiFi
  • Arduino Uno WiFi Rev2
  • Arduino MKR VIDOR 4000
  • Arduino MKR WiFi 1010
  • Arduino MKR WiFi 1000
  • Arduino Nano 33 IoT

Ethernet

  • Almost all platforms which has Ethernet (and ETH) library

Limitation and Options for NO-STL Boards

STL is used to handle packet data by default, but for following boards/architectures, ArxContainer is used to store the packet data because STL can not be used for such boards.
The storage size of such boards for packets, queue of packets, max packet binary size, callbacks are limited.

  • AVR
  • megaAVR

Usage Recommendation for Arduino Uno (and other boards with tiny memory size)

For the boards which has tiny memory size (e.g. Arduino Uno), I reccomend not to use publisher and subscriber.
Though you can use them on such boards, such rich functions requires more memory.
The reccomended way is to use send and parse manually.
The example is shown in examples/arduino/OscEtherUno, so please consider to use it.

  1. #include <ArduinoOSCEther.h>
  2. // #include <ArduinoOSC.h> // you can use this because Uno supports only Ethernet
  3. // required to use manual packet parsing
  4. OscEtherServer server(recv_port);
  5. OscEtherClient client;
  6. // OscEtherClient client(local_port); // set the local port of client manually (default: 9)
  7. void setup() {
  8. Ethernet.begin(mac, ip);
  9. }
  10. void loop() {
  11. // manual sending instead of publishers
  12. static uint32_t prev_func_ms = millis();
  13. if (millis() > prev_func_ms + 500) {
  14. client.send(host, publish_port, "/publish/func", millis(), micros());
  15. prev_func_ms = millis();
  16. }
  17. // manual parsing instead of subscribers
  18. if (server.parse()) {
  19. const OscMessage* msg = server.message();
  20. if (msg->address() == "/need/reply") {
  21. Serial.println("/need/reply");
  22. int i = millis();
  23. float f = (float)micros() / 1000.f;
  24. String s = F("hello");
  25. client.send(host, send_port, "/reply", i, f, s);
  26. }
  27. }
  28. }

Memory Management (only for NO-STL Boards)

As mentioned above, for such boards like Arduino Uno, the storage sizes are limited.
And of course you can manage them by defining following macros.
But these default values are optimized for such boards, please be careful not to excess your boards storage/memory.

  1. #define ARDUINOOSC_MAX_MSG_ARGUMENT_SIZE 8
  2. #define ARDUINOOSC_MAX_MSG_BYTE_SIZE 128
  3. #define ARDUINOOSC_MAX_MSG_QUEUE_SIZE 1
  4. #define ARDUINOOSC_MAX_PUBLISH_DESTINATION 4
  5. #define ARDUINOOSC_MAX_SUBSCRIBE_ADDRESS_PER_PORT 4
  6. #define ARDUINOOSC_MAX_SUBSCRIBE_PORTS 2

Enable Bundle for NO-STL Boards

OSC bundle option is disabled for such boards.
If you want to use that, please use this macro and handle packets manually.
ArduinoOSC does not use bundle by default.

  1. #define ARDUINOOSC_ENABLE_BUNDLE
  2. #define ARDUINOOSC_MAX_MSG_BUNDLE_SIZE 128

Enable Debug Logger

You can see the debug log when you insert following line before include ArduinoOSC.

  1. #define ARDUINOOSC_DEBUGLOG_ENABLE
  2. #include <ArduinoOSC.h>

Dependent Libraries

Embedded Libraries

Special Thanks

License

MIT