
<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://armadeus.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=JulienL</id>
		<title>ArmadeusWiki - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://armadeus.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=JulienL"/>
		<link rel="alternate" type="text/html" href="http://armadeus.org/wiki/index.php?title=Special:Contributions/JulienL"/>
		<updated>2026-04-05T16:23:43Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.26.3</generator>

	<entry>
		<id>http://armadeus.org/wiki/index.php?title=GspcaWebcam&amp;diff=7464</id>
		<title>GspcaWebcam</title>
		<link rel="alternate" type="text/html" href="http://armadeus.org/wiki/index.php?title=GspcaWebcam&amp;diff=7464"/>
				<updated>2009-10-10T19:22:54Z</updated>
		
		<summary type="html">&lt;p&gt;JulienL: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Under_Construction}}&lt;br /&gt;
&lt;br /&gt;
On this page, you will find some information to add USB webcam support to your Armadeus board.&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Some USB webcam works on Linux with the GSPCA driver (like the low-cost webcam of LDLC). The source of this driver is now included in the current Linux kernel (starting 2.6.27). Because I don't hold any LCD screen for the moment, the next step is to stream webcam image over the Internet.&lt;br /&gt;
&lt;br /&gt;
== Find your webcam model ==&lt;br /&gt;
&lt;br /&gt;
In order to find your webcam model, you can connect your USB webcam to your computer and use dmesg.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;host&amp;quot;&amp;gt;&lt;br /&gt;
  [  ] $ dmesg&lt;br /&gt;
  ...&lt;br /&gt;
  usb 1-1: New USB device found, idVendor=04fc, idProduct=0561&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
With idVendor and idProduct you might be able to find the module to install. For GSPCA based wecam, a list is given in the Linux kernel documentation and can be found here :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;...&amp;gt;/linux-2.6.xxx/Documentation/video4linux/gspca.txt&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In my case, the support of the spca561 module need to be added.&lt;br /&gt;
&lt;br /&gt;
== Install driver ==&lt;br /&gt;
&lt;br /&gt;
Since GSPCA is incuded in the Linux kernel, you can use the following commands to install it.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;host&amp;quot;&amp;gt;&lt;br /&gt;
  [  ] $ cd armadeus/&lt;br /&gt;
  [  ] $ make linux26-menuconfig&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then you need to choose the right driver. In the case of the LDLC webcam :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;config&amp;quot;&amp;gt;&lt;br /&gt;
Device Drivers  ---&amp;gt;&lt;br /&gt;
    Multimedia devices  ---&amp;gt;&lt;br /&gt;
        [*] Video capture adapters  ---&amp;gt;&lt;br /&gt;
            [*] V4L USB devices  ---&amp;gt;&lt;br /&gt;
                &amp;lt;M&amp;gt; GSPCA based webcams  ---&amp;gt;&lt;br /&gt;
                    &amp;lt;M&amp;gt; SPCA561 USB Camera Drivers&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now you can build the kernel and update the board.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;host&amp;quot;&amp;gt;&lt;br /&gt;
  [  ] $ make&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Load driver == &lt;br /&gt;
&lt;br /&gt;
As you can see, your device is now recognized as a camera.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;apf&amp;quot;&amp;gt;&lt;br /&gt;
  # dmesg&lt;br /&gt;
  ...&lt;br /&gt;
  usb 1-1: new full speed USB device using mxc-ehci and address 3&lt;br /&gt;
  usb 1-1: New USB device found, idVendor=04fc, idProduct=0561&lt;br /&gt;
  usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0&lt;br /&gt;
  usb 1-1: Product: Generic Digital camera&lt;br /&gt;
  usb 1-1: Manufacturer: Sunplus Technology Co., Ltd.&lt;br /&gt;
  usb 1-1: configuration #1 chosen from 1 choice&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can load the kernel module using modprobe :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;apf&amp;quot;&amp;gt;&lt;br /&gt;
  # modprobe gspca_main&lt;br /&gt;
  Linux video capture interface: v2.00&lt;br /&gt;
  gspca: main v2.4.0 registered&lt;br /&gt;
  # modprobe gspca_spca561&lt;br /&gt;
  gspca: probing 04fc:0561&lt;br /&gt;
  gspca: probe ok&lt;br /&gt;
  usbcore: registered new interface driver spca561&lt;br /&gt;
  spca561: registered&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To access your webcam, look at /dev/video0.&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
