Questions tagged [remote-control]

remote-control describes question about functionality to interact with services remotely across some communication channel.

In software development, remote-control describes functionality which allows to interact with services across some sort of communication channel.

The term originates from Remote control, but is not limited to one form of communication. It typically includes communication between separate systems, e.g. between two processes or between two different machines, where one participant performs the controlling role and the other is being controlled.

200 questions
1
vote
0 answers

Remote command seek forward (or backward) does not work

I want to be able to seek forward and backward from the lock screen. The code is pretty simple: MPRemoteCommandCenter *commandCenter = [MPRemoteCommandCenter sharedCommandCenter]; [commandCenter.seekForwardCommand…
dariaa
  • 6,285
  • 4
  • 42
  • 58
1
vote
2 answers

Grails remote control plugin - Spring Security Configuration

Whenever I try to use the Grails Remote Control plugin, I get the following Exception. groovyx.remote.RemoteControlException: Error sending command chain to 'http://localhost:8080/******/grails-remote-control' [test] at…
Jim Chertkov
  • 1,199
  • 12
  • 20
1
vote
1 answer

C RbPi UART Remote Control Sockets

I want to remote control sockets in my room manual without an extra library on my raspberry pi. I want to use the UART interface in C. The socket has 433 Mhz receiver and I use a 433 Mhz transmitter. In other librarys you type something like this:…
Sven
  • 11
  • 1
1
vote
1 answer

iOS Media Player remote control events (MPRemoteCommand) are not working with Unity

Recently I've found out that MediaPlayer remote control event (MPRemoteCommand) handlers are not getting called in iOS application with embedded Unity player. I'm using Xcode 6.3.1 and Unity 5.0.1f1, however, it looks like it can be reproduced with…
1
vote
1 answer

android PPM encoder audio library

I need to implement audio PPM (Pulse Position Modulation) on android Reference: http://en.wikipedia.org/wiki/Pulse-position_modulation I want to output PPM from the audio output of the smartphone. The final scope is to create a joystick for…
Gaucho
  • 1,328
  • 1
  • 17
  • 32
1
vote
0 answers

OSX remote control events

I've been searching for a while now and I haven't found anything equivalent to the iPhone UIApplication method beginReceivingRemoteControlEvents in order to send events from my earpods to the OSX app. Is this even possible with osx apps?
1
vote
1 answer

Swift. Receive remote control events to work with MPNowPLayingInfoCenter

As I understand, in order to show music player on lock screen, writing the following code is not enough. override func viewDidAppear(animated: Bool) { var mpic = MPNowPlayingInfoCenter.defaultCenter() mpic.nowPlayingInfo = [ …
Mega4alik
  • 597
  • 3
  • 10
  • 18
1
vote
1 answer

Sending mouse position over internet

How to send mouse position from client A =to=>SERVER=to=>client B ? Example code below gives me position output every 2 seconds What is a better/faster way to do this? NOTICE: using Winsock and cURL gives antivirus malware warning USAGE: for…
Ivan
  • 131
  • 7
1
vote
2 answers

Is there a way to control an app when it's running in background?

I'm new to IOS development and recently I'm designing an app that can be remote controlled by another user via wifi. I'm thinking of implementing it like a "chat app", like when it receive a message like "stop the current music" it'll do so. But…
DrustZ
  • 342
  • 1
  • 5
  • 19
1
vote
0 answers

RemoteControlClient in service, not showing widget

I have an media player service with custom decoders for playing streams. I tried all I could find on the web for registering media control buttons on the screen, but they don't show up. The service works as it follows: In onCreate() I did the…
Cristian Holdunu
  • 1,880
  • 1
  • 18
  • 43
1
vote
2 answers

UIApplication -beginReceivingRemoteControlEvents causes Music app to take over audio

I have an app that speaks to the user and listens to the user's speech response. I've noticed that when I plug my phone into my car audio system and use the app, when my app is done speaking, it receives an interruption notification and the Music…
eric.mitchell
  • 8,817
  • 12
  • 54
  • 92
1
vote
2 answers

How implement mouse on Android TV boxes on platform rockchip?

I have an "MINIX NEO X7 mini" Android device. There is installed application eHomeMediaCenter. It is a DLNA server. Then I launch RKRemoteControl application on my Android smartphone, select eHomeMediaCenter and see mouse cursor on my Minix. And…
Yevhen Vasilenko
  • 292
  • 2
  • 4
  • 9
1
vote
0 answers

Android Mapping Remote Control Keys with Virtual Key Board and append the text in edittext

I am working on a project based on Mapping the Remote control keys with android device.Here I can able to get the keycodes of Remote keys and return values for it based on the key codes.But the problem is, I don't know how to append the values…
Nik
  • 136
  • 1
  • 8
1
vote
1 answer

Bluetooth Low Energy Emulate Keypress

I am playing around with a TI CC2541 chip, and was wondering if it is possible to send a "keypress" over BLE. This would be similar to the new Muku Shutter for iOS and Android, because I am trying to figure out a way to interface with a mobile…
blin
  • 11
  • 1
1
vote
2 answers

Send data to specific device without GCM

I'm looking for the best approach to send data(String) from my server (PHP) to one specific android device. I can check the device if is online/offline on my server(with http-post method). But I don't know how to send data to spesific device…
Jessica
  • 15
  • 5