<?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>micolous.id.au &#187; VoIP Hardware</title>
	<atom:link href="http://micolous.id.au/archives/category/voip/voip-hardware/feed/" rel="self" type="application/rss+xml" />
	<link>http://micolous.id.au</link>
	<description>the result of a blogging accident</description>
	<lastBuildDate>Mon, 05 Sep 2011 08:29:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>It&#8217;s Cisco-o-clock!</title>
		<link>http://micolous.id.au/archives/2008/05/17/its-cisco-o-clock/</link>
		<comments>http://micolous.id.au/archives/2008/05/17/its-cisco-o-clock/#comments</comments>
		<pubDate>Fri, 16 May 2008 17:11:33 +0000</pubDate>
		<dc:creator>micolous</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[VoIP Hardware]]></category>

		<guid isPermaLink="false">http://micolous.id.au/archives/2008/05/17/its-cisco-o-clock/</guid>
		<description><![CDATA[I thought I&#8217;d put up a couple of small new scripts I wrote for my Cisco IP phone. The first is a simple image converter. It converts images from any format that the [Python Imaging Library (PIL)][pil] supports and turns &#8230; <a href="http://micolous.id.au/archives/2008/05/17/its-cisco-o-clock/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I thought I&#8217;d put up a couple of small new scripts I wrote for my Cisco IP phone.</p>
<p>The first is a simple image converter.  It converts images from any format that the [Python Imaging Library (PIL)][pil] supports and turns it into a Cisco IP Phone Image format (CIP) &#8211; a Python version of Cisco&#8217;s `gif2cip`).  For convenience, the new lines in the images are displayed as a colon, so you can use it in other things where you need to chop up the images into parts by line (for example, my clock).  If you want to display the image statically, you would remove them.  It assumes you&#8217;re using 2-bits-per-pixel (4 colour) output for the Cisco 7940/7960, and that your image is an 8-bit greyscale image.  If you have an alpha channel or it&#8217;s RGB, the image won&#8217;t convert.</p>
<p>It uses a very basic algorithm to downsample the image to 2-bits-per-pixel which probably isn&#8217;t perfect in the nature of LCDs, so you may need to tweak the colour value curve in your graphics program if you&#8217;re using something other than text.  It will also automatically invert the image so black on your computer is black on the LCD.  You can [grab the script here][image2cisco].</p>
<p><img src="/static/resc/cisco-clock.jpg" title="It's ten past two on the rocket clock!" alt="" /></p>
<p><em>&#8220;It&#8217;s ten past two on the [rocket clock][playschool]!&#8221;</em></p>
<p>The second program is a big digital clock Python CGI script.  It&#8217;s based on the same idea as the &#8220;Clock&#8221; script from the [Cisco IP Phone Services SDK][servicessdk] (which was originally in classic ASP), with a bigger font and the full date displayed at the bottom of the screen.  The image for the digits is embedded in the Python script (which is why the file is so big), which you can change by using the image converter program.  You can [grab the script here][clock], and [the source PNG images for the digits here][digits] (only needed if you want to modify the digits).  Remember to set the execute bit if you&#8217;re using plain CGI (you don&#8217;t need to do this if you use mod_python).</p>
<p>I always believe you can&#8217;t have too many clocks. <img src='http://micolous.id.au/wordpress/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>[pil]: http://www.pythonware.com/products/pil/<br />
[image2cisco]: /static/projects/asterisk/cisco-hax/image2cisco.py<br />
[clock]: /static/projects/asterisk/cisco-hax/clock.py<br />
[digits]: /static/projects/asterisk/cisco-hax/digits.zip<br />
[servicessdk]: http://www.cisco.com/en/US/prod/collateral/voicesw/ps6788/phones/ps379/product_data_sheet09186a00800925a8.html<br />
[playschool]: http://en.wikipedia.org/wiki/Play_School_%28Australian_TV_series%29</p>
]]></content:encoded>
			<wfw:commentRss>http://micolous.id.au/archives/2008/05/17/its-cisco-o-clock/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cisco 7960/7940 VoIP Phones vs. Adelaide/SA&#8217;s timezone.</title>
		<link>http://micolous.id.au/archives/2007/01/19/cisco-79607940-voip-phones-vs-adelaidesas-timezone/</link>
		<comments>http://micolous.id.au/archives/2007/01/19/cisco-79607940-voip-phones-vs-adelaidesas-timezone/#comments</comments>
		<pubDate>Fri, 19 Jan 2007 12:53:28 +0000</pubDate>
		<dc:creator>micolous</dc:creator>
				<category><![CDATA[VoIP]]></category>
		<category><![CDATA[VoIP Hardware]]></category>

		<guid isPermaLink="false">http://micolous.id.au/archives/2007/01/19/cisco-79607940-voip-phones-vs-adelaidesas-timezone/</guid>
		<description><![CDATA[The Cisco 7960/7940 (and probably also some others) seem to have this daft issue where they assume Darwin/NT&#8217;s timezone rules of GMT+9.5 hours, and no daylight savings time. So, some additions to the TFTP configuration file `SIPDefault.cnf` are required. sntp_server: &#8230; <a href="http://micolous.id.au/archives/2007/01/19/cisco-79607940-voip-phones-vs-adelaidesas-timezone/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The Cisco 7960/7940 (and probably also some others) seem to have this daft issue where they assume Darwin/NT&#8217;s timezone rules of GMT+9.5 hours, and no daylight savings time.  So, some additions to the TFTP configuration file `SIPDefault.cnf` are required.</p>
<p>    sntp_server: 129.127.40.3 ; ntp.adelaide.edu.au</p>
<p>    time_zone: CAST<br />
    dst_offset: 1</p>
<p>    dst_start_month: October<br />
    dst_start_day_of_week: Sun<br />
    dst_start_week_of_month: 8 ; Last<br />
    dst_start_time: 2</p>
<p>    dst_stop_month: March<br />
    dst_stop_day_of_week: Sun<br />
    dst_stop_week_of_month: 8 ; Last<br />
    dst_stop_time: 3</p>
<p>Here I&#8217;ve used Adelaide University&#8217;s (S)NTP server, but you could easily substitute another server.  These will observe standard rules only, and won&#8217;t take into account when the Victorian government feels the need to needlessly change the daylight savings rules of the whole country to suit the Commonwealth Games, where daylight savings changes would normally apply a week after the closing ceremony.  Then again, some Victorian government officials have this strange idea that Australia is just them and New South Wales.</p>
<p>At least Sydney was nice about it and didn&#8217;t shove it down our throats. <img src='http://micolous.id.au/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://micolous.id.au/archives/2007/01/19/cisco-79607940-voip-phones-vs-adelaidesas-timezone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cirrus CPH-B661 Ethernet VoIP Phone</title>
		<link>http://micolous.id.au/archives/2006/03/10/cirrus-cph-b661-ethernet-voip-phone/</link>
		<comments>http://micolous.id.au/archives/2006/03/10/cirrus-cph-b661-ethernet-voip-phone/#comments</comments>
		<pubDate>Fri, 10 Mar 2006 10:22:16 +0000</pubDate>
		<dc:creator>micolous</dc:creator>
				<category><![CDATA[Toys]]></category>
		<category><![CDATA[VoIP]]></category>
		<category><![CDATA[VoIP Hardware]]></category>

		<guid isPermaLink="false">http://lz129.concreteairship.com/?p=52</guid>
		<description><![CDATA[I&#8217;ve recently bought one of these devices from eBay, for a mere 70$. Bargin basement, considering the cost of an ATA is 70$, plus the cost of a phone, and that many other IP Phones sell for 300-400$, and I &#8230; <a href="http://micolous.id.au/archives/2006/03/10/cirrus-cph-b661-ethernet-voip-phone/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img src="/~michael/cirrus-cph-b661-ipphone.jpg" title="Cirrus CPH-B661" alt="" /></p>
<p>I&#8217;ve recently bought <a href="http://www.us-cirrus.com/Product-ipphone-661.htm">one of these devices</a> from eBay, for a mere 70$.  Bargin basement, considering the cost of an ATA is 70$, plus the cost of a phone, and that many other IP Phones sell for 300-400$, and I wasn&#8217;t willing to spend that much money on a phone.</p>
<p>It&#8217;s a nice gadget, it has a &#8220;straight through&#8221; RJ-45 100mbit socket, and a crossover socket, allowing you to use an existing cable for your computer for your phone as well &#8211; something ideal in offices or other situations where there is limited cabling and you want to save money on VoIP rollout.</p>
<p>There are five different firmwares for the device: H.323, IAX2, MGCP, Net2Phone, and SIP.  By default, my unit had a SIP firmware on it, however it is painlessly switchable by <a href="http://www.us-cirrus.com/download.htm">downloading the firmware from Cirrus&#8217; website</a>, then uploading it via a web interface.  It takes about 5 minutes to complete the update.  Something interesting about the images is that the filesystem isn&#8217;t encrypted or encrapted at all &#8211; and you can see the raw HTML source in the file, as well as some of the strings used on the phone.  Initial minipulation hasn&#8217;t really been successful, however I could be in the wrong place, or there may be a checksum on the file to prevent modified or corrupted firmware from being uploaded to the device.</p>
<p>A couple of issues I had was that I found the manual difficult to follow to configure the device via the handset.  After I switched the device to using DHCP (it was using a static IP of 192.168.1.100 by default), it then was trivial to configure via a web interface.</p>
<p>Something I noticed using the original firmware that when reading out the &#8220;index&#8221; of the speed dial, that the numbers weren&#8217;t really right.  So for number &#8220;98&#8243;, it would read &#8220;9 ten 8&#8243;.  In v1.50 of the firmware, this issue was resolved.</p>
<p><img src="/~michael/IMG_0244.jpg" alt="" title="'l33t h4x0r', being displayed as the 'phone number' of the phone" /></p>
<p>I notice you can set a &#8220;phone number&#8221; to be displayed on the phone as any string you wish using the web interface, but not the handset.  I actually use this functionality (it simply pops up that it&#8217;s my phone), and then it displays my local extension number.  It would be good if that sort of thing was consistant.</p>
<p>The &#8220;Flash&#8221; button doesn&#8217;t do a &#8220;flash&#8221; (or &#8220;recall&#8221;) at all, but in fact accesses an interactive speed dial menu.  Additionally, the abbreviations for some of the buttons could be better (&#8220;anscal&#8221;, &#8220;miscal&#8221;, &#8220;diacal&#8221;), and there should be some functionality to change the ringing, and dialtone, much like the Sipura ATA units do.</p>
<p>So, we shall see how this all goes&#8230;.</p>
]]></content:encoded>
			<wfw:commentRss>http://micolous.id.au/archives/2006/03/10/cirrus-cph-b661-ethernet-voip-phone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