&lt;br /&gt;
* [http://moinejf.free.fr/gspca_README.txt gspca v2 README]&lt;/div&gt;</summary>
		<author><name>JulienL</name></author>	</entry>

	<entry>
		<id>http://armadeus.org/wiki/index.php?title=Web&amp;diff=7463</id>
		<title>Web</title>
		<link rel="alternate" type="text/html" href="http://armadeus.org/wiki/index.php?title=Web&amp;diff=7463"/>
				<updated>2009-10-10T19:22:04Z</updated>
		
		<summary type="html">&lt;p&gt;JulienL: /* Webcam */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Browser==&lt;br /&gt;
* [[Links]]&lt;br /&gt;
&lt;br /&gt;
==Chat server==&lt;br /&gt;
===Tiny chat server with select() function (no thread) for the armadeus board.===&lt;br /&gt;
* C Programming language&lt;br /&gt;
* Multi-Users&lt;br /&gt;
* Console oriented client in C programming language for Linux, windows ...&lt;br /&gt;
* Graphic oriented client in Java ?&lt;br /&gt;
Project will continue if people are interested.&lt;br /&gt;
&lt;br /&gt;
===For the moment:===&lt;br /&gt;
* Chat server is done, run under armadeus card, windows, linux ...&lt;br /&gt;
* Oriented console client is done... (bug with linux, take a lot of ressources)&lt;br /&gt;
* Has been tested with Visual Studio 2005 and Code::blocks (mingw) under windows and gcc under linux&lt;br /&gt;
&lt;br /&gt;
=== Download ===&lt;br /&gt;
Sources can be found [http://www.surfprotector.org/armadeus/iterativ_chat/ here]&lt;br /&gt;
&lt;br /&gt;
==HTTP Server==&lt;br /&gt;
* [[Boa|Boa (Embedded Webserver)]]&lt;br /&gt;
&lt;br /&gt;
== Webcam ==&lt;br /&gt;
* [[GspcaWebcam|Webcam (GSPCA driver)]]&lt;br /&gt;
&lt;br /&gt;
==Misc==&lt;br /&gt;
* [[Flot|Flot plotting library]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Web]]&lt;/div&gt;</summary>
		<author><name>JulienL</name></author>	</entry>

	<entry>
		<id>http://armadeus.org/wiki/index.php?title=Web&amp;diff=7462</id>
		<title>Web</title>
		<link rel="alternate" type="text/html" href="http://armadeus.org/wiki/index.php?title=Web&amp;diff=7462"/>
				<updated>2009-10-10T18:57:43Z</updated>
		
		<summary type="html">&lt;p&gt;JulienL: /* Webcam */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Browser==&lt;br /&gt;
* [[Links]]&lt;br /&gt;
&lt;br /&gt;
==Chat server==&lt;br /&gt;
===Tiny chat server with select() function (no thread) for the armadeus board.===&lt;br /&gt;
* C Programming language&lt;br /&gt;
* Multi-Users&lt;br /&gt;
* Console oriented client in C programming language for Linux, windows ...&lt;br /&gt;
* Graphic oriented client in Java ?&lt;br /&gt;
Project will continue if people are interested.&lt;br /&gt;
&lt;br /&gt;
===For the moment:===&lt;br /&gt;
* Chat server is done, run under armadeus card, windows, linux ...&lt;br /&gt;
* Oriented console client is done... (bug with linux, take a lot of ressources)&lt;br /&gt;
* Has been tested with Visual Studio 2005 and Code::blocks (mingw) under windows and gcc under linux&lt;br /&gt;
&lt;br /&gt;
=== Download ===&lt;br /&gt;
Sources can be found [http://www.surfprotector.org/armadeus/iterativ_chat/ here]&lt;br /&gt;
&lt;br /&gt;
==HTTP Server==&lt;br /&gt;
* [[Boa|Boa (Embedded Webserver)]]&lt;br /&gt;
&lt;br /&gt;
== Webcam ==&lt;br /&gt;
* [[GspcaWebcam|Webcam (GSCPA driver)]]&lt;br /&gt;
&lt;br /&gt;
==Misc==&lt;br /&gt;
* [[Flot|Flot plotting library]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Web]]&lt;/div&gt;</summary>
		<author><name>JulienL</name></author>	</entry>

	<entry>
		<id>http://armadeus.org/wiki/index.php?title=GspcaWebcam&amp;diff=7460</id>
		<title>GspcaWebcam</title>
		<link rel="alternate" type="text/html" href="http://armadeus.org/wiki/index.php?title=GspcaWebcam&amp;diff=7460"/>
				<updated>2009-10-10T18:57:11Z</updated>
		
		<summary type="html">&lt;p&gt;JulienL: GscpaWebcam moved to GspcaWebcam: Orthographe&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Under_Construction}}&lt;br /&gt;
&lt;br /&gt;
On this page, you will find some information to add USB webcam support to your Armadeus board.&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Some USB webcam works on Linux with the GSPCA driver (like the low-cost webcam of LDLC). The source of this driver is now included in the current Linux kernel (starting 2.6.27). Because I don't hold any LCD screen for the moment, the next step is to stream webcam image over the Internet.&lt;br /&gt;
&lt;br /&gt;
== Find your webcam model ==&lt;br /&gt;
&lt;br /&gt;
In order to find your webcam model, you can connect your USB webcam to your computer and use dmesg.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;host&amp;quot;&amp;gt;&lt;br /&gt;
  [  ] $ dmesg&lt;br /&gt;
  ...&lt;br /&gt;
  usb 1-1: New USB device found, idVendor=04fc, idProduct=0561&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
With idVendor and idProduct you might be able to find the module to install. For GSCPA based wecam, a list is given in the Linux kernel documentation and can be found here :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;...&amp;gt;/linux-2.6.xxx/Documentation/video4linux/gspca.txt&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In my case, the support of the spca561 module need to be added.&lt;br /&gt;
&lt;br /&gt;
== Install driver ==&lt;br /&gt;
&lt;br /&gt;
Since GSPCA is incuded in the Linux kernel, you can use the following commands to install it.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;host&amp;quot;&amp;gt;&lt;br /&gt;
  [  ] $ cd armadeus/&lt;br /&gt;
  [  ] $ make linux26-menuconfig&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then you need to choose the right driver. In the case of the LDLC webcam :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;config&amp;quot;&amp;gt;&lt;br /&gt;
