infrared

Can iPhone camera see infrared light?

安稳与你 提交于 2019-12-05 21:50:41
I know it exists for some Android devices, but can also an iPhone (4, 4S, 5, 6...) "see" and display infrared light that is captured by its camera? So apparently only the front camera (the one facing you) allows it. (The back one filters infrared). Point a tv remote control to the front lens with Camera app on and you'll see the little precious beam. Found it here: http://www.instructables.com/id/See-Infrared-LED-Light-with-an-iPhone-4/ 来源: https://stackoverflow.com/questions/28011609/can-iphone-camera-see-infrared-light

IR Remote control app

纵然是瞬间 提交于 2019-12-05 21:17:43
I'm making a remote control app with 6 buttons which works with samsung tv's. For kitkat I used the new api ConsumerIRmanager but I want the app to work with jellybean also so the app works great for kitkat version but it won't start on jellybean here is the code: public class MainActivity extends Activity { Object irdaService; Method irWrite; SparseArray<String> irData; TextView mFreqsText; ConsumerIrManager mCIR; ImageButton power; SeekBar sBar; @Override protected void onCreate(Bundle savedInstanceState) { // Be sure to call the super class. super.onCreate(savedInstanceState);

ConsumerIrManager not working on HTC m8 lollipop

耗尽温柔 提交于 2019-12-05 17:47:16
before the official lollipop update ConsumerIrManager was working fine with the HTC m8 (And so did the official HTC IR samples from htcdev) - After update it doesnt work anymore ConsumerIrManager gives Error-16 any idea what HTC may have changed? I recently had the same issue on the HTC One M7 once updated to Lollipop. I pulled some JARs and APKs from the phone and decompiled them to found that they are not using the ConsumerIrManager like every device is doing since Android 4.4. Worst, they rolled back and use the same libraries they were using before 4.4. In my case, I rolled back my

Programming for the Apple infared remote controls

青春壹個敷衍的年華 提交于 2019-12-05 13:48:22
How do I get started with programming for the Apple infared remote control? To start with, I only intend to support one control, and one type of receiver, that on the current unibody MacBooks. What I mean by programming, is, how do I get started with writing an OSX, preferably Cocoa if there are APIs, app which intercepts commands from the control, and then sends commands to the OS. For example, as a start, I'd like to be able to simply pick up a key press from the remote control, and then emit a keyboard command to the OS. Like, say I've got this listener app running, if you press the menu

Thermal imaging palette

可紊 提交于 2019-12-05 02:55:52
Since the early days of thermal imaging, infrared cameras often use a distinctive palette that runs from black through blue, magenta, orange, yellow to bright white. This palette is often called Iron , or Ironbow . Here is a typical false color visualization of an image taken with a forward looking infrared camera (source: Wikipedia). "Termografia kot" by Lcamtuf - a typical false color infrared On a specialized infrared imagery forum I've found a post from 2005 with a discrete palette that seems to be close to what I am looking for. A discrete FLIR palette of unknown origin However as with

How to programmatically use the mobile phone's IrDA to remote control a media player?

爷,独闯天下 提交于 2019-12-04 16:23:01
which API or library on which mobile OS is to be used when one needs to write a code to use the phone's IrDA to create the necessary impulses to remote control consumer electronics e.g. a HDD media player? Is maybe a certain mobile OS better suited for that kind of application than others? First you need to know that IrDA is not the best choice for remote control. It can be done, but IrDA is by design high speed/low range, you can emulate low speeds but ranges (IMO) are far from practical usage (Nokia e50 is able to control digital camera shutter from 2-3m... with very, very careful aiming).

Is it possible to access the infrared camera on iPhone X?

笑着哭i 提交于 2019-12-03 20:42:02
According to this picture: the iPhone X has an infrared camera. It is primarily used for face detection but there are other uses for infrared. Can it be accessed directly? not via the approved iOS API library calls. But undocumented API should be possible if you guess how to do it. Still not sure about infrared but to read the depth information from the iPhone X TrueDepth camera, we can use the AVDepthData class and related APIs. Here's a tutorial . The company, reallusion.com makes a 3D animation product called 'iclone 7' which interfaces with the iPhone infrared camera. Try contacting them

Allow an infrared device to send a signal to control the monitor of a PC

狂风中的少年 提交于 2019-11-30 19:55:21
I have a monitor which can be used also as television (it has a DVI-D connector AND a cable connector.) And for a while I have an infrared device on my computer which I use to synchronize my PDA and mobile phone. I want the infrared/irDA device of my PC to send a signal to my monitor to switch between TV and PC mode. (Or to control the monitor in some other way, like turning it on and off during logon/logoff.) To do this I need to: Use the PC device to record the commands from my monitor remote. Repeat that signal from my PC to my monitor to send the command. With nearly 30 years of

Allow an infrared device to send a signal to control the monitor of a PC

吃可爱长大的小学妹 提交于 2019-11-30 04:15:14
问题 I have a monitor which can be used also as television (it has a DVI-D connector AND a cable connector.) And for a while I have an infrared device on my computer which I use to synchronize my PDA and mobile phone. I want the infrared/irDA device of my PC to send a signal to my monitor to switch between TV and PC mode. (Or to control the monitor in some other way, like turning it on and off during logon/logoff.) To do this I need to: Use the PC device to record the commands from my monitor

HTC ONE M8 IR Blaster after Lollipop Update not working

血红的双手。 提交于 2019-11-29 11:44:16
I need to use the infrared transmitter on an HTC One device. Before the lolipop update I could do this no problem, but now my code does not work. ConsumerIrManager mCIR = (ConsumerIrManager)getSystemService(Context.CONSUMER_IR_SERVICE); mCIR.transmit(freq, pat); where freq and pattern are the required values to power on my TV (from the manufacturer) I do not get any errors running this code, the only problem is that the infrared transmitter does not light up on HTC one devices. ( looking at ir blaster through camera ). I dont understand, the exact same code works on galaxy s5 devices. I would