I want to use a raspberry pi as a server and send simple commands to several Oculus Go's running a unity app. I have experience with API's so ideally I would like to send some HTTP requests to these Oculus Go's but I don't know if it's possible to have some sort of http server on the Oculus. What is the best way to do this? latency isn't very important and the messages sent will be fairly infrequently. I probably want to have a golang program running on the raspberry pi that then sends the network commands to the unity app on the Oculus. I already asked this question on the official oculus forums but nobody responded, does anybody have thoughts on the best way to implement this? I saw that unity has a transport api for networking but I don't know if that is the best option.
Sending basic commands to the Oculus Go running a unity app
129 views Asked by Tanonic At
1
There are 1 answers
Related Questions in API
- Google Sheets API - Append Request not working
- Is there really no product for docs that has these?
- How to show suggested content in response using Azure Cognitive Search?
- error message when closing current position in binance futures, using ccxt library
- How to filter API data in React Native
- I have fetched an API with JS, but the output looks really bad and I don't know how to fix it
- Session is not storing in react and Asp Dot Core Web API
- Apex charts not rendering series value, showing cannot map values of NULL
- Configure IIS to accept API calls only from API Manager, Deny from direct calls
- Problems with API return using the Axios library in NextJS
- How to query by Iteration in pyral?
- Is there a way to have a user enter a url query and have a single function filter a database?
- Cant get value in Vue from data
- Read stories/posts using instagram API
- Need To Make Minor Change To REST API Response
Related Questions in NETWORKING
- How to avoid duplicates with the pull-based subscribe model?
- How to simulate CSMA/CD protocol in ns3?
- Network System - Cisco Packet Tracer
- Adhoc / mesh network not working (with and without batman-adv)
- Algorithm for finding a subset of nodes in a weighted connected graph such that the distance between any pair nodes are under a postive number?
- Python Client-Server Communication with Protocol
- I registered a service in eureka which is resolving through java code. But it is not able to resolve its name when hitting through chrome or postman
- Share files from the server without data or internet usage
- Player names not synchronizing in unity Mirror Networking
- My phone can not visit the server on macos in the same local network
- Unable to ping remote websites from an ipV6 only ubuntu ec2 Instance
- Linux Networking - Routing packets from one network interface to another
- wrong output from Supernetting algorithm
- Mapping localhost port on host to docker container
- Microsoft Message Analyzer disable resolving IP address to their domain names a.k.a turn off AutoIP feature
Related Questions in RASPBERRY-PI
- Raspberry Pi Sense Hat with Pyinstaller
- Waiting for several hours before resuming execution
- Using compositor in Gstreamer to merge imagesequence with video/audio stream
- How to make this sensor keep taking readings once its when_in_range function has been activated?
- Emulating an HID device with a raspberry pi 5
- How to stream PCM audio to a speakers both on mac and linux in Node.js?
- I want to use NRF24L01 transceiver with raspberry pi but some GPIO pins are already occupied by 3.5 inch display how do i connect transceiver
- voron 2.4 mainsail kiauh error install crowsnest (solved problem)
- Pi4J minimal example's LED doesn't blink
- How can I connect and send data from react-native to raspberry pi
- Xpt 2046 Display with Pn532 RFID reader
- Google SDK for Raspberry pi
- How to use a RaspberryPi camera with the cv2.videoCapture() function?
- How do I capture audio from the system bus in a node app (or from sox) on a raspberry pi?
- Can't open /dev/mem: Operation not permitted Raspberry Pi
Related Questions in OCULUS
- How to script a simple collision using hands in OVRCameraRigInteraction?
- issue with random input latency on quest 3
- Integration Object Tracking Feature with OVR Integration Package in Unity
- can't to save oculus spatial anchors (on cloud or locally)
- AR Plane Detection using Oculus Integration Unity SDK
- UI Overlapping Issue in Unity Mixed Reality
- How do I get Oculus to access an External Drive through Unity?
- Ceating a VR Portal in quest passthrough not working in build for specific unity version (2022.3.9)
- Meta Quest Get controller battery level using ADB
- How to get data from quest3 color camera, or get data from passthrough, but in video streaming form?
- Unity C# Climbing issue
- Create following UI and Head-Lock UI in VR
- Bypass Oculus Link GPU requirements in Unity/other apps
- VLC Unity doesn't play video on Oculus Quest 2
- How to rotate Oculus left in UnrealEngine separately
Related Questions in OCULUSGO
- Proxy or transform a Google Cast to a DLNA (DMS) to view on Oculus Go or other devices?
- How to trigger youtube vr from oculus's browser?
- I want to automatically launch installed applications when my Oculus Go/Quest/Quest 2 machine is turned on
- How to work with build.gradle file in Android Studio
- UnityWebRequest doesn't work in Oculus Go
- Sending basic commands to the Oculus Go running a unity app
- WebXR: how to migrate from Oculus Go to Quest?
- How to trigger Oculus dash from unity script?
- How to build video manager with Unity Addressable Assets?
- Build and Load AssetBundles with Unity for videos?
- Add read permission for USB storage Oculus GO Unity C#
- Saving a txt file to the Oculus Go Internal Storage
- Oculus Go & Unity: Microphone Real-time Playback
- Can't get 360 mp4 video to play in VR (Oculus GO) in Unity
- How to switch scenes using the OVR Utilities?
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
I solved it by using an httpListener in c#. This example on github was very helpful to make it happen in unity.