how to send/receive data with bluetooth between UWP(tablet win10) and wcf(win7)? - wcf

Is it possible to send/receive data with Bluetooth between UWP(tablet win10) and WCF(win7)? And if so, where can I read more about this, I have googled, and searched for some examples or information about it.
All help is appreciated.

Related

WebRTC Audio one to many unlimited listeners

I hope I can find an answer to my idea here.
I would like to broadcast audio via webrtc. meaning, there will be one admin streaming audio only and everyone else will be listening. no one will be communicating with each other. think about it as a radio.
simply share a page where everyone can press play and listen. the number of listeners is unlimited. 100 to start with would be good but the latency should not be more than 2 to 3-sec max.
If anyone can help with the code and/or how to do it, I appreciate that. I am not a developer but I like to learn. thank you all

Send real-time video via wifiSend

I would like to make a personal application to be installed on two iPhones. The first to be used as a webcam that transmits to the second via wifi.
Having no experience with xCode, I am looking for a code example to connect 2 devices via wifi and transmit a real-time video stream.
Unfortunately, the documentation and examples I found are deprecated or partial and inconsistent.
Where can I find some code examples to help me solve my problem, preferably in ObjectiveC (but also in Swift)?
Thank you

sending data using Bluetooth or rf transmitter with vb.net?

I am looking at options for a project im working on. I need to send data (text strings) from a computer(s) to a computer or tablet on a forklift. I have vb.net experience but I am not sure if it is even possible to do this with vb.net. Any suggestions? Im probably not posting this in the right stack exchange site, so i apologize in advance if so.

Stream audio from Microphone in IOS

I am trying to get audio from the microphone and stream it across as data through socket to a node server. Since I haven't really done this before, I am confused on how to do this properly.
First of all, how do you actually stream data from a specific microphone? I need the audio to be streamed, not recorded then sent. In other words, it needs to be like a call, where the word you say is automatically sent to to the recipient rather than recorded, then sent as some sort of recording.
Second of all, how do I specify where the audio comes in? I have seen some questions about this but I couldn't find a good solution to how to do this, especially for my case, where the audio input is from the lightening audio.
I couldn't find a good example of how to do this using AVAudioSession. Is there any good resources (examples, tutorials) that I can use to help me?
Thanks!

How to open a webpage from an arduino uno

I was wondering if it's possible to open an internet browser from code in your arduino IDE or any other sort of program connected to the arduino and in turn open a specific webpage.
My idea was to have a button on my arduino uno, once pressed, it would open a browser and a webpage in that browser on my connected computer.
I don't mind if the answer involves code outside of the arduino but it would be great if someone has an idea about how to do this sort of thing.
I've done a lot of research and I couldn't find anything relating to the topic which surprises me a lot as this seems like a simple task, anyway any responses would be greatly appreciated!
There are several ways to open a web page with the help of arduino.
But all of them have on thing in common and that is:
1.You receive the data in your PC
2.You tell your PC if the desired data is received open a webpage.
The best way I can think of telling you pc to open a web page is through a programming language. This could be C#,Java,Processing or any other language that has a library that support to monitor the serial port.
After that all you have to do is to say with the help of programming language if this received then open web page..
Here ara two useful links that might be of help:
http://forum.arduino.cc/index.php?topic=138974.0
http://whichlight.com/blog/arduino-serial-out-to-browser/comment-page-1/
The cheap and easy way would be to make your Arduino appear as a USB keyboard and simulate the keypresses required. Of course, this is prone to breakage if the user is typing, not very cross-platform, etc. but it is fairly simple and doesn't require a program on the machine. I received a small USB dongle attached to an ad once that did this. They found a key combination that worked on both Windows and Ubuntu.
With an ASP.Net application you can easily do that,here is a a tutorial on this issue.
And after getting a signal from arduino all you have to do is to write in ASP.NET to open the required link
Yes, its totally possible given that you know how to code in python.
You can have your own program running that will monitor request from arduino uno using serial port. When it receives a particular set of bytes (say "0xabcdef"), it will call the function to open a browser and a web page.
Here are some of the sites that will help you know how to interface arduino to python and opening web browser using python.
http://www.olgapanades.com/blog/controlling-arduino-with-python/
https://docs.python.org/2/library/webbrowser.html