The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
22 views

Byte Addressable Locations

A processor has 24 bit address bus 16 bit data bus word contains 2 bytes byte addressable Peripherals and memory units will be connected and the entire memory space most likely will be used. There ...
2
votes
1answer
118 views

Continuous scanning for iOS CoreBluetooth Central Manager?

The Low Energy Bluetooth spec does not say much about whether peripherals can connect to more than one central at a time, but my experience testing tells me that they cannot. Because my application ...
1
vote
0answers
57 views

STM32F4xx - Writing to memory in C

I am having a problem writing to memory on my ARM STM32F407VG. I am using Keil to program it and working with it for an Embedded Systems class. We just moved from ASSEMBLY to C and I am still getting ...
1
vote
0answers
295 views

iOS BLE peripheral / advertisement data in background mode

I'm developing a system which has a BLE device (TI CC2540) as Central and an iOS app on iPhone4S as Peripheral. Everything works fine except 1 function I need: white-list (filtering) advertising ...
1
vote
1answer
218 views

Can BLE iOS device be peripheral and central at the same time?

Is there any possibility to have both peripheral and central mode available at the same time? In that case we are advertising as peripheral while listening for advertisements of other devices. Thanks ...
1
vote
0answers
44 views

c# java eid reader peripheral not detected

I'm trying to run a test wrote in C# that uses Java classes. In Java classes, I try to detect an EID card plugged in the computer. The Java code has been tested and works well but once I try to ...
3
votes
3answers
4k views

Run iOS 6 device as a BLE peripheral

As we know, iOS 6 support running devices (iPhone 4s and above, and new iPad) as a BLE peripheral. There is a demo in WWDC 2012 Session 705 called "advanced core bluetooth". I asked for the source ...
5
votes
2answers
1k views

Can HTML5 communicate with peripherals like scanners and credit card readers?

My company writes software that installs on client machines to perform point-of-sale transactions. The software interfaces with a variety of external peripherals (receipt printers, bar code scanners, ...
0
votes
1answer
260 views

How to make iPhone 4s with iOS6 beta a peripheral device?

I want my iPhone 4s act as peripheral device. To do that I have used peripheral manager that included in iOS 6 beta but now my device is not discoverable.
0
votes
1answer
569 views

building a very simple LE bluetooth peripheral

For educational and nerdy reasons, I am trying to build a very simple Bluetooth LE peripheral for an iPhone 4S using CoreBluetooth. For the peripheral itself, where can a get a cheap $10-$25 bluetooth ...
1
vote
1answer
472 views

CoreBluetooth: Running as Central and Peripheral at the same time

In GameKit I'm able to set up peer-to-peer connections. I'm wondering whether in iOS 6 I'll be able to achieve something similar with bluetooth low energy, i.e. having a Peripheral Manager advertising ...
0
votes
0answers
53 views

Compiler programming languages theory, computer usable computing and I/O parts

I started with a small theory of cmd and extensions. First of all was that it consists of compilation to object file, linkage and compilation to exe. The languages mainly consist of operators, ...
0
votes
0answers
233 views

Externally wake up Android device

I am looking for ways to externally wake up an Android device. I would like to achieve this via USB, but doing it over WiFi, Bluetooth, NFC or any other method is acceptable. A few more details about ...
0
votes
1answer
85 views

Mimic Peripheral behavior using a programming language [duplicate]

Possible Duplicate: Getting mouse position in c# Is it possible to mimic a peripheral , say , a mouse on one of the ports and write a program that could send a click to an (x,y) on the ...
0
votes
0answers
105 views

I'd like to use the iPad virtual keyboard like a peripheral for a desktop computer

I'd like to use the iPad virtual keyboard like a peripheral for a desktop computer, just as a substitute of the original keyboard, any ideas? I didn't find anything on the net. A good solution for me ...
1
vote
0answers
204 views

How to programmatically wake an external screen attached to an iPad

I'm developing a standalone kiosk that is composed of an iPad 2, and an external screen. I have the two connected by cable, and the iPad is locked in a special case to prevent it from disappearing. ...
0
votes
2answers
223 views

Can ruby manipulate and work with peripherals like webcams?

Can ruby manipulate and work with peripherals like webcams? I would like to create a system that uses a webcam. Is it possible to do with ruby?
0
votes
3answers
82 views

power strip with programmig interface? [closed]

As programmers we can do so much with software, but when it comes to a simple task like switching a lightbulp on and off, it gets tricky. But that's exactly what i want to do. Is there any power ...
3
votes
1answer
79 views

Communication with an external (hardware) pushbutton

I would like to create an external pushbutton to use with one of my applications. My question does not focus on the hardware itself (that's why I'm asking it here), but on the software/communication ...
1
vote
1answer
116 views

Java application on Windows system running as USB peripheral

Is there a way to have a USB device act as a Host and an application on a Windows based system to act as the Peripheral? We have a USB device that is the host and we need it to connect to our ...
1
vote
4answers
115 views

Best method for a webpage to access a mac's peripherals?

I'm building a web-based application that can use ActiveX Controls to print to a Thermal Label Printer (specific to shipping labels) in Windows environments, but I am racking my brain to figure out ...
3
votes
4answers
2k views

How to access devices on a client PC from a browser

What are the various ways to access devices on client PC - a barcode reader, a scanner, etc. - from a browser? I realize my users may need a plugin. These devices may have an API that is specific to ...
2
votes
2answers
183 views

Infinite timeouts or “fail fast” in custom network protocol?

Consider custom network protocol. This custom protocol could be used to control robotic peripherals over LAN from central .NET based workstation. (If it is important, the robot is busy moving fabs in ...
0
votes
1answer
685 views

How to preview data from COM port with telnet or other windows tool

I would like to see what data come from COM serial port. Is it possible to do it with telnet or other windows tool? And if so, how to do it?
6
votes
2answers
6k views

How can I cycle a USB device from C#?

I'd like to cycle (simulate unplug and re-inserting) a USB device (modem) after a certain event has fired. I found a sample on codeproject: http://www.codeproject.com/KB/system/usbeject.aspx ...
6
votes
4answers
1k views

Compact Keyboard Recommendations?

Any recommendations for a high-quality compact (no number pad) keyboard, preferably $50 or less? Criteria: $50 or less Preferably with laptop-style keys (scissor switches instead of rubber ...
2
votes
3answers
167 views

With MVC, do interactions with autonomous peripherals belong in the Model or the Controller?

Using MVC with an observer pattern, if a user action requires polling a device (such as a camera) for data, should the polling be done in the Controller and the result passed off the Model or should a ...