Device Drivers  ---&amp;gt;&lt;br /&gt;
    Multimedia devices  ---&amp;gt;&lt;br /&gt;
        [*] Video capture adapters  ---&amp;gt;&lt;br /&gt;
            [*] V4L USB devices  ---&amp;gt;&lt;br /&gt;
                &amp;lt;M&amp;gt; GSPCA based webcams  ---&amp;gt;&lt;br /&gt;
                    &amp;lt;M&amp;gt; SPCA561 USB Camera Drivers&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now you can build the kernel and update the board.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;host&amp;quot;&amp;gt;&lt;br /&gt;
  [  ] $ make&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Load driver == &lt;br /&gt;
&lt;br /&gt;
As you can see, your device is now recognized as a camera.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;apf&amp;quot;&amp;gt;&lt;br /&gt;
  # dmesg&lt;br /&gt;
  ...&lt;br /&gt;
  usb 1-1: new full speed USB device using mxc-ehci and address 3&lt;br /&gt;
  usb 1-1: New USB device found, idVendor=04fc, idProduct=0561&lt;br /&gt;
  usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0&lt;br /&gt;
  usb 1-1: Product: Generic Digital camera&lt;br /&gt;
  usb 1-1: Manufacturer: Sunplus Technology Co., Ltd.&lt;br /&gt;
  usb 1-1: configuration #1 chosen from 1 choice&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can load the kernel module using modprobe :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;apf&amp;quot;&amp;gt;&lt;br /&gt;
  # modprobe gspca_main&lt;br /&gt;
  Linux video capture interface: v2.00&lt;br /&gt;
  gspca: main v2.4.0 registered&lt;br /&gt;
  # modprobe gspca_spca561&lt;br /&gt;
  gspca: probing 04fc:0561&lt;br /&gt;
  gspca: probe ok&lt;br /&gt;
  usbcore: registered new interface driver spca561&lt;br /&gt;
  spca561: registered&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To access your webcam, look at /dev/video0.&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
&lt;br /&gt;
* [http://moinejf.free.fr/gspca_README.txt gspca v2 README]&lt;/div&gt;</summary>
		<author><name>JulienL</name></author>	</entry>

	<entry>
		<id>http://armadeus.org/wiki/index.php?title=GscpaWebcam&amp;diff=7461</id>
		<title>GscpaWebcam</title>
		<link rel="alternate" type="text/html" href="http://armadeus.org/wiki/index.php?title=GscpaWebcam&amp;diff=7461"/>
				<updated>2009-10-10T18:57:11Z</updated>
		
		<summary type="html">&lt;p&gt;JulienL: GscpaWebcam moved to GspcaWebcam: Orthographe&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[GspcaWebcam]]&lt;/div&gt;</summary>
		<author><name>JulienL</name></author>	</entry>

	<entry>
		<id>http://armadeus.org/wiki/index.php?title=GspcaWebcam&amp;diff=7459</id>
		<title>GspcaWebcam</title>
		<link rel="alternate" type="text/html" href="http://armadeus.org/wiki/index.php?title=GspcaWebcam&amp;diff=7459"/>
				<updated>2009-10-10T18:54:46Z</updated>
		
		<summary type="html">&lt;p&gt;JulienL: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Under_Construction}}&lt;br /&gt;
&lt;br /&gt;
On this page, you will find some information to add USB webcam support to your Armadeus board.&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Some USB webcam works on Linux with the GSPCA driver (like the low-cost webcam of LDLC). The source of this driver is now included in the current Linux kernel (starting 2.6.27). Because I don't hold any LCD screen for the moment, the next step is to stream webcam image over the Internet.&lt;br /&gt;
&lt;br /&gt;
== Find your webcam model ==&lt;br /&gt;
&lt;br /&gt;
In order to find your webcam model, you can connect your USB webcam to your computer and use dmesg.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;host&amp;quot;&amp;gt;&lt;br /&gt;
  [  ] $ dmesg&lt;br /&gt;
  ...&lt;br /&gt;
  usb 1-1: New USB device found, idVendor=04fc, idProduct=0561&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
With idVendor and idProduct you might be able to find the module to install. For GSCPA based wecam, a list is given in the Linux kernel documentation and can be found here :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;...&amp;gt;/linux-2.6.xxx/Documentation/video4linux/gspca.txt&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In my case, the support of the spca561 module need to be added.&lt;br /&gt;
&lt;br /&gt;
== Install driver ==&lt;br /&gt;
&lt;br /&gt;
Since GSPCA is incuded in the Linux kernel, you can use the following commands to install it.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;host&amp;quot;&amp;gt;&lt;br /&gt;
  [  ] $ cd armadeus/&lt;br /&gt;
  [  ] $ make linux26-menuconfig&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then you need to choose the right driver. In the case of the LDLC webcam :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;config&amp;quot;&amp;gt;&lt;br /&gt;
