Camera RS232 Protocols
 

I am looking for information on camera RS232/RS485 protocols. The camera I have lists its supported protocols as:

  1. Pelco D
  2. Pelco P
  3. Fastrax
  4. Command

I don't think that Pelco has the features I need but I can't find any information on the last two. Pelco only appears to allow differential changing of zoom and focus (commands to move in/out from current position) but I need to be able to actually SET a value say between 0 and 65535, and also READ the current value.

In fact, I would purchase a completely new camera if I knew it would support the features I need at an afforable (

Any more knowledgeable programmers have some advice on these protocols?

http://www.stackoverflow.com/questions/2170642/

        

There are 0 answer(s) to this question.

Related Questions

serial port call
serial port call I want to open a serial port cash drawer connected to the client pc. I will have a record button on an asp page and when I click on it the drawer will open You'll need some way to communicate with the serial port. Web browsers typically cannot do this, so you probably want to call a program on the system. One way to do this would be with Java Server Pages - you can call a Java application using JNI to communicate with the serial port. Look online for serial communication libraries using your favorite language
Locked Serial Port on Vista
Locked Serial Port on Vista I'm working on an App that talks to a serial port, and on my development machine, I'm running Vista, and that serial port is a Bluetooth connection. Occasionally, the serial port gets caught in a state where my App can no longer connect to it. In .net I get... the port is "working properly." Is there any way to find out which process and or .dll has possession of a serial port, and/or force a port closed? If it makes any difference, my App is in C#, but structurally, it's not convenient to open and close the port with a "using" statement. Thanks, Andy To the best of my knowledge you can't close a serial port that you do not have the handle to. My experience of Bluetooth serial ports is that they can end up getting mapped to different COM port numbers at connection time, and can sometimes leave bogus COM ports when disconnected. For example, I
Error opening serial port
Error opening serial port I'm trying to open and read from a serial port using the System.IO.Ports.SerialPort class. I dragged the serial port from the tool pane (VS 2008) on to my windows form. I've got a property grid set up so I can easily change properties of the serial port at runtime. When I... connection so it's actuall a virtual serial port My settings are as follows: BaudRate = 9600 DataBits = 8 DiscardNull = false DtrEnable = false Handshake = None Parity = None ParityReplace = 63 PortName = COM3 ReadBufferSize = 4096 ReadTimeout = -1 ReceivedBytes = 1 TrsEnable = False... it has to do with the hardware or the driver malfunctioning. This doesn't explain why it works with Hyperterminal though. Follow the advice from Joseph M. Newcomer to see what Hyperterminal is doing differently. Regarding the differences between hyperterminal and the .NET serial port object
Faking an RS232 Serial Port
Faking an RS232 Serial Port I'm developing a project that has a number of hardware sensors connecting to the deployment machine through RS232 serial ports. But ... I'm developing on a machine without an physical RS232 serial ports, but I would like to make fake serial ports that I can connect to and output data from with the aim of faking input from hardware sensors. Does anyone know of a way to create a fake serial port and control it on Windows XP? If you are developing for Windows, the com0com project might be, what you are looking for. It provides pairs of virtual COM ports that are linked via a nullmodem connetion. You can then use your favorite terminal application or whatever you like to send data to one COM port and recieve from the other one
serial port parity
serial port parity Are there any known problems with using a serial port set for 8 data bits, 1 stop bit and even parity, under Windows XP? I suspect this is a case of "my code is failing and I really hope there is a problem with Windows XP." Most likely it's a case of select is broken ("this isn't working but it can't possibly be my code"). If you're having problems, post the code and the real issue so we can help you. You'll also have better luck getting links to specific issues with WinXP and the serial port (I have no idea what issues actually exist
Serial port communication
Serial port communication Hi i'm creating a windows form to send/receive data to/from serial port. At first : i send the data as string to the serial port . Second: i tried to read the string again for test the successfull transmission , but i recieved empty string this is my code : Try Dim SerialPort1 As New SerialPort("Com1",9600, Parity.None, 8, StopBits.One) SerialPort1.Open() SerialPort1.DtrEnabled=True SerialPort1.WriteLine("This is my test message ." ) ' ================= Read from serial port Label1.Text=SerialPort1.ReadExisting() ' this returns empty string Catch ex As Exception MessageBox.Show( "Error writing to serial port:" & ex.Message) Finally SerialPort1.Close() End Try i need to ask another question: is it required to connect device to serial port to send/recieve data successfully ???? please i need an urgent help thanks
reading from serial port
reading from serial port to read from serial port do i need to install some package the get support in netbeans? which packages do i need to import at the start of program? the statement: import javax.comm.*; results in error saying package does not exist...what to do You can use javax.comm package. You can download it in here. You can check an example in here
Serial Port Data Structure
Serial Port Data Structure I need to send data to a hardware device over serial port. I'm using a program called serial port tool for os x. After I connect to the device there is a form box where I can type data to send. I have no idea how to format the data. Here is an excerpt from the manual for the device. "The Net Manager Command structure consists of one start byte, one command byte, five bytes of data, and a one byte checksum. Each message packet is formatted as follows:" an example command is: Byte0=30 Byte1=7 Byte2=5 Byte3=1 Byte4=2 Byte5=0 Byte6=245 How do I type that into the form box in serial port tool? Thanks, Seth Does the "serial port tool" you're using come with any documentation? Assuming the "form box" is expecting printable characters, what you're looking for is a way to input an arbitrary byte value. For example, there might be a mechanism that lets you
Qt and serial port programming
Qt and serial port programming Hi, folks ! Is there any serial port facilities in Qt ? If not, which crossplatform (desirable) libraries (for working with serial port and, maybe, with other I/O ports), do you recommend ? Take a look at the Project QextSerialPort. Well, there's always Boost. In Boost there is a great Async I/O library called ASIO. It can perform operations in all sorts of endpoints, including serial ports. There is a great example about how to build a minicom-like application using Boost::Asio, that you can use to see if ASIO will attend your needs. Since boost works on all platforms/compilers under the sun, the cross platform requirement can be checked. Cheers. Use QSerialDevice Thank you kuzulis! QSerialDevice works fine! If there is a chance to do the task in Qt, I would never select boost as alternative. Here is a Qt serial library, works on Win, WinCE, Linux
Serial Port Communication
Serial Port Communication Hello, I want to send data hex format (0x01) or (0xff) to the port where rs232 cable is connected. I am using the MSCOMM control in VC++ 6.0. Is that the correct way to send the hex data. This is the code I have. CString output; UCHAR data1,data2; data1=0x01... may re-format the data to an ASCII string representation instead. Alternatively, you can just use any serial port as a 'file' in Windows. Look at the windows api for opening files and you will see that you can address certain devices as files by using a filename like 'COM1:' instead. Then, you can read/write from it like a file. maybe this will help you link If your data is simply a hex value that you want to send out (as opposed to a hex formatted string), you probably want "%c" rather than "%x". Given a data value of (e.g.) 0x65, "%x" will produce two bytes on the serial port: '6' (ascii
Virtual Serial Port for Linux
Virtual Serial Port for Linux I need to test a serial port application on Linux, however, my test machine only has one serial port. Is there a way to add a virtual serial port to Linux and test my application by emulating a device through a shell or script? Note: I cannot remap the port... RFC 2217 RFC 2217 covers a com port to TCP/IP standard that allows a client on one system to emulate a serial port to the local programs, while transparently sending and receiving data and control signals to a server on another system which actually has the serial port. Here's a high-level overview. What you would do is find or implement a client com port driver that would implement the client side of the system on your PC - appearing to be a real serial port but in reality shuttling everything to a server. You might be able to get this driver for free from Digi, Lantronix, etc in support
Serial Port Redirection or Splitting
Serial Port Redirection or Splitting I am looking for a book and or a code sample of how to do serial port redirection or port splitting. I write a lot of com port applications and want to write a monitor application that will allow me to watch the serial port between the application and the device. So I want to be able to redirect the serial port to another port so I can monitor the data flowing between ports. I understand in some cases this must be accomplished at the kernel level. (in USB cases) I have written the monitor application using system.IO.Ports in C#. If I have to call a C... by any stretch, and it really can't be done in user mode. The Windows DDK does have sample code for a port filter driver, but it is a lot of work to go from the sample to something useful. A pure user mode solution that might work out is to use two additional serial ports to eavesdrop on the wire
Serial port determinism
Serial port determinism This seems like a simple question, but it is difficult to search for. I need to interface with a device over the serial port. In the event my program (or another) does not finish writing a command to the device, how do I ensure the next run of the program can successfully... want. Is there any way to make this more deterministic? Serial port programming feels very out-of-control due to issues like this. I would guess that if you call write("A_VERY_LONG_COMMAND"), and then the user hits Ctrl+C while the bytes are going out on the line, the driver layer should finish... a timeout to make the device ignore unfinished or otherwise corrupt packets. The required method depends on the device. Serial ports have additional control signal lines as well as the serial data line; perhaps one of them will reset the device's input. I've never done serial port programming but I think
Serial port communication in VC++
Serial port communication in VC++ when reading data through serial port VARIANT data; BSTR k; if(m_mscom.GetCommEvent() == 2) { data = m_mscom.GetInput(); k = data.bstrVal; } What is BSTR k; and what do you mean k=data.bstrVal? What is bstrVal? BSTR is a pointer to unicode character(just character type that can hold unicode character). data.bstrVal converts variant to BSTR. BSTR and VARIANT are data types used in COM. Actually, VARIANT is a container that may hold any COM data type. In your case, GetInput() returns VARIANT containing a buffer as BSTR, so bstrVal has to be used to retrieve
Send binary to the serial port
Send binary to the serial port To send a serial string character to the serial port. I would need to call WriteFile(handle, "A", strlen("A"), ...) However, what if I want to specify and send a hex or binary number? For example, I want to send WriteFile(handle, 0x41, sizeOf(0x41), ...) ? Is there a function that allow me to do this? If you just want to write one byte, it still needs to be in an array. So you would need: int buffer[1024]; buffer[0] = 42; WriteFile(handle, buffer, 1); See this: http://msdn.microsoft.com/en-us/library/aa365747(VS.85).aspx There are many ways. The most straight forward for you though would be WriteFile( handle, "\x41", 1 ... ); The strlen() is redundant, since you know the length

Related serial port Video tutorials from Youtube.


Sony Vaio Y Series Unboxing Vi
Just received my Vaio Y series VPCY118GX/BI from SonyStyle.com. Cost $999. Specs: Dimensions (Approx
Sony Vaio Y Series Unboxing Video
Just received my Vaio Y series VPCY118GX/BI from SonyStyle.com. Cost $999. Specs: Dimensions (Approx.):12.80"(W) x 0.93-1.26"(H) x 8.92"(D)5 Weight (Approx.):3.90 lbs (with standard capacity battery) Capacity:500GB2 Speed:5400rpm Type:Serial ATA Camera:Built-in MOTION EYE® camera and microphone with face-tracking technology Keyboard:QWERTY, 86 keys with 2.0mm stroke and 19.05mm pitch Action Buttons:VAIO, Assist, Wireless on / off Computer Type:Notebook Pointing Device:Electro-static touch pad Type of Use:Portable Battery Type:Standard Capacity & Large Capacity Lithium-ion Battery Estimated Battery Life:Up to 8 hours7 with Standard Capacity Battery Up to 12 hours7 with Large Capacity Battery Power Requirements:48W or less Bluetooth® Technology:Integrated Stereo A2DP (2.1 + EDR)11 Ethernet Protocol:10Base-T/100Base-TX/1000Base-T Ethernet Speed:Fast Ethernet (RJ-45) Wi-Fi:802.11 b/g/n3 Multimedia Card Reader:One Memory Stick PRO? (STD / Duo) media slot with MagicGate® functionality One ExpressCard® /34 media slot One Secure Digital (SD memory card) media slot Sound System:Intel® High Definition Audio Telephone Support:1 year toll-free technical assistance available 24/79 at 888-476-6972 Online and Email Support:Available at www.esupport.sony.com International Service:1 year international service plan. Registration required. See www.sony.com/IRSP for details. Limited Warranty Term:1 year limited warranty8. See actual warranty for details. Average Boot Time:60 sec18 Average ...

Olly's Servo Controller Softwa
A demonstration of the hardware and software I have designed and built to control upto 8 servos from
Olly's Servo Controller Software Demo - HVLabs.com
A demonstration of the hardware and software I have designed and built to control upto 8 servos from a serial/usb port. The software has an advanced feature set, including Joystick control, movement recording and playback and servo channel reversing. The layout is intuitive and easy to use. More info, diagrams, firmware and free software can be found on the pages at www.hvlabs.com

Live working GPS demo on the i
Read iphone-gps.blogspot.com for more details on this project. This is a video of a new plug-in GPS
Live working GPS demo on the iPhone (NEW)
Read iphone-gps.blogspot.com for more details on this project. This is a video of a new plug-in GPS module working on an iPhone (can also be used on iTouch). Most commercial companies scrapped their serial port GPS units after the Apple SDK came out. This is a new effort to make it available again.

New future Macbook 2010-2009 D
I got some recent updates from Apples home site, that there is a new Macbook on the shelf. Here is s
New future Macbook 2010-2009 Design update! A Must See !
I got some recent updates from Apples home site, that there is a new Macbook on the shelf. Here is some data that is based on my research: It runs on Intel at 2.26 GHz. It has 4 GB DDR2/3 of Random Access Memory and a complete HDD with 500GB. With 7 hrs of battery life, you can run Snow leopard more efficiently. There is 2 Universal serial Bus 2.0 drives, (NO FIREWIRE!), audio input/output, mag-safe adapter plug-in, Net LAN, Wifi interference, Mini port, and Kingston lock. Also a new Nvidia Ge-fore graphics card. Go to Apple.com for more information.

Touch Screen on GBA
Touch screen is powered by Arduino. GBA has serial communication port, it is same as Arduino. Connec
Touch Screen on GBA
Touch screen is powered by Arduino. GBA has serial communication port, it is same as Arduino. Connection between GBA and Arduino is very easy. Also I made a Arduino pro mini version. kougaku.blog28.fc2.com (In this version, power supply is from GBA)

Sony VAIO VGN-NW240F/S Laptop
The Sony VAIO VGN-NW240F/S Laptop Computer is a perfect mix of power and style, equipped to tackle a
Sony VAIO VGN-NW240F/S Laptop
The Sony VAIO VGN-NW240F/S Laptop Computer is a perfect mix of power and style, equipped to tackle almost any graphics requirement you throw at it. Enjoy the powerful performance of an Intel Core 2 Duo T6600 2.20GHz processor and 4GB of DDR2 system memory. The Sony VAIO VGN-NW240F/S Laptop Computer comes with Windows 7 Home Premium 64-bit operating system. Store your favorite multimedia, important documents, and cherished family photos on the roomy 320GB Serial ATA hard disk drive. Graphics are displayed brilliantly on a 15.5-inch diagonal widescreen HD-capable display with a 1366x768 resolution. You can output your HD content to your favorite HD Display via HDMI port, and all of your graphics requirements are handled by integrated Intel Graphics Media Accelerator 4500MHD with Intel Clear Video Technology with 1750MB Total Available Graphics Memory. Connecting to the web and your peripherals has never been easier: onboard Ethernet and 802.11b/g/n wireless are ready and waiting. The Sony VAIO VGN-NW240F/S Laptop Computer also features an integrated webcam and microphone with face-tracking technology, DVDRW optical drive, media card reader and much more. This capable Sony VAIO VGN-NW240F/S Laptop Computer will meet all your PC needs with style!

Apple 1 Games
Here are a few games for my apple 1 replica. There is no disk drive for the computer so the games ha
Apple 1 Games
Here are a few games for my apple 1 replica. There is no disk drive for the computer so the games have to be either typed in by hand, or dumped through the serial port to the replica. "Microchess" "Slots" "Deal or No Deal" Watch in HD, click the HD button in the bar under the video.

Giana Sisters running on Natam
Note, this is just a progress video and not the final result of Natami's performance... The Great Gi
Giana Sisters running on Natami - Progress video
Note, this is just a progress video and not the final result of Natami's performance... The Great Giana Sisters running on the Natami video by Thomas Hirsch, posted on 11 May 2010. For more info, see the original thread: www.natami.net Related thread on AmigaWorld.net: amigaworld.net Natami: Native Amiga www.natami.net Frame generation .......... ECS, fixed 28MHz pixel clock SyncZorro Interface ....... preliminary version Copper .................... fully implemented, with buffered data fetch Video DMA ................. fully implemented 256 color registers ....... fully implemented Sprites ................... 16bit linebuffer blitter ................... basic implementation. Block and fill mode only, line to come Video priority ............ half implemented Scandoubler ............... fully implemented Interrupts ................ fully implemented Paula DMA control ......... fully implemented Audio out ................. fully implemented VGA out ................... working DVI out ................... o PCI ....................... o IDE ....................... fully implemented CIAs ...................... fully implemented Disk DMA .................. 880k and 1790k, read only Serial Port DMA ........... o Slow peripheral I ....... fully implemented (Joy/Mouse/Keyb/PRT/DSK/SER) PC mouse and kbd support .. o Fast RAM controller ....... o Kickstart flash logic ..... o Battery-backed up clock.... o 15k Video out ............. o 15k Video in .............. o Audio in ...

Max/MSP with arduino - Sequenc
My first arduino sketch.. A step sequencer I wrote in Max/MSP is used for this. The max patch sends
Max/MSP with arduino - Sequencer drives LEDs.
My first arduino sketch.. A step sequencer I wrote in Max/MSP is used for this. The max patch sends an arduino serial data through the usb port, which lights up a specific LED pair corresponding to which drum was triggered. This all happens in real time, and is freely modifiable, so its ok for jamming with the sequencer. This would be a bit better if i had more LEDs, but i only have 8 available right now. In theory, you could hook up massive LED arrays to this, to drive entire screens from the program.

Final stepper motor PC program
This is the last video of the serial stepper motor alone, it will come back on sometimes later but i
Final stepper motor PC program & mods
This is the last video of the serial stepper motor alone, it will come back on sometimes later but in conjunction with other stuff like in a robot. This video shows 2 important things, the heat sinking with fan cooling of the easy driver, and the final PC program that is available for download. All of these things come together to create a continuous duty fully functional serial controlled stepper motor! The most important thing so far is the heat sink, this took the drivers duty cycle from like 10 minutes on and 5 minutes for cooling to continuous duty non stop. You can download the Installer for the program here! Make sure you know which serial port your arduino is on and open it in the program before you try to send anything (if you have arduino serial terminal running then close it and or any other program that may be using the port as well). code.google.com HOW TO WIRE IT this website has a nice image (and some sample code) showing the utmost basic configuration, the same configuration which was used in this video. danthompsonsblog.blogspot.com

Gadator1 - My own wave player
Mój piewszy udany projekt zwi?zany z cyfrowym odtwarzaniem d?wi?ku(w ca?o?ci od pocz?tku do ko?ca za
Gadator1 - My own wave player with ATmega8
Mój piewszy udany projekt zwi?zany z cyfrowym odtwarzaniem d?wi?ku(w ca?o?ci od pocz?tku do ko?ca zaprojektowany i zbudowany przeze mnie). Sercem urz?dzenia jest procesor typu Atmega8 w wersji L (co prawda powinien by? taktowany max 8 MHz, ale w tym przypadku przetaktowa?em go do 16 MHz i nie zrobi?o to róznicy w pracy jego wykorzystywanych tutaj podjednostek). Odtwarza on d?wi?k wystawiaj?c kolejne próbki pliku *.wave na port D do którego jest pod??czony prosty covoxopodobny przetwornik cyfrowo-analogowy (DA) zbudowany w oparciu o jednobajtow? drabinke rezystorow? w uk?adzie binarnym. Sygna? z niej jest potem kierowany na wzmacniacz mocy oraz na g?o?nik. Plik d?wi?kowy *.wave jest przechowywany w zewn?trznej pami?ci EEPROM z dost?pem szeregowym typu AT24c256. Plik d?wi?kowy zosta? nagrany na komputerze i zgrany do pami?ci urz?dzenia programatorem mojej w?asnej konstrukcji. Program na Atmeg? zosta? napisany w pe?nej wersji kompilatora Bascom. My own project with avr processor(atmega8 version L), serial EEPROM memory (with sound in *.wave format), power amplifier and binary resistors array.

MS-DOS computer
Here's an old MS-DOS computer for you. Slow as hell to boot up, has all the original floppies. Compu
MS-DOS computer
Here's an old MS-DOS computer for you. Slow as hell to boot up, has all the original floppies. Computer is a zenith. complete with RS-232 serial port, serial-style monitor port, and a parallel port on the back. Processor is an Intel 8088. I boot it up and run a directory listing on the floppy disk. very hard to read the screen, and i adjust the contrast after running the directory command. If anyone is interested in other videos of servers, old as/400 mainframes, microcomputers, unix system v machines or my modern 5 computer mosix cluster, pm or leave a comment. www.anthonycargile.com

AVEC GPS - Time Lapse Camera D
Hi Guys, This time lapse driving demo is done with AVEC GPS running on a Sony PSP connected to an ex
AVEC GPS - Time Lapse Camera Demo
Hi Guys, This time lapse driving demo is done with AVEC GPS running on a Sony PSP connected to an external GPS unit via serial port, and the official Sony PSP-300 camera (Go! Cam) connected to the USB port. A map screen is captured to file every time the program receives a NMEA sentence from the attached GPS device, and an image is captured from the camera for evary map screen. THe two images are fullscreen (480x272), but to produce this video, I have repositioned the GPS information on the map screen, and cropped both images to make a reasonable size screen for upload to YouTube. Cheers, Art.

Booting up my SGI Octane2
A video of my SGI Octane2 captured with a crappy web camera. The sound is way off, sorry about that
Booting up my SGI Octane2
A video of my SGI Octane2 captured with a crappy web camera. The sound is way off, sorry about that :) Here's the hinv output: nuclear@octane:~$ hinv 1 400 MHZ IP30 Processor CPU: MIPS R12000 Processor Chip Revision: 3.5 FPU: MIPS R12010 Floating Point Chip Revision: 0.0 Main memory size: 1024 Mbytes Xbow ASIC: Revision 1.4 Instruction cache size: 32 Kbytes Data cache size: 32 Kbytes Secondary unified instruction/data cache size: 2 Mbytes Integral SCSI controller 0: Version QL1040B (rev. 2), single ended Disk drive: unit 1 on SCSI controller 0 Integral SCSI controller 1: Version QL1040B (rev. 2), single ended IOC3/IOC4 serial port: tty1 IOC3/IOC4 serial port: tty2 IOC3 parallel port: plp1 Graphics board: V6 Integral Fast Ethernet: ef0, version 1, pci 2 Iris Audio Processor: version RAD revision 12.0, number 1

TV Lift
I made a controller for the TV Lift that was built into my house. It has a serial port, and is contr
TV Lift
I made a controller for the TV Lift that was built into my house. It has a serial port, and is controller by my house server. I made a iPhone application that connects to to the server and controls the lift. Here is a demonstration of it working. There's more info on my blog: alternet.us.com

RGB LED Controlled by a Comput
The computer issues commands over serial to an AVR which then issues another command to another AVR
RGB LED Controlled by a Computer
The computer issues commands over serial to an AVR which then issues another command to another AVR over SPI. There can be up to 65536 LED controlled with one serial port, in this example there is only one.

Atari STbook Laptop, QWERTY US
RAREST ATARI COMPUTER EVER! Impossible to find US version with rare as hell PSU (power supply was th
Atari STbook Laptop, QWERTY US Tos, power supply and battery
RAREST ATARI COMPUTER EVER! Impossible to find US version with rare as hell PSU (power supply was then only option when buying). Serial No 257, probably less than 100 survived, only few US exist, most is not working. After the success of the Atari STacy laptop Atari went back to work on a new and improved version of its portable ST. The STBook is a marvelous computer, designed by Tracey Hall who is also responsible for the STPad tablet computer. Its LCD screen is not backlite, but produces a crisp clean picture, however still can be difficult view at times. The LCD screen was an Epson Custom Module (ECM) and it's very delicate and nearly impossible to locate. The STBook weighs in at just under 5lbs which is amazing for all the technology that was packed onboard, todays laptops have just reached the sub-5lb mark so this goes to show how far ahead Atari was. The laptop has a fixed memory configuration of either 1MB or 4MB and does not have provisions for adding additional memory internally, however additional memory may have possibly been added external through its external processor bus on the side of the unit. The hard drive is 40mb's. The keyboard is quite comfortable and easy to use. The mouse is an interesting item, its a pressure sensitive pad which you push in the direction you wish the point to move, the harder you push the faster the mouse moves, 2 buttons are located for clicking and selecting objects. Although this pointer was quite innovative, it is difficult to ...

I-robot using .net
Serial Port Programming using C# and .net framework, send signals to i-robot to sing a song and driv
I-robot using .net
Serial Port Programming using C# and .net framework, send signals to i-robot to sing a song and drive in a square!

Long Weekend Electronics Proje
This little circuit is pretty cool. I made two sets of these cards from one 6" x 6" pc board materia
Long Weekend Electronics Projects-PIC16F876 LCD 8 Keys LED Serial Port I2C Bus
This little circuit is pretty cool. I made two sets of these cards from one 6" x 6" pc board material. After exposing, etching and drilling I sheared the cards into individual boards. One set is in the two board configuration and the other is the 3 board setup. Front board has 2 line x 8 chars back-lit LCD display with 8 keys, a Red/Green LED all on a 2" x 3" card. It plugs into another card that has the surface mounted PIC 16F876 micro-controller and a 64K E2ROM chip. There are 8 lines that come from the board to the prototyping area card. It has as AC to DC power supply and a 5V regulator . The eight lines you connect to for various project are: 2x 10-bit Analog, 2x Digital I/O, 2x Serial port (RX/TX data), and 2x I2C device lines (SDA,SCL). I have a few project I want to build and the all need this kind of interface. The prototyping area will allow for a variety of circuits. Pretty neat eh. A programmable antler.

EventGhost Tutorial - How to c
In this video a demonstrate how to configure EventGhost from scratch. I use WinLIRC to process the s
EventGhost Tutorial - How to configure this automation tool
In this video a demonstrate how to configure EventGhost from scratch. I use WinLIRC to process the signal from my IR receiver connected to the Serial Port. Eventghost is an open source automation software for Windows, that can be extended through plugins. It can use different input devices like infrared or wireless remote controls to trigger macros, that on their part control a computer and its attached hardware. So it can be used to control a HTPC/Media-PC with a normal consumer remote. But its possible uses go much beyond this. EventGhost monitors everything that happens in your computer. Opening applications, changing focus from one app to another, pressing keys, pressing remote buttons, and so on and so forth. All this constitutes events and EventGhost can associate actions to execute to each and every event happening in your machine. It's a really powerful tool and this tutorial will barely scratch the surface of what it's capable of. Those interested in more information would do well by heading to its homepage. www.eventghost.org Supports Windows 2000, XP, Vista and 7. To make EventGhost to display the current volume (OSD), you will need some codes that are on this thread: www.eventghost.org

My Compaq Presario SR1303WM wi
here is my main computer, used for video editing, and surfing the web. i have rebuilt this computer
My Compaq Presario SR1303WM with a Dell Dimension 3000 Motherboard
here is my main computer, used for video editing, and surfing the web. i have rebuilt this computer 3 times due to motherboard problems. the first one was a shot motherboard. the second one was another shot mothrboard. these 2 used the same AMD Sempron 3000+ CPU. the second replacement, was replacing the AMD motherboard with an Intel-compatible motherboard from a Gateway PC. it had a Celeron @ 2.6GHz. i soon replaced it with a Dell Dimension 3000 motherboard since on the other motherboard i couldn't upgrade the CPU, nor run OSx86. the specs are listed: -Form Factor: Micro ATX -Intel Celeron D @ 2.93GHz, 256KB L2 Cache -1GB of DDR-SDRAM -40GB Seagate ST340015A Parallel-ATA HDD -40GB Samsung SV0411N -2x TSSTcorp SuperMulti 22x DVD(+/-)R/RW/RAM, 52x CD-RW, Lightscribe -64MB Intel Extreme Graphics 2 865G -Mac OS X 10.6.2 (gonna update to 10.6.3 via OSx86 Update, NOT Software Update), Windows Fundamentals For Legacy PC's SP3 -SoundMAX Digital Audio -Creative Live! Cam Optia AF USB webcam -Built-in Multi-Card reader -15 USB 2.0 , 3 FireWire 400 -Serial and Parallel Port -Legacy PS/2 ports -ASI Audio Technologies USB speakers

DriveWire 4 demonstration
This is NitrOS-9 level 2 running on an emulated Color Computer 3 (using MESS) which is attached to a
DriveWire 4 demonstration
This is NitrOS-9 level 2 running on an emulated Color Computer 3 (using MESS) which is attached to a DriveWire 4 server via TCP. All of these things can be done on a real CoCo as well using the built in bitbanger port and a serial cable. More info at sites.google.com

Weekend Electronics Projects-3
This prototype board set I designed has a Red/Green LED, 2 line x 8 chars LCD display, 8 keys, on-bo
Weekend Electronics Projects-3 Board PIC16F876 Mini-Computer LCD Keys LED Serial I2C Part 3
This prototype board set I designed has a Red/Green LED, 2 line x 8 chars LCD display, 8 keys, on-board power supply rectifier and 5V regulator. There are eight pins that goto the prototyping area. Two can be 10-bit analog to digital, two digital I/O pins, two pins for SDA & SCL used for I2C bus, two pins for RXD & TXD used by the serial port. Any of these pins can also be just digital I/O. Next video will be of this programmed and working. I am going to make a ICSP tool for programming a PIC 16F876A-I/SP micro-controller chip.

How to set up Multiple Monitor
www.wintecind.com/add2 - ADD2 cards are a convenient, low-cost method for connecting one or two DVI
How to set up Multiple Monitors by installing ADD2 Card
www.wintecind.com/add2 - ADD2 cards are a convenient, low-cost method for connecting one or two DVI digital displays to the graphics controller of any Intel 915G, 945G or G965 based motherboard. Less expensive than add-on graphics cards, the ADD2 card utilizes the PCI Express x16 port to accept Serial Digital Video Out (SDVO) signals from the graphics controller hub.

Taking an 11-year old laptop a
The laptop of one of my friends died a few weeks ago, so he asked me to take it apart and make a nic
Taking an 11-year old laptop apart
The laptop of one of my friends died a few weeks ago, so he asked me to take it apart and make a nice video about it. So, here it is! Enjoy! === COMPUTER SPECS === Compaq Presario 1260 Microsoft® Windows® 98, first release 4GB hard drive, unknown brand AMD K-2 3D Processor @ 333mHz Included outputs / inputs: 1x 54Kbps phone line modem 1x USB 1.0 port 1x Serial port 1x LPT1 (serial printer port) 1x VGA out (for connecting a different screen to the laptop) 1x PS/2 (for connecting a PS/2 keyboard OR mouse) 1x Power in (12V) Thanks to Compaq for making a very good laptop alive for 11 years!

Disassembling a laptop - Packa
daanberg.net - That's right, it's time for another dissasembly video. This time, I'm taking apart my
Disassembling a laptop - Packard Bell EasyNote VX 3605
daanberg.net - That's right, it's time for another dissasembly video. This time, I'm taking apart my trusty but not-long-surviving laptop I was gifted by a company for which I did some things. The laptop died completely - I could turn it on, but there was no way to even get past the POST. And no, the keyboard wasn't broken and the connector was just fine. So, I took it to a computer repair shop just for fun - to see if they could find out what it was and if they could repair it. The laptop wasn't really valueable to me, as it was old and slow (build year 2000) and I was only using it for some basic web browsing and e-mailing (Gmail web interface was too tough for this machine, so I used good ol' Outlook Express 6...) The computer shop examined the laptop, but it turned out to be a stonedead computer corpse. And that's what I always do when one of my computers die I disassemble them for you to enjoy. And now the much awaited SPECIFICATIONS! Brand: Packard Bell Model: EasyNote VX 3605 Build year: 2000 Original operating system: Windows Millennium Processor: Intel Pentium III @ 1 GHz RAM: 64 MB 1x Hard disk drive: Toshiba, 6 gigabytes CD-ROM drive Floppy disk drive Graphics: LCD-screen, composite out (never worked) Networking: 1x modem, 1x included PCMCIA ethernet card Audio: built-in speakers w/ independent volume control, headphones out, line-in, microphone-in Connectors: 2x USB, VGA, phone connector (modem), serial port, docking station connector, PS/2 connector ==== This ...

Monkey Island on a 1992 Highsc
EDIT: Better Video quality here: www.youtube.com Alright I got a new SRAM card for my good old Highr
Monkey Island on a 1992 Highscreen Handy Organizer 8086
EDIT: Better Video quality here: www.youtube.com Alright I got a new SRAM card for my good old Highreen handy Organizer. The machine is basically a 8086 with 640 K RAM, monochrome CGA Graphics and PC speaker, running on 2 Standard AA Batteries for like 20 hours (Many weeks if you don't use it like 24/7). I just put the Monkey Island game and disc 1 on my 1 MB PCMCIA SRAM card (Copied from my WIndows 98 laptop) and ran it from the command line. The batch i ran was just monkey.exe cki (meaning CGA, Keyboard and Internal speaker). The Highscreen Handy Organizer has a COM and LPT port but i was too lazy to connect a mouse so i played with the keyboard. The game runs quite well on such a slow machine (7.15 MHz, looked it up). Here's the specs of the machine for the tech freaks... Processor: NEC V30 (80C086 compatible) @ 7.15 MHz Display: Nonreflective mono supertwist (Monochrome CGA @ 640x200) Graphics card: CGA emulation with 14 shades of gray Video RAM: 32 KB SRAM Memory: 640 K System RAM, 512 KB System Drive C: from ROM, 1.5 MB User drive D: and 384 KB User drive E: from RAMdisk 2 PCMCIA 1.0 Slots for SRAM cards from 128 KB to 8 MB (Some other work as well though) 82-Key Keyboard, German layout 1 Serial, 1 Parallel port Powered by 2 AA Batteries, RAM buffered by a CR2032 lithium battery BIOS: Phoenix OS: MS-DOS 5.0 Software in ROM: MS-dos 5.0, Race Pen GUI, Microsoft Works Size: 245 mm x 115 mm x 25 mm Weight: 550 gram including standard AA batteries

Receiving Digital with SDR-Rad
This video shows how I connected SDR-Radio to Ham Radio Deluxe using Virtual Serial Port Emulator an
Receiving Digital with SDR-Radio and DM780.
This video shows how I connected SDR-Radio to Ham Radio Deluxe using Virtual Serial Port Emulator and Virtual Audio Cable programs to receive digital mode transmissions. A virtual Audio Repeater program was used to monitor the Receive audio. I hope this is useful in explaining how to use virtual ports and cables. 73, N7JFP.

Arduino Glove Controller Proto
Prototype of an Arduino based contoller. The controller consists of three flex bend sensors, 3-axis
Arduino Glove Controller Prototype w/ rock paper scssors game
Prototype of an Arduino based contoller. The controller consists of three flex bend sensors, 3-axis accelerometer, and an Arduino as the microcontroller. A simple rock paper scissors game was programmed to test the functionality of the device. Processing was used to read data on serial port and for the actual game itself. This device was built as a final project for our EE320 class at UNLV. Other games/apps are also in the works. Pls feel free to leave comments and or questions.

Using Bluetooth Barcode Scanne
tec-it.com Read data from Bluetooth SPP (eg barcode scanners) and TCP devices (gauges, scales, ...)
Using Bluetooth Barcode Scanners with Android
tec-it.com Read data from Bluetooth SPP (eg barcode scanners) and TCP devices (gauges, scales, ...) with your Android! GetBlue is an Android Bluetooth reader and keyboard wedge, it offers versatile Bluetooth and TCP data acquisition. GetBlue communicates with - serial Bluetooth devices (Serial Port Profile like SPP barcode readers or BTM 222, RN41 Bluetooth modules), - TCP/IP devices - and camera scanners. Captured data is displayed, saved (HTTP, TCP, File, Google Docs) or injected as virtual keystrokes into Apps (GetBlue virtual keyboard wedge). GetBlue is a versatile data acquisition app for Android® devices (1.5 or higher). Data from Bluetooth SPP devices, HTTP or TCP-IP endpoints and from camera scanner apps like ZXing is displayed, logged, stored, forwarded or injected as virtual user input into other apps (data acquisition via keyboard wedge). GetBlue automatically captures data from an adjustable datasource and forwards the collected data to a datasink. Configuration and testing of the data acquisition tasks is done with the GetBlue app. Data acquisition itself is performed by a background service which is invisible to the user. Besides this, GetBlue includes a soft-keyboard (GetBlue Demo Keyboard) which is required to inject captured data to other apps. The current version of GetBlue supports the following datasources: - Serial Bluetooth devices (supporting SPP - serial port profile / RFCOMM) - TCP/IP and HTTP based devices or applications providing data via TCP ...

ROB Serial Port Mod
This is my first video; Forgive me for being a horrible cameraman. I'll get better at it... For more
ROB Serial Port Mod
This is my first video; Forgive me for being a horrible cameraman. I'll get better at it... For more info: opalassociation.net See my ROB in action (occasionally) live at www.ustream.tv Quick FAQ -What makes this mod different from other ROB mods? -Well, for one, there aren't too many out there...I've seen 3 after vigorous searching of the internet. But for the ones that are out there, only one of them I've seen had the ability to turn the LED light on/off, but even more importantly than that, I've haven't seen ANY ROB mods that allow one to move multiple motors at once. Because this mod can, ROB can move much faster and more efficiently, making him much less useless than most people find him to be. -You have the ROB plugged into your desktop, yet you are controlling it by pressing keys on your laptop. Explain yourself! -I used Remote Desktop to control my desktop since I didn't have a monitor for it AND my laptop doesn't have serial port. :D To be continued..as questions come up. :P If you like the video, please suscribe to my channel! More footage and other things are to come! Sorry for the wierd music. :P Please; If you have any suggestions or criticism, or anything about my video, please leave a comment, rating, or whatever floats your boat. You can even spam me at MUDSKIP@opalassociation.net if you don't believe this video is legit, and I'll get more footage out. This is an old ROB wired up to a serial port; He can now be controlled by any computer with a serial port ...

PConhand, Ruputer, Matsucom, R
Original release as the Ruputer it was a wristwatch-sized wearable computer developed in 1998 by Sei
PConhand, Ruputer, Matsucom, Rare Computer Watch!
Original release as the Ruputer it was a wristwatch-sized wearable computer developed in 1998 by Seiko. In the US it was marketed as the OnHand PC by Matsucom. The Ruputer had a 16-bit, 3.6MHz processor and 2MB of non-volatile storage memory and 128 KB of RAM. Its display was a 102×64 pixel monochrome LCD. Its main forms of input were a tiny 8-direction joystick and 6 function buttons. It also had a serial interface and an IR port for communicating with other devices. The main body of the device (separate from the strap) was roughly 2 inches wide, 1 1/8 inches across, and 5/8 of an inch deep. Its was powered by 2 high-powered watch batteries, which supplied the device enough energy for approximately 30 hours of use. Under normal conditions, the watch powered down when not in use in order to extend its battery life.

LED on COM
Control Intensity of an LED using the serial COM port - pentru forum softpedia :P
LED on COM
Control Intensity of an LED using the serial COM port - pentru forum softpedia :P

Wireless ECG EKG using Arduino
This is the second part of my current project. Pls view my channel and checkout the first part too.
Wireless ECG EKG using Arduino and Xbee Radio prototype
This is the second part of my current project. Pls view my channel and checkout the first part too. Wireless transmission of heart rate using an ECG / EKG circuit. The ECG circuit is connected to the arduino which calculates the heart rate. The arduino is connected to an Xbee radio which wirelessly transmits the heart rate. A second Xbee is connected to the computer. A processing program reads the data on the serial port then displays it. The ECG circuit and the arduino are both battery powered to ensure safety. Pls feel free to ask questions and leave comments Thanks, Dino Tinitigan UNLV computer Engineering 2012

Visual Midi Trigger DIY Gadget
www.dj-sures.com Using a 16F877a @ 20 mhz, a windows gui written in C# .Net, serial port, midi cable
Visual Midi Trigger DIY Gadget
www.dj-sures.com Using a 16F877a @ 20 mhz, a windows gui written in C# .Net, serial port, midi cable, Roland D2 Midi Device, and my webcam .. The computer applications recognizes my finger and sends the information over the serial port to the Microchip. The microchip sends a MIDI packet over a midi cable to the Roland D2 . The Roland D2 plays the note .

Apple MacBook Pro 13" 2010 ori
This is the 2.4 Ghz version of MacBook Pro 13" 2010 Unboxing and first start up Details and Features
Apple MacBook Pro 13" 2010 original unboxing!
This is the 2.4 Ghz version of MacBook Pro 13" 2010 Unboxing and first start up Details and Features: Intel Core 2 Duo 2.4 Ghz 3MB on-chip shared L2 cache Geforce 320M 256 MB DDR3 4 GB (2x 2 GB SO-DIMMs) 1066 MHz DDR3 SDRAM 250 GB Serial-ATA, 5.400 U/Min. 8x SuperDrive (DVD±R DL/DVD±RW/CD-RW) AirPort Extreme Wi-Fi wireless networking2 (based on IEEE 802.11n specification); IEEE 802.11a/b/g compatible Bluetooth 2.1 Slots: * MagSafe power port * Gigabit Ethernet port * One FireWire 800 port (up to 800 Mbps) * Mini DisplayPort * Two USB 2.0 ports (up to 480 Mbps) * SD card slot * Audio in/out * Kensington lock slot Up to 10 hrs battery iSight cam lighted keyboard Brightness-sensor omnidirectional microphone stereo-speakers with subwoofer

ASUS P5QPro Unboxing
[FR] Unboxing de la P5Q-Pro de chez ASUS. Plus: DDR2 6400 4x2Go Kingston DD Western Digital 500 Go L
ASUS P5QPro Unboxing
[FR] Unboxing de la P5Q-Pro de chez ASUS. Plus: DDR2 6400 4x2Go Kingston DD Western Digital 500 Go Lecteur de carte [EN] Unboxing of P5Q-Pro by ASUS. And: DDR2 6400 4x2Go Kingston HD Western Digital 500 Go internal card reader ----------------------------------------------------------------- SocketSocket 775 NorthbridgeIntel® P45 SouthbridgeIntel® ICH10R Bus système1600/1333/1066/800 MHz Nombre de connecteurs DDRII4 Fréquences DDRII supportéesPC9600/8500/6400 Capacité DDRII maximum16 Go Vitesse du contrôleur réseau1000/100/10 Mbps (Gigabit) Contrôleur audioRealtek® ALC1200 Canaux audio7.1 Compatibilité HD AudioOui Contrôleur IDEMarvell® 88SE6111 Vitesse du contrôleur IDEUltra-ATA/133 Contrôleur Serial-ATAIntel® ICH10R Vitesse du contrôleur Serial-ATASerial-ATA/II Modes RAID du contrôleur Serial-ATARAID 0, 1, 5 et 10 Contrôleur Serial-ATA secondaireSilicon Image® 5723 Vitesse du contrôleur Serial-ATA secondaireSerial-ATA/II Contrôleur FirewireLSI®L-FW3227 Vitesse du contrôleur Firewire400 Mbps Port(s) PCI-Express 16x2 (8x, 8x) Version PCI-Express prise en charge2.0 Compatible ATI CrossFire?Oui Port(s) PCI-Express 1x3 Port(s) PCI2 Ports IDE1 Vitesse des ports IDEUltra-ATA/133 Périphériques IDE supportés2 Ports S-ATA/II8 Périphériques S-ATA/II supportés8 Ports PS/22 Ports USB 2.06 Port(s) RJ-451 Port Firewire1 Connecteurs audio1 (6 en 1) Sortie(s) numérique(s)1 Type de sorties numériquesCoaxial Connecteur pour lecteur de disquettes1 Connecteur(s) pour ports USB 2.03 (pour 6 ...

Post you comment here

Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

There are 0 comment(s) to this page.



The questions and answers taken from stackoverflow.com's public data dump which is licensed under the cc-wiki license.
Logo, website design and layout ©2011 CodingTiger.com