<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Domotic Archives - Tom Barbette</title>
	<atom:link href="https://perso.uclouvain.be/tom.barbette/category/passions/domotic/feed/" rel="self" type="application/rss+xml" />
	<link>https://perso.uclouvain.be/tom.barbette/category/passions/domotic/</link>
	<description></description>
	<lastBuildDate>Tue, 07 Feb 2017 11:09:25 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://perso.uclouvain.be/tom.barbette/wp-content/uploads/2022/04/cropped-logo-uclouvain-2021-barbette-32x32.png</url>
	<title>Domotic Archives - Tom Barbette</title>
	<link>https://perso.uclouvain.be/tom.barbette/category/passions/domotic/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Home-Assistant : live camera feed and motion detection with a USB camera using motion</title>
		<link>https://perso.uclouvain.be/tom.barbette/home-assistant-live-camera-feed-and-motion-detection-with-a-usb-camera-using-motion/</link>
		
		<dc:creator><![CDATA[Tom Barbette]]></dc:creator>
		<pubDate>Fri, 30 Dec 2016 10:50:08 +0000</pubDate>
				<category><![CDATA[Domotic]]></category>
		<category><![CDATA[camera]]></category>
		<category><![CDATA[detection]]></category>
		<category><![CDATA[motion]]></category>
		<category><![CDATA[pi]]></category>
		<category><![CDATA[raspberry]]></category>
		<category><![CDATA[raspberry-pi]]></category>
		<guid isPermaLink="false">http://queen.run.montefiore.ulg.ac.be/~barbette/?p=642</guid>

					<description><![CDATA[<p>I want to display my webcam feed on home assistant. That&#8217;s easy and well explained on home assistant&#8217;s website. However they do not tell how to implement a motion detection system at the same time. First step : set up the camera live feed as explained in the docs In your configuration.yaml [code]camera: &#8211; platform: &#8230; </p>
<p class="link-more"><a href="https://perso.uclouvain.be/tom.barbette/home-assistant-live-camera-feed-and-motion-detection-with-a-usb-camera-using-motion/" class="more-link">Continue reading<span class="screen-reader-text"> "Home-Assistant : live camera feed and motion detection with a USB camera using motion"</span></a></p>
<p>The post <a href="https://perso.uclouvain.be/tom.barbette/home-assistant-live-camera-feed-and-motion-detection-with-a-usb-camera-using-motion/">Home-Assistant : live camera feed and motion detection with a USB camera using motion</a> appeared first on <a href="https://perso.uclouvain.be/tom.barbette">Tom Barbette</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>I want to display my webcam feed on home assistant. That&#8217;s easy and well explained on home assistant&#8217;s website. However they do not tell how to implement a motion detection system at the same time.</p>
<p>First step : set up the camera live feed as explained in the docs</p>
<p>In your configuration.yaml</p>
<p>[code]camera:<br />
  &#8211; platform: mjpeg<br />
    mjpeg_url: http://localhost:8081<br />
    name: Salon[/code]</p>
<p>Install motion :</p>
<p>[code]sudo apt-get install motion[/code]</p>
<p>Configure /etc/motion/motion.conf (change these values <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<p>[code]daemon on<br />
stream_port 8081<br />
stream_quality 80<br />
stream_maxrate 12<br />
stream_localhost on[/code]</p>
<p>And then restart motion :</p>
<p>[code]sudo service motion restart[/code]</p>
<p>And home assistant, then the webcam should appear ! Yeah !</p>
<p>Now the motion detection. The method I took is to use the mqtt protocol. A binary sensor will be the state of motion detection, motion will publish updates to the given topic to say if motion is on or off, and home assistant will subscribe to it.</p>
<p>Add this in your HA configuration.yaml</p>
<p>[code]mqtt: #I pass the mqtt setup process<br />
broker: 127.0.0.1<br />
port: 1883<br />
client_id: home-assistant<br />
keepalive: 60<br />
protocol: 3.1</p>
<p>binary_sensor:<br />
&#8211; platform: mqtt<br />
state_topic: &#8220;living_room/cam1&#8221;<br />
name: cam1<br />
sensor_class: motion[/code]</p>
<p>Install mosquitto-clients :</p>
<p>[code]sudo apt-get install mosquitto-clients[/code]</p>
<p>The commande to start a motion event is :</p>
<p>[code]mosquitto_pub -r -i motion-cam1 -t &#8220;living_room/cam1&#8221; -m &#8220;ON&#8221; [/code]</p>
<p>-r sets the retain flag<br />
-i is just a client id<br />
-t is the topic, which should match the configuration in mqtt<br />
-m Sets the message content, ON for motion being detected, OFF for a still image.</p>
<p>Then we have to update motion.conf accordingly:</p>
<p>[code]on_event_start mosquitto_pub -r -i motion-cam1 -t &#8220;living_room/cam1&#8221; -m &#8220;ON&#8221;<br />
on_event_end mosquitto_pub -r -i motion-cam1 -t &#8220;living_room/cam1&#8221; -m &#8220;OFF&#8221;[/code]</p>
<p>And restart motion ! And it&#8217;s finished !</p>
<p>The post <a href="https://perso.uclouvain.be/tom.barbette/home-assistant-live-camera-feed-and-motion-detection-with-a-usb-camera-using-motion/">Home-Assistant : live camera feed and motion detection with a USB camera using motion</a> appeared first on <a href="https://perso.uclouvain.be/tom.barbette">Tom Barbette</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>PIC Domotic station</title>
		<link>https://perso.uclouvain.be/tom.barbette/pic-domotic-station/</link>
		
		<dc:creator><![CDATA[Tom Barbette]]></dc:creator>
		<pubDate>Fri, 26 Dec 2014 18:14:02 +0000</pubDate>
				<category><![CDATA[Domotic]]></category>
		<category><![CDATA[Electronic]]></category>
		<guid isPermaLink="false">http://queen.run.montefiore.ulg.ac.be/~barbette/?p=377</guid>

					<description><![CDATA[<p>I use this Microchip&#8217;s PIC program made in C to control my domotic system for quite some time now, and I think it&#8217;s ready to be published. Below is the readme file, to read the last version, directly go to : https://github.com/tbarbette/picdomotic PIC Domotic station &#160; PIC program for a domotic station controlling two temperature &#8230; </p>
<p class="link-more"><a href="https://perso.uclouvain.be/tom.barbette/pic-domotic-station/" class="more-link">Continue reading<span class="screen-reader-text"> "PIC Domotic station"</span></a></p>
<p>The post <a href="https://perso.uclouvain.be/tom.barbette/pic-domotic-station/">PIC Domotic station</a> appeared first on <a href="https://perso.uclouvain.be/tom.barbette">Tom Barbette</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>I use this Microchip&#8217;s PIC program made in C to control my domotic system for quite some time now, and I think it&#8217;s ready to be published.</p>
<p>Below is the readme file, to read the last version, directly go to :</p>
<p>https://github.com/tbarbette/picdomotic</p>
<h1>PIC Domotic station</h1>
<p>&nbsp;</p>
<p>PIC program for a domotic station controlling two temperature sensors, multiple relay, a USB port (for power only) and connected to a PC using UART to receive its instructions.</p>
<p>It uses a PIC18F23K20 but should work on most of them. The PC sends simple commandes through /dev/ttyUSB0 like &#8220;A 32&#8221; to enable the device 32, or &#8220;E 32&#8221; to disable it. &#8220;T&#8221; to get temperature, &#8230; See the source code in main.c.</p>
<p>This is MPLAB X IDE project. The only usefull file is in fact main.c, the rest is auto-generated, but I include them if someone would want to directly program the binaries, for example.</p>
<h1><a id="user-content-technology-used" class="anchor" href="https://github.com/MappaM/picdomotic#technology-used"></a>Technology used</h1>
<p>If you&#8217;re looking for sample code, you may find here how to :</p>
<ul class="task-list">
<li>Use the UART to communicate with a PC (UART is connected to a &#8220;uart usb&#8221; module very cheaped that you can find on ebay for example) .</li>
<li>Use the watchdog timer to ensure a device reset if something goes wrong</li>
<li>Use Brown-out to jump to do an interrupt and do &#8220;something&#8221; (blink in my case) if the voltage goes below some threshold</li>
<li>Use the ADC to read the temperature given by two LM35</li>
<li>Read/write to eeprom</li>
<li>Control a 5V relay board with a 3.3V relay board using NPN Transistors (when I&#8217;ll add the schematic though)</li>
</ul>
<p>The python script used to manage the PIC controller is available at<a href="https://github.com/tbarbette/monitoring/blob/master/scripts/relay.py">https://github.com/tbarbette/monitoring/blob/master/scripts/relay.py</a> and a small HTTP server allowing you to remotely control it is available at<a href="https://github.com/tbarbette/monitoring/blob/master/scripts/server.py">https://github.com/tbarbette/monitoring/blob/master/scripts/server.py</a></p>
<p>The post <a href="https://perso.uclouvain.be/tom.barbette/pic-domotic-station/">PIC Domotic station</a> appeared first on <a href="https://perso.uclouvain.be/tom.barbette">Tom Barbette</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Enable Wifi N access point with hostapd</title>
		<link>https://perso.uclouvain.be/tom.barbette/enable-wifi-n-access-point-with-hostapd/</link>
		
		<dc:creator><![CDATA[Tom Barbette]]></dc:creator>
		<pubDate>Mon, 15 Dec 2014 16:52:59 +0000</pubDate>
				<category><![CDATA[Domotic]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[Server management]]></category>
		<category><![CDATA[Unix]]></category>
		<guid isPermaLink="false">http://queen.run.montefiore.ulg.ac.be/~barbette/?p=372</guid>

					<description><![CDATA[<p>I use an odroid (a rasberry-pi like mini-pc but more powerfull) as a Wifi access point for my smartphone and my camera since quite a long time. I forgot that my USB Wifi dongle was compatible with Wifi N (only on 2.4Ghz), so my hostapd config file was : [code]interface=wlan3 ssid=Barbette-Chambre hw_mode=g channel=11 bridge=br0 wpa=2 &#8230; </p>
<p class="link-more"><a href="https://perso.uclouvain.be/tom.barbette/enable-wifi-n-access-point-with-hostapd/" class="more-link">Continue reading<span class="screen-reader-text"> "Enable Wifi N access point with hostapd"</span></a></p>
<p>The post <a href="https://perso.uclouvain.be/tom.barbette/enable-wifi-n-access-point-with-hostapd/">Enable Wifi N access point with hostapd</a> appeared first on <a href="https://perso.uclouvain.be/tom.barbette">Tom Barbette</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>I use an odroid (a rasberry-pi like mini-pc but more powerfull) as a Wifi access point for my smartphone and my camera since quite a long time. I forgot that my USB Wifi dongle was compatible with Wifi N (only on 2.4Ghz), so my hostapd config file was :</p>
<p>[code]interface=wlan3<br />
ssid=Barbette-Chambre<br />
hw_mode=g<br />
channel=11<br />
bridge=br0<br />
wpa=2<br />
wpa_passphrase=YOURPASSPHRASE<br />
wpa_key_mgmt=WPA-PSK<br />
wpa_pairwise=CCMP<br />
rsn_pairwise=CCMP<br />
wpa_ptk_rekey=600[/code]</p>
<p>Here is the speed result with <strong>iperf</strong> :</p>
<p>[ 4] local 10.0.0.44 port 5001 connected with 10.0.0.175 port 48727<br />
[ ID] Interval Transfer Bandwidth<br />
[ 4] 0.0-10.2 sec 18.4 MBytes 15.1 Mbits/sec</p>
<p>Normaly, this should be 56Mbits/s, but we know wifi is crap&#8230;</p>
<p>And to enable Wifi N :</p>
<p>[code]</p>
<p>interface=wlan3<br />
ssid=Barbette-Chambre<br />
hw_mode=g   #Yes, this is not an error. Wifi N builds on top of G <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /><br />
channel=11<br />
bridge=br0<br />
ieee80211n=1<br />
wmm_enabled=1<br />
country_code=BE<br />
ht_capab=[HT20][HT40][SHORT-GI-20][SHORT-GI-40]<br />
ieee80211d=1<br />
wpa=2<br />
wpa_passphrase=YOURPASSPHRASE<br />
wpa_key_mgmt=WPA-PSK<br />
wpa_pairwise=CCMP<br />
rsn_pairwise=CCMP<br />
wpa_ptk_rekey=600[/code]</p>
<p>&nbsp;</p>
<p>And the speed result is now :</p>
<p>[ 4] local 10.0.0.44 port 5001 connected with 10.0.0.175 port 48754<br />
[ 4] 0.0-10.1 sec 30.6 MBytes 25.4 Mbits/sec</p>
<p>Better, but still not the 150Mbits/s of wifi N&#8230; But it&#8217;s better !</p>
<p>The post <a href="https://perso.uclouvain.be/tom.barbette/enable-wifi-n-access-point-with-hostapd/">Enable Wifi N access point with hostapd</a> appeared first on <a href="https://perso.uclouvain.be/tom.barbette">Tom Barbette</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Limit rate of mail sent by motion detection daemon (motiond) for webcam surveillance</title>
		<link>https://perso.uclouvain.be/tom.barbette/limit-rate-of-mail-sent-by-motion-detection-daemon-motiond-for-webcam-surveillance/</link>
		
		<dc:creator><![CDATA[Tom Barbette]]></dc:creator>
		<pubDate>Wed, 29 Oct 2014 14:40:33 +0000</pubDate>
				<category><![CDATA[Domotic]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Unix]]></category>
		<guid isPermaLink="false">http://queen.run.montefiore.ulg.ac.be/~barbette/?p=360</guid>

					<description><![CDATA[<p>Maybe you use the &#8220;on_picture_save&#8221; to send yourself an e-mail with motiond when your webcam detect an  intruder. But when someone enters, you&#8217;ll receive a lot of pictures. And if it was just you forgetting to stop the detection before entering, your smartphone will become a christmas tree for nothing&#8230; I just published my last &#8230; </p>
<p class="link-more"><a href="https://perso.uclouvain.be/tom.barbette/limit-rate-of-mail-sent-by-motion-detection-daemon-motiond-for-webcam-surveillance/" class="more-link">Continue reading<span class="screen-reader-text"> "Limit rate of mail sent by motion detection daemon (motiond) for webcam surveillance"</span></a></p>
<p>The post <a href="https://perso.uclouvain.be/tom.barbette/limit-rate-of-mail-sent-by-motion-detection-daemon-motiond-for-webcam-surveillance/">Limit rate of mail sent by motion detection daemon (motiond) for webcam surveillance</a> appeared first on <a href="https://perso.uclouvain.be/tom.barbette">Tom Barbette</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Maybe you use the &#8220;on_picture_save&#8221; to send yourself an e-mail with motiond when your webcam detect an  intruder. But when someone enters, you&#8217;ll receive a lot of pictures. And if it was just you forgetting to stop the detection before entering, your smartphone will become a christmas tree for nothing&#8230;</p>
<p>I just published my last program &#8220;limitrate&#8221; on Github :</p>
<p>https://github.com/tbarbette/limitrate</p>
<p>This programs allows you to limit the rate of launching a certain command. Instead of launching</p>
<blockquote><p>/usr/bin/program argument1 argument2</p></blockquote>
<p>call :</p>
<blockquote><p>limitrate 30 &#8220;/usr/bin/program % argument2&#8221; argument1</p></blockquote>
<p>To launch only this command at maximum once every 30 seconds. If you call multiple times the last line in 30 seconds, limitrate will run the command only after 30 seconds replacing the &#8220;%&#8221; by the concatenation of all &#8220;argument 1&#8221;. For example to send an alert e-mail containing files (for example webcam picture) at max every 30 seconds :</p>
<pre><code>10:24:30 : limitrate 30 "echo \"Alert!\" | mailx % destination@mail.com" "-A /path/to/file1"
--&gt; Send a mail with file1
10:24:32 : limitrate 30 "echo \"Alert!\" | mailx % destination@mail.com" "-A /path/to/file2"
10:24:38 : limitrate 30 "echo \"Alert!\" | mailx % destination@mail.com" "-A /path/to/file3"
10:24:41 : limitrate 30 "echo \"Alert!\" | mailx % destination@mail.com" "-A /path/to/file4"
10:25:05 : limitrate 30 "echo \"Alert!\" | mailx % destination@mail.com" "-A /path/to/file5"
--&gt; Send a mail with file 2,3,4 and 5
</code></pre>
<p>Example configuration for motion detection daemon (Camera surveillance) :</p>
<blockquote><p>on_picture_save /usr/local/bin/limitrate 15 &#8220;echo \&#8221;See attachment below.\&#8221; | mailx -s &#8216;Motion in the saloon !&#8217; %<a href="mailto:destination@tombarbette.be">destination@tombarbette.be</a>&#8221; &#8220;-A %f&#8221;</p></blockquote>
<p>When an intrusion is detected, you&#8217;ll receive a first e-mail with one image. 15 seconds later you&#8217;ll receive all the new images in only one mail, and so on.</p>
<p>The post <a href="https://perso.uclouvain.be/tom.barbette/limit-rate-of-mail-sent-by-motion-detection-daemon-motiond-for-webcam-surveillance/">Limit rate of mail sent by motion detection daemon (motiond) for webcam surveillance</a> appeared first on <a href="https://perso.uclouvain.be/tom.barbette">Tom Barbette</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Wanscam IP Camera Update</title>
		<link>https://perso.uclouvain.be/tom.barbette/wanscam-ip-camera-update/</link>
		
		<dc:creator><![CDATA[Tom Barbette]]></dc:creator>
		<pubDate>Sun, 05 Jan 2014 14:55:01 +0000</pubDate>
				<category><![CDATA[Domotic]]></category>
		<category><![CDATA[foscam]]></category>
		<category><![CDATA[ip camera]]></category>
		<category><![CDATA[wanscam]]></category>
		<guid isPermaLink="false">http://queen.run.montefiore.ulg.ac.be/~barbette/?p=20</guid>

					<description><![CDATA[<p>As IP Camera are cheaper than real alarm, I decided to buy a cheap IP Camera like ones you see for 50€ when typing &#8220;ip camera&#8221; on amazon : (Re)brand : Wanscam Model : FR4020A2 Original system firmware  : 0.37.2.46 Original WEB UI : 0.9.4.16 It can detect movement, move horizontally and vertically by a web interface, &#8230; </p>
<p class="link-more"><a href="https://perso.uclouvain.be/tom.barbette/wanscam-ip-camera-update/" class="more-link">Continue reading<span class="screen-reader-text"> "Wanscam IP Camera Update"</span></a></p>
<p>The post <a href="https://perso.uclouvain.be/tom.barbette/wanscam-ip-camera-update/">Wanscam IP Camera Update</a> appeared first on <a href="https://perso.uclouvain.be/tom.barbette">Tom Barbette</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>As IP Camera are cheaper than real alarm, I decided to buy a cheap IP Camera like ones you see for 50€ when typing &#8220;ip camera&#8221; on amazon :<br />
<br />
(Re)brand : Wanscam<br />
Model : FR4020A2<br />
Original system firmware  : 0.37.2.46<br />
Original WEB UI : 0.9.4.16<br />
<br />
<a href="https://www.tombarbette.be/wp-content/uploads/2014/01/webcam.jpg"><img fetchpriority="high" decoding="async" src="https://www.tombarbette.be/wp-content/uploads/2014/01/webcam-257x300.jpg" alt="webcam" width="257" height="300" class="alignnone size-medium wp-image-70" srcset="https://perso.uclouvain.be/tom.barbette/wp-content/uploads/2014/01/webcam-257x300.jpg 257w, https://perso.uclouvain.be/tom.barbette/wp-content/uploads/2014/01/webcam.jpg 879w" sizes="(max-width: 257px) 100vw, 257px" /></a><br />
<br />
It can detect movement, move horizontally and vertically by a web interface, send mail, send image on ftp, etc etc&#8230;</p>
<p><span style="line-height: 1.5;">But the reference nearly doesn&#8217;t exist, and finding a newer firmware is nearly impossible. But this camera looks a lot like a lot of others, including Foscam. So I decided to find a newer firmware for similar webcams. I found that the firmware for mine was named </span><span style="line-height: 1.5;">lr_cmos_0_X_Y_Z.bin, and I searched for newer version. I finaly came acrosse this page : </span><a style="line-height: 1.5;" href="http://www.dericam.com/bbs/forum.php?mod=viewthread&amp;tid=85">http://www.dericam.com/bbs/forum.php?mod=viewthread&amp;tid=85</a><span style="line-height: 1.5;"> where a link to a firmware for the Dericam M801W is given containing a file named &#8220;</span><span style="line-height: 1.5;">lr_cmos_0_41_2_51.bin&#8221;, I decided to flash it and&#8230; It works ! It doesn&#8217;t seem that there exist any newer firmware&#8230;</span><br />
<br />
About the web ui firmware, I searched for a firmware in the web coming with the system firmware around 41.2.51, and I came accross <a href="http://www.openipcam.com/forum/index.php/topic,128.0.html#msg1956">http://www.openipcam.com/forum/index.php/topic,128.0.html#msg1956</a> . The web ui firmware number is smaller but  clearly, the interface is newer&#8230; It comes with something we can call a &#8220;design&#8221;, far away from the horrible original nearly &#8220;text only&#8221; interface.<br />
<br />
So my final versions are :</p>
<table width="100%">
<tbody>
<tr>
<td align="left">  Device Firmware Version</td>
<td align="left">  0.41.2.51</td>
</tr>
<tr>
<td align="left">  Device Embeded Web UI Version</td>
<td align="left">  0.2.9.12</td>
</tr>
</tbody>
</table>
<p>You can download the files here : <a href="https://www.tombarbette.be/wp-content/uploads/2014/01/lr_cmos_0_41_2_51.zip">lr_cmos_0_41_2_51</a> (flash the lr_cmos first!) and <a href="https://www.tombarbette.be/wp-content/uploads/2014/01/0.2.9.12.bin.zip">WEB UI 0.2.9.12.bin</a>. The video quality is really better ! Wifi is working, etc&#8230;<br />
<br />
The update process doesn&#8217;t lost configuration or passwords !<br />
<br />
&nbsp;<br />
<br />
A little tips working with all of theses ip camera, create some favorites to directly set or unset alarm :<br />
<br />
Set alarm to send by ftp and by mail : <code>http://10.0.0.50:99/set_alarm.cgi?next_url=alarm.htm&amp;motion_armed=1&amp;input_armed=0&amp;motion_sensitivity=5&amp;iolinkage=0&amp;mail=1&amp;upload_interval=1&amp;ioin_level=1&amp;ioout_level=0&amp;schedule_enable=0&amp;schedule_sun_0=0&amp;schedule_sun_1=0&amp;schedule_sun_2=0&amp;schedule_mon_0=0&amp;schedule_mon_1=0&amp;schedule_mon_2=0&amp;schedule_tue_0=0&amp;schedule_tue_1=0&amp;schedule_tue_2=0&amp;schedule_wed_0=0&amp;schedule_wed_1=0&amp;schedule_wed_2=0&amp;schedule_thu_0=0&amp;schedule_thu_1=0&amp;schedule_thu_2=0&amp;schedule_fri_0=0&amp;schedule_fri_1=0&amp;schedule_fri_2=0&amp;schedule_sat_0=0&amp;schedule_sat_1=0&amp;schedule_sat_2=0</code><br />
<br />
Set alarm to send by ftp only  : <code>http://10.0.0.50:99/set_alarm.cgi?next_url=alarm.htm&amp;motion_armed=1&amp;input_armed=0&amp;motion_sensitivity=5&amp;iolinkage=0&amp;mail=0&amp;upload_interval=1&amp;ioin_level=1&amp;ioout_level=0&amp;schedule_enable=0&amp;schedule_sun_0=0&amp;schedule_sun_1=0&amp;schedule_sun_2=0&amp;schedule_mon_0=0&amp;schedule_mon_1=0&amp;schedule_mon_2=0&amp;schedule_tue_0=0&amp;schedule_tue_1=0&amp;schedule_tue_2=0&amp;schedule_wed_0=0&amp;schedule_wed_1=0&amp;schedule_wed_2=0&amp;schedule_thu_0=0&amp;schedule_thu_1=0&amp;schedule_thu_2=0&amp;schedule_fri_0=0&amp;schedule_fri_1=0&amp;schedule_fri_2=0&amp;schedule_sat_0=0&amp;schedule_sat_1=0&amp;schedule_sat_2=0</code><br />
<br />
Unset alarm : <code>http://10.0.0.50:99/set_alarm.cgi?next_url=alarm.htm&amp;motion_armed=0&amp;input_armed=0&amp;motion_sensitivity=5&amp;iolinkage=0&amp;mail=0&amp;upload_interval=0&amp;schedule_enable=0&amp;schedule_sun_0=0&amp;schedule_sun_1=0&amp;schedule_sun_2=0&amp;schedule_mon_0=0&amp;schedule_mon_1=0&amp;schedule_mon_2=0&amp;schedule_tue_0=0&amp;schedule_tue_1=0&amp;schedule_tue_2=0&amp;schedule_wed_0=0&amp;schedule_wed_1=0&amp;schedule_wed_2=0&amp;schedule_thu_0=0&amp;schedule_thu_1=0&amp;schedule_thu_2=0&amp;schedule_fri_0=0&amp;schedule_fri_1=0&amp;schedule_fri_2=0&amp;schedule_sat_0=0&amp;schedule_sat_1=0&amp;schedule_sat_2=0</code><br />
<br />
Don&#8217;t forget to change your ip adress/port of course&#8230; You can change the &#8220;motion_sensitivity=5&#8221; to another value according to your environment&#8230;</p>
<p>The post <a href="https://perso.uclouvain.be/tom.barbette/wanscam-ip-camera-update/">Wanscam IP Camera Update</a> appeared first on <a href="https://perso.uclouvain.be/tom.barbette">Tom Barbette</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