Device Drivers  ---&amp;gt;&lt;br /&gt;
    Multimedia devices  ---&amp;gt;&lt;br /&gt;
        [*] Video capture adapters  ---&amp;gt;&lt;br /&gt;
            [*] V4L USB devices  ---&amp;gt;&lt;br /&gt;
                &amp;lt;M&amp;gt; GSPCA based webcams  ---&amp;gt;&lt;br /&gt;
                    &amp;lt;M&amp;gt; SPCA561 USB Camera Drivers&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now you can build the kernel and update the board.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;host&amp;quot;&amp;gt;&lt;br /&gt;
  [  ] $ make&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Load driver == &lt;br /&gt;
&lt;br /&gt;
As you can see, your device is now recognized as a camera.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;apf&amp;quot;&amp;gt;&lt;br /&gt;
  # dmesg&lt;br /&gt;
  ...&lt;br /&gt;
  usb 1-1: new full speed USB device using mxc-ehci and address 3&lt;br /&gt;
  usb 1-1: New USB device found, idVendor=04fc, idProduct=0561&lt;br /&gt;
  usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0&lt;br /&gt;
  usb 1-1: Product: Generic Digital camera&lt;br /&gt;
  usb 1-1: Manufacturer: Sunplus Technology Co., Ltd.&lt;br /&gt;
  usb 1-1: configuration #1 chosen from 1 choice&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can load the kernel module using modprobe :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;apf&amp;quot;&amp;gt;&lt;br /&gt;
  # modprobe gspca_main&lt;br /&gt;
  Linux video capture interface: v2.00&lt;br /&gt;
  gspca: main v2.4.0 registered&lt;br /&gt;
  # modprobe gspca_spca561&lt;br /&gt;
  gspca: probing 04fc:0561&lt;br /&gt;
  gspca: probe ok&lt;br /&gt;
  usbcore: registered new interface driver spca561&lt;br /&gt;
  spca561: registered&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To access your webcam, look at /dev/video0.&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
&lt;br /&gt;
* [http://moinejf.free.fr/gspca_README.txt gspca v2 README]&lt;/div&gt;</summary>
		<author><name>JulienL</name></author>	</entry>

	<entry>
		<id>http://armadeus.org/wiki/index.php?title=User_talk:JulienL&amp;diff=7458</id>
		<title>User talk:JulienL</title>
		<link rel="alternate" type="text/html" href="http://armadeus.org/wiki/index.php?title=User_talk:JulienL&amp;diff=7458"/>
				<updated>2009-10-10T18:53:47Z</updated>
		
		<summary type="html">&lt;p&gt;JulienL: Removing all content from page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>JulienL</name></author>	</entry>

	<entry>
		<id>http://armadeus.org/wiki/index.php?title=GspcaWebcam&amp;diff=7457</id>
		<title>GspcaWebcam</title>
		<link rel="alternate" type="text/html" href="http://armadeus.org/wiki/index.php?title=GspcaWebcam&amp;diff=7457"/>
				<updated>2009-10-10T18:53:01Z</updated>
		
		<summary type="html">&lt;p&gt;JulienL: Add USB webcam support to your Armadeus board&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Under_Construction}}&lt;br /&gt;
&lt;br /&gt;
On this page, you will find some information to add USB webcam support to your Armadeus board.&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Some USB webcam works on Linux with the GSPCA driver (like the low-cost webcam of LDLC). The source of this driver is now included in the current Linux kernel (starting 2.6.27). Because I don't hold any LCD screen for the moment, the next step is to stream webcam image over the Internet.&lt;br /&gt;
&lt;br /&gt;
== Find your webcam model ==&lt;br /&gt;
&lt;br /&gt;
In order to find your webcam model, you can connect your USB webcam to your computer and use dmesg.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;host&amp;quot;&amp;gt;&lt;br /&gt;
  [  ] $ dmesg&lt;br /&gt;
  ...&lt;br /&gt;
  usb 1-1: New USB device found, idVendor=04fc, idProduct=0561&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
With idVendor and idProduct you might be able to find the module to install. For GSCPA based wecam, a list is given in the Linux kernel documentation and can be found here :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;...&amp;gt;/linux-2.6.xxx/Documentation/video4linux/gspca.txt&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In my case, the support of the spca561 module need to be added.&lt;br /&gt;
&lt;br /&gt;
== Install driver ==&lt;br /&gt;
&lt;br /&gt;
Since GSPCA is incuded in the Linux kernel, you can use the following commands to install it.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;host&amp;quot;&amp;gt;&lt;br /&gt;
  [  ] $ cd armadeus/&lt;br /&gt;
  [  ] $ make linux26-menuconfig&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then you need to choose the right driver. In the case of the LDLC webcam :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;config&amp;quot;&amp;gt;&lt;br /&gt;
Device Drivers  ---&amp;gt;&lt;br /&gt;
    Multimedia devices  ---&amp;gt;&lt;br /&gt;
        [*] Video capture adapters  ---&amp;gt;&lt;br /&gt;
            [*] V4L USB devices  ---&amp;gt;&lt;br /&gt;
                &amp;lt;M&amp;gt; GSPCA based webcams  ---&amp;gt;&lt;br /&gt;
                    &amp;lt;M&amp;gt; SPCA561 USB Camera Drivers&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now you can build the kernel and update the board.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;host&amp;quot;&amp;gt;&lt;br /&gt;
  [  ] $ make&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Loading driver == &lt;br /&gt;
