Dear Paul,
Thanx a lot for your help... and for the sites...
my end application is a wireless surveillance system with remote monitoring
(this is my graduation project for the uni)... I will connect wifi module
and webcam to the USB ports in the TS-7200... and I can remotely form the
internet see what the camera sees... so I don't have to keep a copy of the
imagery I am just viewing the real time video... I am searching for a webcam
that has Linux driver and works fine with ts-7200... and about the
programming; I can't use the shelf software because I have to write my own
application?.
Any additional info can u provide me? And I will be thankful?
**any body has a source code? how to make a small motor connected to the DIO
turned on/ off.
I tried the following code but it didn't work.
#include<unistd.h>
#include<sys/types.h>
#include<sys/mman.h>
#include<sys/time.h>
#include<stdio.h>
#include<fcntl.h>
#include<string.h>
volatile unsigned int *dir, *dat;
int main(int argc, char **argv) {
unsigned char *start;
int fd = open("/dev/mem", O_RDWR);
start = mmap(0, getpagesize(), PROT_READ|PROT_WRITE, MAP_SHARED, fd,
0x80840000);
dat = (unsigned int *)(start + 0x4);
dir = (unsigned int *)(start + 0x14);
*dir = 0xff; //all DIO outputs
*dat =0xff; // all on
}
>From: "paulserverguy" <>
>Reply-To:
>To:
>Subject: [ts-7000] Re: java & ts-7200
>Date: Mon, 19 Sep 2005 19:54:35 -0000
>
>--- In "Omar Rihani" <> wrote:
> > Hi all,
> >
><snip>
>
> > * How I can stream video from a webcam connected to the USB port and
>send/display them in real time on another computer through the
>Ethernet cable. any body can help me on this.
> >
>
>I am working on this very project. How I got started was
>
>http://www.google.com/search?q=Linux+webcam&sourceid=mozilla-search&start=0&start=0&ie=utf-8&oe=utf-8&client=firefox-a&rls=org.mozilla:en-US:official
>
>Google should always be your first step.
>
>Since I am using an NFS mounted Debian boot, I found
>http://www.aboutdebian.com/webcam.htm
>helpful, as was
>http://www.exploits.org/v4l/
>and I am playing with
>http://gspy.sourceforge.net/
>
>Since I don't know your end application, nor your camera type, I can
>only guess as to what you really want. (For example, to you want
>real-time streaming vidio or occasional screen captures? Do you want
>to keep a copy of the imagery or are you just viewing? Do you want
>some kind of motion detection? Do you already have your cameras? Do
>you already have your application selected? THis could go on for some
>time...
>
>You might consider reading
>http://www.catb.org/~esr/faqs/smart-questions.html)
>
>
>The general process is;
>- Select a application that provides the features you want.
>- Select a camera that provides the features you want at the price you
>want and has driver support for the application you want.
>- Install camera & driver.
>- setup application software.
>- setup server.
>- Have beer and enjoy the pretty pictures.
>
>Sorry I can't be more specific, but since I don't know your desired
>end result , I can't be more specific.
>
> > what programming language (c, c++, or java) is better in this..
>
>You won't need to do much in programming, as this could mostly be done
>with off the shelf software.
>
>Good luck.
>
>Paul
>
>
------------------------ Yahoo! Groups Sponsor --------------------~-->
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/CFFolB/TM
--------------------------------------------------------------------~->
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/ts-7000/
<*> To unsubscribe from this group, send an email to:
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|