-
Notifications
You must be signed in to change notification settings - Fork 117
Retrieving OSC argument from Threading Server and sending it to a Client #141
Description
I will begin by first explaining my project and what issues I am running to. I am trying to make a program where I can receive OSC information and send it to Pure Data (That part is working), in this program I also need to program some LEDs in my raspberry pi, and they need to respond to certain sliders from my OSC controller. My main issue was that I was working with a blocking server so it was difficult to bring that part of the code in, I tried threading, but being new to it, I sort of ran into confusion. Finally, I arrived at the Threading Server, which seems to be perfect, as it would most likely allow me to run this program with ease, but I run into issues trying to grab the Arguments of OSC addresses, due to being new to this library I don't know how to grab this information from the dispatcher or server and use it to send it through the client and "main", right now the project is based on the 2-way example in the docs. I would appreciate any guidance or help. Thank you very much for your time.
I am reading the code for OscMessage and its builder, and I feel that is the way to go, but run into some trouble when trying to implement it and use its arguments. any tips?
Extra Questions: Are there any functions that facilitate this?