&lt;br /&gt;
As you can see, your device is now recognized as a camera.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;apf&amp;quot;&amp;gt;&lt;br /&gt;
  # dmesg&lt;br /&gt;
  ...&lt;br /&gt;
  usb 1-1: new full speed USB device using mxc-ehci and address 3&lt;br /&gt;
  usb 1-1: New USB device found, idVendor=04fc, idProduct=0561&lt;br /&gt;
  usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0&lt;br /&gt;
  usb 1-1: Product: Generic Digital camera&lt;br /&gt;
  usb 1-1: Manufacturer: Sunplus Technology Co., Ltd.&lt;br /&gt;
  usb 1-1: configuration #1 chosen from 1 choice&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can load the kernel module using modprobe :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;apf&amp;quot;&amp;gt;&lt;br /&gt;
  # modprobe gspca_main&lt;br /&gt;
  Linux video capture interface: v2.00&lt;br /&gt;
  gspca: main v2.4.0 registered&lt;br /&gt;
  # modprobe gspca_spca561&lt;br /&gt;
  gspca: probing 04fc:0561&lt;br /&gt;
  gspca: probe ok&lt;br /&gt;
  usbcore: registered new interface driver spca561&lt;br /&gt;
  spca561: registered&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To access your webcam, look at /dev/video0.&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
&lt;br /&gt;
* [http://moinejf.free.fr/gspca_README.txt gspca v2 README]&lt;/div&gt;</summary>
		<author><name>JulienL</name></author>	</entry>

	<entry>
		<id>http://armadeus.org/wiki/index.php?title=Web&amp;diff=7456</id>
		<title>Web</title>
		<link rel="alternate" type="text/html" href="http://armadeus.org/wiki/index.php?title=Web&amp;diff=7456"/>
				<updated>2009-10-10T18:52:12Z</updated>
		
		<summary type="html">&lt;p&gt;JulienL: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Browser==&lt;br /&gt;
* [[Links]]&lt;br /&gt;
&lt;br /&gt;
==Chat server==&lt;br /&gt;
===Tiny chat server with select() function (no thread) for the armadeus board.===&lt;br /&gt;
* C Programming language&lt;br /&gt;
* Multi-Users&lt;br /&gt;
* Console oriented client in C programming language for Linux, windows ...&lt;br /&gt;
* Graphic oriented client in Java ?&lt;br /&gt;
Project will continue if people are interested.&lt;br /&gt;
&lt;br /&gt;
===For the moment:===&lt;br /&gt;
* Chat server is done, run under armadeus card, windows, linux ...&lt;br /&gt;
* Oriented console client is done... (bug with linux, take a lot of ressources)&lt;br /&gt;
* Has been tested with Visual Studio 2005 and Code::blocks (mingw) under windows and gcc under linux&lt;br /&gt;
&lt;br /&gt;
=== Download ===&lt;br /&gt;
Sources can be found [http://www.surfprotector.org/armadeus/iterativ_chat/ here]&lt;br /&gt;
&lt;br /&gt;
==HTTP Server==&lt;br /&gt;
* [[Boa|Boa (Embedded Webserver)]]&lt;br /&gt;
&lt;br /&gt;
== Webcam ==&lt;br /&gt;
* [[GscpaWebcam|Webcam (GSCPA driver)]]&lt;br /&gt;
&lt;br /&gt;
==Misc==&lt;br /&gt;
* [[Flot|Flot plotting library]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Web]]&lt;/div&gt;</summary>
		<author><name>JulienL</name></author>	</entry>

	<entry>
		<id>http://armadeus.org/wiki/index.php?title=User_talk:JulienL&amp;diff=7455</id>
		<title>User talk:JulienL</title>
		<link rel="alternate" type="text/html" href="http://armadeus.org/wiki/index.php?title=User_talk:JulienL&amp;diff=7455"/>
				<updated>2009-10-10T18:47:48Z</updated>
		
		<summary type="html">&lt;p&gt;JulienL: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Under_Construction}}&lt;br /&gt;
&lt;br /&gt;
On this page, you will find some information to add USB webcam support to your Armadeus board.&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Some USB webcam works on Linux with the GSPCA driver (like the low-cost webcam of LDLC). The source of this driver is now included in the current Linux kernel (starting 2.6.27). Because I don't hold any LCD screen for the moment, the next step is to stream webcam image over the Internet.&lt;br /&gt;
&lt;br /&gt;
== Find your webcam model ==&lt;br /&gt;
&lt;br /&gt;
In order to find your webcam model, you can connect your USB webcam to your computer and use dmesg.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;host&amp;quot;&amp;gt;&lt;br /&gt;
  [  ] $ dmesg&lt;br /&gt;
  ...&lt;br /&gt;
  usb 1-1: New USB device found, idVendor=04fc, idProduct=0561&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
With idVendor and idProduct you might be able to find the module to install. For GSCPA based wecam, a list is given in the Linux kernel documentation and can be found here :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;...&amp;gt;/linux-2.6.xxx/Documentation/video4linux/gspca.txt&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In my case, the support of the spca561 module need to be added.&lt;br /&gt;
&lt;br /&gt;
== Install driver ==&lt;br /&gt;
&lt;br /&gt;
Since GSPCA is incuded in the Linux kernel, you can use the following commands to install it.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;host&amp;quot;&amp;gt;&lt;br /&gt;
  [  ] $ cd armadeus/&lt;br /&gt;
  [  ] $ make linux26-menuconfig&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then you need to choose the right driver. In the case of the LDLC webcam :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;config&amp;quot;&amp;gt;&lt;br /&gt;
Device Drivers  ---&amp;gt;&lt;br /&gt;
    Multimedia devices  ---&amp;gt;&lt;br /&gt;
        [*] Video capture adapters  ---&amp;gt;&lt;br /&gt;
            [*] V4L USB devices  ---&amp;gt;&lt;br /&gt;
                &amp;lt;M&amp;gt; GSPCA based webcams  ---&amp;gt;&lt;br /&gt;
                    &amp;lt;M&amp;gt; SPCA561 USB Camera Drivers&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now you can build the kernel and update the board.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;host&amp;quot;&amp;gt;&lt;br /&gt;
  [  ] $ make&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Loading driver == &lt;br /&gt;
&lt;br /&gt;
As you can see, your device is now recognized as a camera.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;apf&amp;quot;&amp;gt;&lt;br /&gt;
  # dmesg&lt;br /&gt;
  ...&lt;br /&gt;
  usb 1-1: new full speed USB device using mxc-ehci and address 3&lt;br /&gt;
  usb 1-1: New USB device found, idVendor=04fc, idProduct=0561&lt;br /&gt;
  usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0&lt;br /&gt;
  usb 1-1: Product: Generic Digital camera&lt;br /&gt;
  usb 1-1: Manufacturer: Sunplus Technology Co., Ltd.&lt;br /&gt;
  usb 1-1: configuration #1 chosen from 1 choice&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can load the kernel module using modprobe :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;apf&amp;quot;&amp;gt;&lt;br /&gt;
  # modprobe gspca_main&lt;br /&gt;
  Linux video capture interface: v2.00&lt;br /&gt;
  gspca: main v2.4.0 registered&lt;br /&gt;
  # modprobe gspca_spca561&lt;br /&gt;
  gspca: probing 04fc:0561&lt;br /&gt;
  gspca: probe ok&lt;br /&gt;
  usbcore: registered new interface driver spca561&lt;br /&gt;
  spca561: registered&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To access your webcam, look at /dev/video0.&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
&lt;br /&gt;
* [http://moinejf.free.fr/gspca_README.txt gspca v2 README]&lt;/div&gt;</summary>
		<author><name>JulienL</name></author>	</entry>

	<entry>
		<id>http://armadeus.org/wiki/index.php?title=User_talk:JulienL&amp;diff=7454</id>
		<title>User talk:JulienL</title>
		<link rel="alternate" type="text/html" href="http://armadeus.org/wiki/index.php?title=User_talk:JulienL&amp;diff=7454"/>
				<updated>2009-10-10T18:30:16Z</updated>
		
		<summary type="html">&lt;p&gt;JulienL: New page: {{Under_Construction}}  On this page, you will find some information to add USB webcam support to your Armadeus board.  == Introduction == I bought a low-cost webcam on LDLC some years ago...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Under_Construction}}&lt;br /&gt;
&lt;br /&gt;
On this page, you will find some information to add USB webcam support to your Armadeus board.&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
I bought a low-cost webcam on LDLC some years ago. This USB webcam works on Linux with the GSPCA driver. The source of this driver is now included in the current Linux kernel (starting 2.6.27). Because I don't hold any LCD screen for the moment, the next step is to stream webcam image on the Internet.&lt;br /&gt;
&lt;br /&gt;
== Find your webcam model ==&lt;br /&gt;
&lt;br /&gt;
In order to find your webcam model, you can connect your USB webcam to your computer and use dmesg.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;host&amp;quot;&amp;gt;&lt;br /&gt;
  [  ] $ dmesg&lt;br /&gt;
  ...&lt;br /&gt;
  usb 1-1: New USB device found, idVendor=04fc, idProduct=0561&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
With idVendor and idProduct you might be able to find the module to install. For GSCPA based wecam, a list is given in the Linux kernel documentation and can be found here :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;...&amp;gt;/linux-2.6.xxx/Documentation/video4linux/gspca.txt&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In my case, the support of the spca561 module need to be added.&lt;br /&gt;
&lt;br /&gt;
== Install driver ==&lt;br /&gt;
&lt;br /&gt;
Since GSPCA is incuded in the Linux kernel, you can use the following commands to install it.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;host&amp;quot;&amp;gt;&lt;br /&gt;
  [  ] $ cd armadeus/&lt;br /&gt;
  [  ] $ make linux26-menuconfig&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then you need to choose the right driver. In the case of the LDLC webcam :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;config&amp;quot;&amp;gt;&lt;br /&gt;
Device Drivers  ---&amp;gt;&lt;br /&gt;
    Multimedia devices  ---&amp;gt;&lt;br /&gt;
        [*] Video capture adapters  ---&amp;gt;&lt;br /&gt;
            [*] V4L USB devices  ---&amp;gt;&lt;br /&gt;
                &amp;lt;M&amp;gt; GSPCA based webcams  ---&amp;gt;&lt;br /&gt;
                    &amp;lt;M&amp;gt; SPCA561 USB Camera Drivers&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now you can build the kernel and update the board.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;host&amp;quot;&amp;gt;&lt;br /&gt;
  [  ] $ make&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Loading driver == &lt;br /&gt;
&lt;br /&gt;
As you can see, your device is now recognized as a camera.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;apf&amp;quot;&amp;gt;&lt;br /&gt;
  # dmesg&lt;br /&gt;
  ...&lt;br /&gt;
  usb 1-1: new full speed USB device using mxc-ehci and address 3&lt;br /&gt;
  usb 1-1: New USB device found, idVendor=04fc, idProduct=0561&lt;br /&gt;
  usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0&lt;br /&gt;
  usb 1-1: Product: Generic Digital camera&lt;br /&gt;
  usb 1-1: Manufacturer: Sunplus Technology Co., Ltd.&lt;br /&gt;
  usb 1-1: configuration #1 chosen from 1 choice&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can load the kernel module using modprobe :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;apf&amp;quot;&amp;gt;&lt;br /&gt;
  # modprobe gspca_main&lt;br /&gt;
  Linux video capture interface: v2.00&lt;br /&gt;
  gspca: main v2.4.0 registered&lt;br /&gt;
  # modprobe gspca_spca561&lt;br /&gt;
  gspca: probing 04fc:0561&lt;br /&gt;
  gspca: probe ok&lt;br /&gt;
  usbcore: registered new interface driver spca561&lt;br /&gt;
  spca561: registered&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To access your webcam, look at /dev/video0.&lt;/div&gt;</summary>
		<author><name>JulienL</name></author>	</entry>

	<entry>
		<id>http://armadeus.org/wiki/index.php?title=MemberList&amp;diff=6546</id>
		<title>MemberList</title>
		<link rel="alternate" type="text/html" href="http://armadeus.org/wiki/index.php?title=MemberList&amp;diff=6546"/>
				<updated>2009-05-19T19:51:36Z</updated>
		
		<summary type="html">&lt;p&gt;JulienL: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Here is the list of the (active) members and their skills==&lt;br /&gt;
&lt;br /&gt;
This list is maintained by the users themself.&lt;br /&gt;
&lt;br /&gt;
*0: Novice&lt;br /&gt;
*1: Notions. At least one successfull experiment&lt;br /&gt;
*2: Confirmed&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; summary=&amp;quot;Signal connections&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background:#efefef;&amp;quot;&lt;br /&gt;
! '''Name / IRC Nickname''' || '''Linux Apps'''|| '''Linux Drivers'''|| '''FPGA''' || '''Board Design''' || '''Projet/Domain'''&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:Salocin68|Nicolas Colombain / Salocin]] || 1 || 1 || 1 || 2 || domotics&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:JulienB|Julien Boibessot / Artemys]] || 2 || 2 || 0 || 1 || multimedia&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:JeanBaptisteM|Jean-Baptiste Mayer / JiBee]] || 2 || 1 || 1 || 1 || robotics&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:NicolasA|Nicolas Aguirre]] || 2 || 0 || 1 || 1 || multimedia&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:BenoitC|Benoît Canet]] || 2 || 0 || 0 || 0 || multimedia&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:SonZerro|Sonzerro]] || 0 || 0 || 1 || 2 || domotics&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:HenriG|Henri Geist]] || 1 || 1 || 0 || 1 || robotics&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:BorredonB|Bernard Borredon]] || 2 || 1 || 0 || 1 || domotics&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:ThomasB|Thomas Bores]] || 2 || 0 || 0 || 1 || Entertainment&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:FabriceM|Fabrice Mousset / KroMignon]] || 1 || 1 || 2 || 1 || Domotics &amp;amp; multimedia&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:AmineH|Amine EL HEDADI]] || 2 || 2 || 0 || 0 || domotics &amp;amp; robotics&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:PhilippeM|Philippe Monteil]] || 2 || 0 || 0 || 0 || multimedia&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:CedricZ|Cédric Zmyj]] || 0 || 0 || 0 || 0 || domotics &amp;amp; robotics&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:JeanMichelN|Jean Michel Naimo / jeanmi12 ]] || 2 || 1 || 1 || 1 || Domotics &amp;amp; entertainment&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:OlivierC|Olivier Coutanceau]] || 1 || 0 || 0 || 0 || multimedia&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:ArnaudC|Arnaud COFFINET]] || 0 || 0 || 1 || 2 || multimedia &amp;amp; domotics&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:SylvainP|Sylvain PARRINO]] || 2 || 1 || 0 || 0 || robotics&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:AurelienH|Aurélien HIRON]] || 2 || 0 || 0 || 1 || robotics&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:GuillaumeT|Guillaume TRANNOY]] || 0 || 0 || 0 || 2 || domotics &amp;amp; robotics&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:JulienN|Julien NICOLAS / jujun]] || 2 || 1 || 0 || 1 || multimedia &amp;amp; network&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:StephaneF|Stéphane Falck]] || 0 || 0 || 0 || 0 || multimedia &amp;amp; robotics &amp;amp; domotics&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:GillesD|Gilles DUSSIN/ Sellig]] || 1 || 0 || 1 || 1 || robotics&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:MaximeL|Maxime Liron]] || 0 || 0 || 0 || 0 || domotics, robotics &amp;amp; multimedia&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:NicolasC|Nicolas CHARLERY/ realniko]] || 2 || 0 || 0 || 0 || electronic&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:BenoitJ|Benoit JESTER]] || 0 || 0 || 0 || 0 || robotics &lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:FabienM|Fabien MARTEAU/ FabM]] || 1 || 2 || 1 || 1 || robotics,domotics &lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:XavierA|Xavier AZNAR]] || 1 || 1 || 0 || 0 || environment, entertainment, domotic &lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:AlbericA|Albéric AUBLANC / PoueT]] || 2 || 0 || 1 || 0 || domotics &amp;amp; multimedia, robotics, entertainment, &lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:FredericB| Frédéric Blain / creber]] || 2 || 1 || 0 || 0 || system, domotics&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:JeanBaptisteMa| Jean-Baptiste Maillet]] || 2 || 1 || 0 || 0 || system&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:JeanFrancoisR| Jean-François Rousval]] || 2 || 1 || 0 || 1 || &lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:JulienPeeters| Julien Peeters]] || 2 || 1 || 0 || 0 || domotics, real-time, entertainment, network&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:YoannC| Yoann Congal / Alpheb]] || 0 || 0 || 0 || 1 || robotics&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:MatthieuT| Matthieu Texier / weeber]] || 1 || 0 || 1 || 0 || robotics, real-time&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:MartialG| Martial Guex]] || 2 || 1 || 1 || 2 || transceiver RF, real-time, wireless&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:NicolasL| Nicolas Lantz]] || 2 || 2 || 1 || 1 ||&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:GuillaumeD| Guillaume DELVIT]] || 1 || 1 || 1 || 1 || system, asynchronous CPU&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:BernardR|Bernard REMOND ]] || x || x || x || x || &lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:SamirH| Samir HAMNACHE]] || 0 || 0 || 0 || 1 || électronique&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:OlivierT|Olivier TARDIEU]] || 0 || 0 || 0 || 1 || électronique,robotics,domotics &lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:ThibautR|Thibault Rétornaz]] || 1 || 1 || 1 || 0 || bio-med, électronique&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:BrunoS|Bruno Suarez]] || 2 || 0 || 0 || 0 || bio-med, électronique&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:guillaumeDe|Guillaume Denis]] || 0 || 0 || 2 || 1 || Electronique numérique, FPGA&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:KevinP|Kévin PETIT]] || 1 || 0 || 1 || 1 || Multimedia&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:PierreBa|Pierre Baudemont / b4ud3]] || 2 || 0 || 1 || 0 || domotics, robotics&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:BrunoL|Bruno Landré]] || 0 || 0 || 0 || 0 || robotics&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:AntonioMB|Antonio Meléndez]] || 0 || 0 || 1 || 2 || domotics, robotics, eletcronics&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:MichelTe|Michel Le Mer]] || 0 || 0 || 2 || 2 || electronics, software&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:JulienBa|Julien Baley]] || 0 || 0 || 0 || 0 || &lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:FrankA|Frank ANJEAUX]] || 1 || 0 || 0 || 1 || software,robotics, domotics, electronics&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:JulienViaud|Julien viaud/polric]] || 2 || 0 || 1 || 1 || &lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:NicolasCa|Nicolas CARTIER]] || 1 || 1 || 0 || 2 || domotics &amp;amp; robotics&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:PierreAlexandreS|Pierre Alexandre SCHEMBRI]] || 2 || 1 || 2 || 2 || electronics, board design, embedded software, FPGA, robotics, low power&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:AlexG|Alex GONZALEZ]] || 2 || 2 || 0 || 1 || telecommunications, network &amp;amp; multimedia&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:JulienL|Julien Lefrique / apapi]] || 1 || 0 || 1 || 1 ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Links==&lt;br /&gt;
* [[Members | Geographical position of the members]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Association]]&lt;/div&gt;</summary>
		<author><name>JulienL</name></author>	</entry>

	<entry>
		<id>http://armadeus.org/wiki/index.php?title=User:JulienL&amp;diff=6545</id>
		<title>User:JulienL</title>
		<link rel="alternate" type="text/html" href="http://armadeus.org/wiki/index.php?title=User:JulienL&amp;diff=6545"/>
				<updated>2009-05-19T19:21:05Z</updated>
		
		<summary type="html">&lt;p&gt;JulienL: New page: == Présentation ==  Julien Lefrique, 23 ans, étudiant en génie Electrique et Systèmes de Commandes, filière Electronique et Systèmes Embarqués à l'[http://www.utbm.fr UTBM].  Je su...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Présentation ==&lt;br /&gt;
&lt;br /&gt;
Julien Lefrique, 23 ans, étudiant en génie Electrique et Systèmes de Commandes, filière Electronique et Systèmes Embarqués à l'[http://www.utbm.fr UTBM].&lt;br /&gt;
&lt;br /&gt;
Je suis actuellement en projet de fin d'étude dans une entreprise basé en Savoie, et spécialisé dans le développement (hardware et software) d'électronique pour véhicules spéciaux. Je travaille sur une nouvelle gamme de terminaux graphiques articulés autour du microcontrôleur Infineon XE167.&lt;br /&gt;
&lt;br /&gt;
Comme beaucoup ici, je suis passionné par les systèmes embarqués et j'aime être à la limite entre le matériel et le logiciel.&lt;/div&gt;</summary>
		<author><name>JulienL</name></author>	</entry>

	</feed>