<?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>Opinsys In English</title>
	<atom:link href="http://www.opinsys.fi/en/feed" rel="self" type="application/rss+xml" />
	<link>http://www.opinsys.fi/en</link>
	<description>Supporting learning in schools with Linux</description>
	<lastBuildDate>Tue, 10 Jan 2012 14:51:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>New experiment: Walma &#8211; Collaborative Whiteboard</title>
		<link>http://www.opinsys.fi/en/walma-collaborative-whiteboard</link>
		<comments>http://www.opinsys.fi/en/walma-collaborative-whiteboard#comments</comments>
		<pubDate>Fri, 16 Dec 2011 11:34:48 +0000</pubDate>
		<dc:creator>Esa-Matti Suuronen</dc:creator>
				<category><![CDATA[Developer's blog]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[node.js]]></category>
		<category><![CDATA[prototype]]></category>
		<category><![CDATA[tablet]]></category>
		<category><![CDATA[walma]]></category>

		<guid isPermaLink="false">http://www.opinsys.fi/en/?p=1643</guid>
		<description><![CDATA[Schools in Finland are buying tablets like crazy now. The weird thing is that nobody really knows what they are really good for in school environment, but everybody seems to see good potential in them. That&#8217;s why we are also experimenting with tablets. This prototype is all about bringing more social and collaborative aspects to [...]]]></description>
			<content:encoded><![CDATA[<p>Schools in Finland are buying tablets like crazy now. The weird thing is that nobody really knows what they are really good for in school environment, but everybody seems to see good potential in them. That&#8217;s why we are also experimenting with tablets.</p>
<p>This prototype is all about bringing more social and collaborative aspects to school&#8217;s IT-stack. The schools that have acquired tablets, usually already have interactive whiteboards in class rooms. Those are mainly teacher&#8217;s tools and tablets are clearly geared for students. So with Walma we have created a unified drawing board for both devices. Teacher may ask a student to join in the drawing using his/her tablet. The drawing is automatically synchronized between the devices in real-time. The synchronization works via public Internet so the student don&#8217;t even have to be in the same class room. He/she can be attending the class using a video link and with Walma he/she can take part in teaching.</p>
<p><a href="http://www.opinsys.fi/wp-content/uploads/2011/12/IMG_0350.jpg"><img src="http://www.opinsys.fi/wp-content/uploads/2011/12/IMG_0350-300x200.jpg" alt="" width="300" height="200" class="alignnone size-medium wp-image-1661" /></a> </p>
<p>You can test out the prototype here:</p>
<p><a href="http://walmademo.opinsys.fi/">http://walmademo.opinsys.fi/</a></p>
<p>Be aware that this is a very early prototype and has some obvious features missing. The idea is not be a complete solution yet, but to awake ideas within teachers and other education professionals. You can checkout our issue list on <a href="https://github.com/opinsys/walma/issues">Github</a>. Please report if you find some unlisted issues.</p>
<p>The prototype requires a quite modern browser. On desktops latest Mozilla Firefox and Google Chrome is known to work fine and on tablets Firefox Beta on Android and Safari on iPad. </p>
<h2>Technology</h2>
<p>As we have very small development team we cannot develop on each individual platform natively. Not only we have two major tablet platforms, Google&#8217;s Android and Apple&#8217;s iOS, but also the desktop platforms. We deliver our solution on top of Linux, but the number of personal devices among students is increasing so it would be very shortsighted to ignore those. So that means at least five different platforms. That&#8217;s quite a task even for a large team.</p>
<p>So we obviously went the web route. HTML5 Canvas and WebSockets allow one to build quite easily a collaborative whiteboard application. Web app also gives huge advantages when it comes to inviting others to join in the drawing. Teacher can just send a link of the drawing to the student and all the student has to do is open that link. It works no matter what the student&#8217;s device is. Installation step in here would be a deal breaker for usability. </p>
<p>The application itself is written in CoffeeScript and is running on Node.js. If you are more interested in the code of the application you can check it out on <a href="https://github.com/opinsys/walma">Github</a>. All code is released under GPLv2+. So feel free to host it your self and hack on it. All feature requests, bug reports and especially patches are very welcome.</p>
<p><a href="http://www.opinsys.fi/en/files/2011/12/walma.png"><img src="http://www.opinsys.fi/en/files/2011/12/walma-300x296.png" alt="" title="walma" width="300" height="296" class="alignnone size-medium wp-image-1644" /></a> </p>
<h2>Challenges with the browsers</h1>
<p>In theory all browsers supports the requirements for our app. Those are HTML5 Canvas for drawing and WebSockets for real-time synchronization. Canvas is supported on every browser on every platform and most of those support WebSockets as well. </p>
<p>Lacking support in WebSockets is not a big deal since Socket.IO library in Node.js can cleanly fallback to long-polling and other hacks when required. We had more issues with Canvas even though it should be more mature.</p>
<p>We had the latest and greatest Android tablets as test devices, Samsung Galaxy Tab 10.1 and Asus Transformer. Both shipping with fast dual core processors and Android 3.x with <a href="http://android-developers.blogspot.com/2011/03/android-30-hardware-acceleration.html">advertised hardware acceleration support in their WebKit based browsers</a>. </p>
<p>But to our surprise the Canvas performance in Android Browser was just terrible. When one draws a line on the device it gets drawn on remote devices with proper Canvas implementations before it manages to draw it locally! It&#8217;s totally unusable in drawing applications. This is really weird since my personal phone, HTC Desire Z, which is much older device and ships with older version of Android has no issues with Canvas performance. We tested this with several other Canvas applications as well, so it&#8217;s not just our app. There is something really wrong in the Canvas implementation. One can slightly speed up the drawing by <strong>disabling</strong> hardware acceleration from the browser, but it&#8217;s still way too slow for drawing.</p>
<p>Luckily Google is not the only one shipping browsers for Android. Mozilla is making a great effort with it&#8217;s <a href="http://www.mozilla.org/en-US/mobile/">Android port of Firefox</a>. It has a reasonable Canvas performance and it even supports WebSockets. So it&#8217;s pretty good for our app.</p>
<p>On the other hand Safari on Apple&#8217;s iPad, which also is a WebKit based browser, happens to have an incredibly good Canvas performance. It is actually on the par with native drawing applications. This something I really would expect from Google. Since I see Google as the web company today and they are really committed in making Chrome the best browser on desktops, but in tablets they have the worst. In many ways the Android browser feels like Internet Explorer 6. We haven&#8217;t had a chance to try the Android 4.0 browser yet, so it may bring improvements.</p>
<h2>Conclusion</h2>
<p>Tablet browser issues aside, Walma is quite usable as it is. We are planning to integrate Walma with our desktop solution. Users will be able to take a screenshot and open it in Walma with a single click. This can be used to elaborate other teaching material in a way that students can participate too. </p>
<p><a href="http://esa-matti.suuronen.org/">Esa-Matti Suuronen</a> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.opinsys.fi/en/walma-collaborative-whiteboard/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Testing some web-based services on the android tablet</title>
		<link>http://www.opinsys.fi/en/testing-some-web-based-services-on-the-android-tablet</link>
		<comments>http://www.opinsys.fi/en/testing-some-web-based-services-on-the-android-tablet#comments</comments>
		<pubDate>Fri, 15 Jul 2011 13:24:42 +0000</pubDate>
		<dc:creator>Kim Wikström</dc:creator>
				<category><![CDATA[Developer's blog]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[Opinsys]]></category>
		<category><![CDATA[tablet]]></category>
		<category><![CDATA[teaching]]></category>

		<guid isPermaLink="false">http://www.opinsys.fi/en/?p=1626</guid>
		<description><![CDATA[In my aim to find an answer to the question: &#8220;can our teachers replace laptops with tablets?“ I&#8217;ve done a little testing. But before we look at that, let&#8217;s just have a short look at the presumptions one could have about using tablets and that, in fact, I did have before starting out. The tablet [...]]]></description>
			<content:encoded><![CDATA[<p>In my aim to find an answer to the question: &#8220;can our teachers replace laptops with tablets?“ I&#8217;ve done a little testing. But before we look at that, let&#8217;s just have a short look at the presumptions one could have about using tablets and that, in fact, I did have before starting out.</p>
<p>The tablet is a window to the web and android being a google-thing it&#8217;s easily assumed that doing stuff in the browser is easy. Because more and more of the stuff that needs doing is done online one could also assume that the tablet is a good tool: light, great batterylife, always on, always online (when at all possible), easy to use in a variety of situations. Well, well, not quite.</p>
<p>How wonderful it is to be able to break false assumptions, especially ones own.</p>
<p>When i started testing my greatest concern was about writing using the touch pad. But that is not a big problem. Already it&#8217;s working pretty good on the touchscreen. The problem is simply that web-sites have not been designed with tablets in mind. Since our customers are schools I picked a few of the services that I know is being used here in Finland: moodle, wilma (a tool for teachers, parents and students alike), wikispaces, prezi and GoogleDocs. Let’s see.</p>
<p>First <strong>Moodle</strong>. Ok, so Moodle is customizable and no one moodle is exactly like any other. The ones I have seen though, all have an abundance of small icons and small text-input-fields. Unless you constantly zoom in and out it’s hard to navigate. Maybe needless to say, zooming should be an option, not a mandatory thing to do for simple input and navigation. A big screen with a normal mouse and keyboard feels like heaven after a few minutes.</p>
<p><strong>Wilma </strong>is a very popular intraweb-type service for schools that include schedules, e-mail, e-portfolios, results from exams etc. It is used daily by teachers and students. I found that it works ok with the tablet, although far from really convenient. The problem is the same as in moodle, but to a lesser degree, simply because there’s less stuff crammed into one page.</p>
<p>I have become a great fan on <strong>wikispaces</strong>. It’s easy to learn, both for teachers and students, and wikispaces makes a point out off giving educators “plus” -versions for free. I’ve been training teachers in it’s use and it’s only natural to test out how it works. Apart from the one time it completely crashed the browser not much needs to be said. To read others wikis goes smoothly, to edit is far from convenient, but possible. It’s a bit hard to say how much the usability is about habit.</p>
<p><strong>Prezi </strong>is a nice cloud-service that lets you do presentations online in a novel way. I like to recommend it because it solves all the compatibility issues between different office -suites in one go. You do it and store in online and access it anywhere. Unless, you´re using an android tablet, that is. It either jams up working very slowly or crashes completely. The most recent I found on this is <a href="http://community.prezi.com/prezi/topics/prezi_for_android">here</a>.</p>
<p>Finally, <strong>GoogleDocs</strong>. The logic of presumtion here goes like this: android = google and google = GoogleDocs, thus: Android and GoogleDocs = friends. But that turns out to be false, because GoogleDocs is not designed for tablets in the first place. It’s certainly possible to write with Docs on the tab (in desktop -mode it crashed though) but you completely lack the editor menu. So text goes in, yes, but you only have the keyboards functions. There is a GoogleDocs app available, but it is apparently designed with phones in mind, not as full-fledged tablet app. I soon found out that using Evernote (a note-taking app that works offline, available from android market) and copy-pasting into a GoogleDoc for later editing on a computer works best for me. But that is hardly something I could recommend in general.</p>
<p>So, it seems to me that everything needs it&#8217;s own native android application or / and websites need to have tablet -versions. As it is now, I would not recommend changing from a laptop to a tablet if a great part of the users work is done online. Since tablets are getting more and more popular, this will probably change. For an interesting discussion on native vs. web apps have a look at <a href="http://www.dev-articles.com/article/Native-Android-vs-Html5-428001">this</a>.</p>
<p>Time to look at what these things CAN do for teaching.</p>
<p>&nbsp;</p>
<p>-Kim Wikström</p>
]]></content:encoded>
			<wfw:commentRss>http://www.opinsys.fi/en/testing-some-web-based-services-on-the-android-tablet/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Tablets in schools &#8211; some thoughts on using them for writing</title>
		<link>http://www.opinsys.fi/en/tablets-in-schools-some-thoughts-on-using-them-for-writing</link>
		<comments>http://www.opinsys.fi/en/tablets-in-schools-some-thoughts-on-using-them-for-writing#comments</comments>
		<pubDate>Fri, 08 Jul 2011 13:55:04 +0000</pubDate>
		<dc:creator>Kim Wikström</dc:creator>
				<category><![CDATA[Developer's blog]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[school]]></category>
		<category><![CDATA[tablet]]></category>
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://www.opinsys.fi/en/?p=1622</guid>
		<description><![CDATA[In this post I will deal with writing on the android -tablet, Acer Iconia 500 tab, I&#8217;ve been trying out for a about a week now. While I do this I&#8217;m projecting my mind, so to speak, into a classroom and school setting. When one is asked to evaluate a new thing, be it what [...]]]></description>
			<content:encoded><![CDATA[<p>In this post I will deal with writing on the android -tablet, Acer Iconia 500 tab, I&#8217;ve been trying out for a about a week now. While I do this I&#8217;m projecting my mind, so to speak, into a classroom and school setting.</p>
<p>When one is asked to evaluate a new thing, be it what it may, the natural tendency is to compare it with something known. The known options are the laptop and desktop. But these tools on the one hand and tablets on the other are designed for different purposes, right? If I would ask a carpenter to compare the usability of a big saw designed for sawing planks and  a small hand jigsaw he would probably say the obvious: &#8220;It depends on what you want to do&#8221;. When people compare, some believe that a tab is no-go in school because compared to devices with keyboards, its hard to use it for writing and you write a lot in school. Let&#8217;s see. Have a look at the tube below from 4:00 onwards.</p>
<p><iframe width="560" height="450" src="http://www.youtube.com/embed/d448m0RVnYA?rel=0" frameborder="0" allowfullscreen></iframe></p>
<p>It&#8217;s an Ipad, but the same points concern our android friends. Honestly, I don&#8217;t think anybody knows if we will have to carry external keyboards with us forever, but somehow it seems unlikely. One thing to remember is that people who have used normal keyboards for 15+ years have a different approach than young pupils in school. It is possible that students will adopt the touchscreen and it&#8217;s future versions for writing without any great loss of speed or convenience. My personal experience however is the same as our Pad Lady in the video: it&#8217;s ok for short stuff, but not nice at all if you need to write long things. So: You do need a external keyboard, if a tablet is your only mobile device and you write a lot AND you don&#8217;t want to suffer for X amount of time.</p>
<p>One very important point is illustrated in this video, and that is the support that keeps the tablet upright. During my first days of tabbing I got a serious neck ache from looking downwards. I like the little tripod that she uses, but I suppose there will appear many options as time goes by, like<a href="http://www.androidtablets.net/forum/android-tablet-discussions/2733-case-turns-my-android-tablet-into-netbook.html#post15642"> this one</a> for example.</p>
<p>If you google &#8220;writing with pad / tablet&#8221; most of the stuff that comes up has to do with the Ipad. And a great part of that stuff about writing-apps for Ipad. There are roughly two ways to go from here. One is to search for a good &#8220;office&#8221; -like application for android that can work offline, and the other is to go with GoogleDocs. To make it short, I haven&#8217;t found anything good for the offline -option and the mobile version on GoogleDocs don&#8217;t really satisfy either.  I&#8217;m going to keep testing and searching, but for the time being writing, say, an essay would be a painful experience. I hope this is temporary and that I can return to this blog after some days and say I have the solution. We&#8217;ll see.</p>
<p>So let&#8217;s compare a little. According to what we saw on the video, writing on a tablet is not necessarily a problem, since some choose it freely. The point is to have an external keyboard at hand when you need it. For the time being the lack on android is in the applications. I hope that we will see some seriously good web -based writing tools with offline capabilities soon and being the optimist I am, I think we will.</p>
<p>-Kim Wikström</p>
]]></content:encoded>
			<wfw:commentRss>http://www.opinsys.fi/en/tablets-in-schools-some-thoughts-on-using-them-for-writing/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android tablets to be tested</title>
		<link>http://www.opinsys.fi/en/android-tablets-to-be-tested</link>
		<comments>http://www.opinsys.fi/en/android-tablets-to-be-tested#comments</comments>
		<pubDate>Fri, 08 Jul 2011 13:24:49 +0000</pubDate>
		<dc:creator>Kim Wikström</dc:creator>
				<category><![CDATA[Developer's blog]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[school]]></category>
		<category><![CDATA[tablet]]></category>

		<guid isPermaLink="false">http://www.opinsys.fi/en/?p=1621</guid>
		<description><![CDATA[Why is someone interested in the possibilities of using tablets or pads in education? Well, it&#8217;s novel. New technology and tools that let&#8217;s the user access and do stuff with digital data in new ways is interesting. Combine this with the ongoing trend of developing pedagogical practice by the use of new tools in education [...]]]></description>
			<content:encoded><![CDATA[<p>Why is someone interested in the possibilities of using tablets or pads in education? Well, it&#8217;s novel. New technology and tools that let&#8217;s the user access and do stuff with digital data in new ways is interesting. Combine this with the ongoing trend of developing pedagogical practice by the use of new tools in education and you have it. At the BETT 2011 fair in London the Ipad was present and attracted some attention. What seemed then to be the main points of interest in these devices was</p>
<ol>
<li>The touch interface, i.e intuitive ways for children to process pictures etc.</li>
<li>The mobility and lightweightness of the pads</li>
<li>The brand</li>
</ol>
<p>Starting from the end, the third point is not as unimportant as it may seem. If users have a prejudice wired towards the positive, half of the challenge of successful deployment is taken care of. The second point has to do with the limitations of netbooks and laptops, at least to some degree. It&#8217;s hard to say exactly why, but it definitely <em>looks </em>as if the pads are more easy to work on, say, standing up. Their batterylife was also said to be good. The first point is the main point however. It&#8217;s said that the pads touchscreens invite children and adults alike to <em>do stuff</em>.</p>
<p>We are going to have a closer look at these and other points now. For the coming months, I&#8217;ve commited myself to a little pad/tablet research job with the aim to gain some understanding about what makes these things wonderful, useless or, most likely, something more relative to the envisioned contexts of use. I will not be testing an Ipad, but pads running android 3.0.1. Why? Good question, let&#8217;s just say it&#8217;s much more interesting for us to see what an open source solution can bring to this. Here is what I&#8217;ll try to figure out:</p>
<ul>
<li>What part of a teachers job can be done with a tablet?</li>
<li>How do the web -based some programs that students and teachers use behave on a tablet?</li>
<li>What cases of successful or unsuccesful uses of tablets can be found on the web?</li>
<li>If I where back in school as a teacher, what would I do with a tablet and what could I imagine my colleagues do with them</li>
<li>If I were a the headmaster / IT -planner for a school and had the money, would I invest in pads or not.</li>
<li>Ideas for software development for these things</li>
</ul>
<p>I will publish my findings and musings in this blog and naturally welcome any comments and hints.</p>
<p>&nbsp;</p>
<p>-Kim Wikström</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.opinsys.fi/en/android-tablets-to-be-tested/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Live Search plugin with support for multiple search urls</title>
		<link>http://www.opinsys.fi/en/jquery-live-search-plugin-with-support-for-multiple-search-urls</link>
		<comments>http://www.opinsys.fi/en/jquery-live-search-plugin-with-support-for-multiple-search-urls#comments</comments>
		<pubDate>Fri, 27 May 2011 13:46:14 +0000</pubDate>
		<dc:creator>Jouni Korhonen</dc:creator>
				<category><![CDATA[Developer's blog]]></category>

		<guid isPermaLink="false">http://www.opinsys.fi/en/?p=1618</guid>
		<description><![CDATA[Thank you Andreas Lagerkvist for Live Search plugin. This will turn a normal form input element in to a live ajax search widget. I added few configuration options to this plugin: minLength: minimum number of characters width: the number of pixels in the div-element of results. Can also be set to &#8216;auto&#8217;. We also needed [...]]]></description>
			<content:encoded><![CDATA[<p>Thank you Andreas Lagerkvist for <a href="http://andreaslagerkvist.com/jquery/live-search/">Live Search plugin</a>. This will turn a normal form input element in to a live ajax search widget.</p>
<p>I added few configuration options to this plugin:</p>
<ul>
<li>minLength: minimum number of characters</li>
<li>width: the number of pixels in the div-element of results. Can also be set to &#8216;auto&#8217;.</li>
</ul>
<p>We also needed support for multiple search urls when we use it on the <a href="http://github.com/opinsys/puavo-users">Puavo</a>. My changes to this plugin are available on <a href="http://github.com/opinsys/live-search">Github</a>. Test and use it and will tell me how it works!</p>
<p><strong>HTML</strong></p>
<pre>&lt;div id="jquery-live-search-example"&gt;
  &lt;form method="post" action="/one-search/"&gt;

    &lt;p&gt;
        &lt;label&gt;Enter search terms&lt;br /&gt;
          &lt;input id="search" type="text" name="q" /&gt;
        &lt;/label&gt;
        &lt;input type="submit" value="Go" /&gt;
    &lt;/p&gt;

  &lt;/form&gt;
&lt;/div&gt;</pre>
<p><strong>JavaScript</strong></p>
<pre>jQuery('#search').liveSearch({
  url: ['/one-serach?q=', '/two-search?q='],
  width: 'auto',
  minLength: 2
})</pre>
<pre>
</pre>
<pre><a href="http://www.opinsys.fi/en/files/2011/05/livesearch.png"><img class="alignnone size-full wp-image-1619" src="http://www.opinsys.fi/en/files/2011/05/livesearch.png" alt="" width="558" height="372" /></a>
</pre>
<p>Jouni Korhonen</p>
]]></content:encoded>
			<wfw:commentRss>http://www.opinsys.fi/en/jquery-live-search-plugin-with-support-for-multiple-search-urls/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mimio on linux &#8211; test results</title>
		<link>http://www.opinsys.fi/en/mimio-on-linux-test-results</link>
		<comments>http://www.opinsys.fi/en/mimio-on-linux-test-results#comments</comments>
		<pubDate>Fri, 06 May 2011 13:37:02 +0000</pubDate>
		<dc:creator>Veli-Matti Lintu</dc:creator>
				<category><![CDATA[Developer's blog]]></category>
		<category><![CDATA[interactive whiteboards]]></category>
		<category><![CDATA[iwb]]></category>
		<category><![CDATA[mimio]]></category>

		<guid isPermaLink="false">http://www.opinsys.fi/en/?p=1616</guid>
		<description><![CDATA[MimioTeach is quite different from other tested whiteboard models as it doesn&#8217;t actually have a whiteboard, but just a receiver that can be placed on any flat surface. It is meant to be used with normal inkboards, but really any surface should work. Touch recognition is done with a pen that makes quiet buzzing noise [...]]]></description>
			<content:encoded><![CDATA[<p>MimioTeach is quite different from other tested whiteboard models as it doesn&#8217;t actually have a whiteboard, but just a receiver that can be placed on any flat surface. It is meant to be used with normal inkboards, but really any surface should work. Touch recognition is done with a pen that makes quiet buzzing noise when it touches a surface. The receiver then listens to the buzz and translates it to mouse coordinates.</p>
<h3>Mimio and Linux</h3>
<p>MimioStudio and its drivers are needed on linux for MimioTeach to work. MimioStudio was the only software package that was not translated to Finnish.</p>
<p>There were quite problems with the MimioStudio installation package. The biggest issue is that the installer assumes too much about the environment which causes installation to fail in many cases. E.g. installation results are different if one starts the installation by clicking an icon on desktop vs. running the same file from command line. There are more details in the end of this article. The test results and problems have been reported to the developers also.</p>
<p>After getting the software installed MimioTeach works nicely. We mainly used it on LTSP fat clients that run all software locally on the client instead of using the server. On the first run Mimio was connected to normal locally installed workstation and the software made an automatic firmware updade after connecting the device with an usb cable. Update was automatic and worked without problems. Also the wireless receiver worked.</p>
<p>Using normal linux desktop with Mimio&#8217;s pen was easy and fun. Touching the surface with pen equals to pressing left mouse button. The pen has also two programmable buttons. Touch sensitivity and overall feeling were among the best in the test. There&#8217;s practically no latency which creates an illusion of using a real ink pen.</p>
<p>Dualhead support didn&#8217;t work as expected as calibration didn&#8217;t work if the screens had different resolutions. When both displays had the same resolution, also calibration worked. Also cloned displays worked.</p>
<h3>MimioStudio usage</h3>
<p>Overall impression of MimioStudio from normal user&#8217;s point of view was quite polished and stable. The software activates itself when Mimio hardware is connected. Alternatively product key can be entered when the program starts. In some cases registration didn&#8217;t always work correctly and the licensing information wasn&#8217;t saved. There&#8217;s no support for license management in LTSP fat client environment.</p>
<p>MimioStudio lacks in features compared to Smart Notebook or Promethean ActivInspire (e.g. handwriting and shape recognition is not supported), but works well in other uses. When using normal linux desktop Mimio takes the lead because of its accuracy, low latency and programmable buttons.</p>
<h3>Overview</h3>
<p>+ Feels good<br />
+ No need for complex hardware installations<br />
+ Wireless operation</p>
<p>- Ubuntu/debian packaging is incomplete and unstable. In some cases the software ends up being unusable after installation.<br />
- MimioStudio doesn&#8217;t support Finnish language</p>
<h3>Bugs</h3>
<p>Here&#8217;s a list of issues regarding MimioStudio&#8217;s linux compatibility from technical point-of-view.</p>
<ol>
<li>Creates .mimio directory in the home directory of the user who installs the software. The directory is owned by root which prevents the software from starting.</li>
<li>Mimio-mimiosys program assumes too much about the environment. This causes problems when installing in LTSP fat client chroot.</li>
<li>Package lists non-existent files under /var/tmp, but misses files that the package installs under /var/opt/mimio</li>
<li>Package gives global write permissions to file /var/opt/mimio/mimio-mimiosys that is run by /etc/xdg/autostart/mimio-mimiosys.desktop when users login to the system. This makes it possible for anyone on the system to execute files as other user when they log in.</li>
</ol>
<p>&nbsp;</p>
<p><iframe width="560" height="349" src="http://www.youtube.com/embed/C6gC9jAtjKY" frameborder="0" allowfullscreen></iframe></p>
<p>-Antti Sokero (Technical work by Juha Erkkilä and Veli-Matti Lintu)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.opinsys.fi/en/mimio-on-linux-test-results/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Smartboard on linux &#8211; test results</title>
		<link>http://www.opinsys.fi/en/smartboard-on-linux-test-results</link>
		<comments>http://www.opinsys.fi/en/smartboard-on-linux-test-results#comments</comments>
		<pubDate>Fri, 06 May 2011 13:36:45 +0000</pubDate>
		<dc:creator>Veli-Matti Lintu</dc:creator>
				<category><![CDATA[Developer's blog]]></category>
		<category><![CDATA[interactive whiteboards]]></category>
		<category><![CDATA[iwb]]></category>
		<category><![CDATA[smartboard]]></category>

		<guid isPermaLink="false">http://www.opinsys.fi/en/?p=1615</guid>
		<description><![CDATA[Smartboard participated in the project later than other with a short quick notice, so we couldn&#8217;t give it as much time as for others. Here at Opinsys we are most familiar with Smartboards as our customers have been using them for some time. Having a test whiteboard outside production systems gave us a chance to [...]]]></description>
			<content:encoded><![CDATA[<p>Smartboard participated in the project later than other with a short quick notice, so we couldn&#8217;t give it as much time as for others. Here at Opinsys we are most familiar with Smartboards as our customers have been using them for some time. Having a test whiteboard outside production systems gave us a chance to test the hardware and newest software throughly. SB680 uses resistive layer on the whiteboard to recognise touch, so it can be used with the accompanying pens or finger. The test hardware didn&#8217;t have loudspeakers, so those weren&#8217;t tested.</p>
<h2>Smartboard and linux</h2>
<p>SMART Technologies has been longer with linux than the other manufacturers and the software quality is noticeably better and it is more polished than others. Many of the earlier problems and missing features have been fixed with the newest update in March. There are now also deb packages available for Debian/Ubuntu that were missing before. The software is available both in Finnish and Swedish.</p>
<p>Software installation package includes device drivers and Notebook software. There were no other steps needed after installing to package to get it working in test systems. Smart software the only one of the tested that didn&#8217;t have issues when installing on normal workstation or in LTSP chroot image. Others have a lot to learn in this respect.</p>
<p>Calibration is activated either from menu or through icon in the panel. In dualhead configuration it worked nicely and the correct display is selected by pressing spacebar.</p>
<p>Using Smartboard is straightforward. The whiteboard resembles physically a ink drawing board and it comes with four pens with different colours. The software picks the colour by sensing which one of the pens is picked up. There is also a physical eraser. Beginners should have no trouble getting used to using different pens and to clean the board with the eraser. Smartboard software has also a nice feature when a pen is picked up when Notebook software is not running &#8211; the software takes a snapshot of the desktop and allows one to write directly on it. When pen is placed back, normal desktop resumes.</p>
<p>Smartboard&#8217;s latency is not the best of all tested boards and the cursor on the screen lags a bit behind the pen. When drawing it doesn&#8217;t loose track, so even if it takes half a second or a second to catch up, the drawing follows the pen or finger. Hardware resource usage was not a problem, but using flash objects and video files there was a slowdown.</p>
<p>Only technical problems with the Smartboard software were quite relaxed file permissions. They can cause problems in multiuser environments where users can edit files they shouldn&#8217;t. File permissions problems were quite minimal to some of the other packages, though. There are more details in the end of the article.</p>
<p>There were some random problems during testing, but we couldn&#8217;t reproduce them. At least once the whiteboard stopped responding &#8211; touch wasn&#8217;t recognised, calibration didn&#8217;t activate and onscreen keyboard couldn&#8217;t be opened. After rebooting the machine everything worked normally again, so the real cause of the problem remains a mystery.</p>
<p>The last version of Notebook software has support for handwriting recognition. Feature is still incomplete and many Finnish language words weren&#8217;t recognised correctly. There&#8217;s no Finnish selectable in the configuration, so we had to use German, which may have caused some of the problems. There&#8217;s also an annoying bug that places the last letter of the word on a different line. Promethean&#8217;s handwriting recognition did work better.</p>
<h3>Overview</h3>
<p>+ Linux support and packaging are polished<br />
+ Can be used with fingers without the pens<br />
+ Dualhead support works nicely</p>
<p>- Handwriting recognition has problems<br />
- Latency is sometimes annoyingly large</p>
<h3>Bugs</h3>
<p>Here are some of problems we noticed in the Smartboard software:</p>
<ol>
<li>Notebook&#8217;s handwriting recognition doesn&#8217;t work well in Finnish language. Last character is always placed on a separate line.</li>
<li>Creates some globally wriable files and directories. This is not a good practice in multiuser environments. User home directories or read-only global files should be used instead. Files: /etc/xdg/SMART Technologies.conf, /etc/xdg/SMART Technologies/SMART Notebook.conf, /opt/SMART Technologies/common/data, /opt/SMART Technologies/common/data/.mp.1.1.dat, /opt/SMART Technologies/common/data/.vp.1.2.dat</li>
<li>Installation packages create start files under /usr/share/applications, but the files are not listed in any of the smart-* packages</li>
<li>Binaries and directories have spaces in name</li>
</ol>
<p>&nbsp;</p>
<p><iframe width="560" height="349" src="http://www.youtube.com/embed/ojr8tjuiwcc" frameborder="0" allowfullscreen></iframe></p>
<p>-Antti Sokero (Technical work by Juha Erkkilä ja Veli-Matti Lintu)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.opinsys.fi/en/smartboard-on-linux-test-results/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Promethean on linux &#8211; test results</title>
		<link>http://www.opinsys.fi/en/promethean-on-linux-test-results</link>
		<comments>http://www.opinsys.fi/en/promethean-on-linux-test-results#comments</comments>
		<pubDate>Fri, 06 May 2011 13:35:59 +0000</pubDate>
		<dc:creator>Veli-Matti Lintu</dc:creator>
				<category><![CDATA[Developer's blog]]></category>
		<category><![CDATA[interactive whiteboards]]></category>
		<category><![CDATA[iwb]]></category>
		<category><![CDATA[promethean]]></category>

		<guid isPermaLink="false">http://www.opinsys.fi/en/?p=1617</guid>
		<description><![CDATA[Promethean is traditional wallmounted interactive whiteboard. The model in our tests was pen controlled Activboard ABV378S300. Touch is recognised when the pen touches the board physically. The tested whiteboard didn&#8217;t have loudspeakers, so we couldn&#8217;t test how well they work with linux, but in our understanding there are such models available. The whiteboard looks nice [...]]]></description>
			<content:encoded><![CDATA[<p>Promethean is traditional wallmounted interactive whiteboard. The model in our tests was pen controlled Activboard ABV378S300. Touch is recognised when the pen touches the board physically. The tested whiteboard didn&#8217;t have loudspeakers, so we couldn&#8217;t test how well they work with linux, but in our understanding there are such models available. The whiteboard looks nice and robust, the canvas feels also durable.</p>
<p>Promethean&#8217;s pen resembles a normal ballpoint pen that has a single button attached. When the pen is moved within a couple of millimeters from the whiteboard, it is possible to move mouse cursor without pressing the left button. Other tested models didn&#8217;t have this feature. Left mouse button is pressed when the pen touches the board. Tested model had two identical pens with it. In theory there is support for multitouch, but the tested whiteboard would need an update for it to work. So whether it works with linux couldn&#8217;t be tested this time.</p>
<h3>Promethean and Linux</h3>
<p>We had tested Promethean some time ago and linux support has improved noticeably. Software packages for Ubuntu are distributed through an apt repository which makes installation and updates easy. Other vendors don&#8217;t have their software available this way. For normal users this makes installation painfree. Software was translated in both Finnish and Swedish.</p>
<p>After installation Promethean ActivInspire works nicely and calibration can be started by pressing Promethean&#8217;s logo on the whiteboard with the pen. This makes it easy to use the whiteboard without having to use mouse or keyboard. Also dualhead support works and calibration is easy to use in dualhead setup.</p>
<p>Latency is sometimes noticeable, but overall speed is good. The most annoying feature is the random cuts in touch recognition. Solid lines look often dashed lines if one doesn&#8217;t really concentrate on pressing the pen properly. This might not be a big issue when one gets used to the whiteboard and pen. If one presses the pen wrongly it creates annoying sounds. We couldn&#8217;t figure out if the sensitivity can be adjusted.</p>
<p>Even if installation is painfree in single computer installation, centrally managed environments cause various problems. Promethean requires a custom kernel module to work. When installed in LTSP fat client chroot, the running kernel is different from the kernel used in the fat clients. This makes the kernel modules installation to fail.</p>
<p>Other technical problems are file permissions and security problems caused by too relaxed permissions. There are more details in the end of the article. We have reported the finding to the developers, but we haven&#8217;t yet heard back from them.</p>
<h3>Overview</h3>
<p>+ Pen can be used to move mouse cursor without simulating left mouse button at the same time<br />
+ Packaging and apt repository<br />
+ Easy to do tasks needing good precision<br />
+ Dualhead support works nicely</p>
<p>- Requires a closed source kernel module to work<br />
- Pen touch recognition cuts off randomly</p>
<h3>Bugs</h3>
<p>Here are technical problems found in the Promethean software:</p>
<ol>
<li><span style="font-size: small">Activdriver package gives normal users a chance to become root while the package is being installed</span></li>
<li>/etc/xdg/Promethean is globally writeable and license code and user settings are placed there. Some of the information should be put under user&#8217;s home directory instead and /etc should be write protected.</li>
<li>meta packages conflict each other, e.g. activ-meta-fi and activ-meta-sv cannot be installed at the same time, but still the language support can be used for multiple languages</li>
<li>Could the software be made to work without a kernel module? Installing the kernel module fails now it the running kernel is different from the target kernel. If kernel module is absolutely necessary, it should install always correctly and not assume that the running kernel is the kernel that it should use.</li>
</ol>
<p>&nbsp;</p>
<p><iframe width="560" height="349" src="http://www.youtube.com/embed/KUi54mGcqRc" frameborder="0" allowfullscreen></iframe></p>
<p>-Antti Sokero (Technical work by Juha Erkkilä and Veli-Matti Lintu)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.opinsys.fi/en/promethean-on-linux-test-results/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interactive whiteboards on linux &#8211; Test results</title>
		<link>http://www.opinsys.fi/en/interactive-whiteboards-on-linux-test-results</link>
		<comments>http://www.opinsys.fi/en/interactive-whiteboards-on-linux-test-results#comments</comments>
		<pubDate>Fri, 06 May 2011 13:29:15 +0000</pubDate>
		<dc:creator>Veli-Matti Lintu</dc:creator>
				<category><![CDATA[Developer's blog]]></category>
		<category><![CDATA[cleverboard]]></category>
		<category><![CDATA[interactive whiteboards]]></category>
		<category><![CDATA[iwb]]></category>
		<category><![CDATA[mimio]]></category>
		<category><![CDATA[smartboard]]></category>

		<guid isPermaLink="false">http://www.opinsys.fi/en/?p=1614</guid>
		<description><![CDATA[Our interactive whiteboard testing project is finally getting finished and it&#8217;s time to wrap up the findings. We have focused on testing the boards&#8217; technical usability on linux. Pedagogical usability and deeper analysis of features has not been done as part of this project as we need to first find out which whiteboard models actually [...]]]></description>
			<content:encoded><![CDATA[<p>Our interactive whiteboard testing project is finally getting finished and it&#8217;s time to wrap up the findings. We have focused on testing the boards&#8217; technical usability on linux. Pedagogical usability and deeper analysis of features has not been done as part of this project as we need to first find out which whiteboard models actually work with linux. We may do further testing and comparisons later, though.</p>
<p>We had five interactive whiteboard models in test lab:</p>
<ul>
<li><a href="promethean-on-linux-test-results">Promethean Activboard ABV378S300</a></li>
<li><a title="Mimio – toimivuus linuxilla" href="mimio-on-linux-test-results">MimioTeach + usb hub</a></li>
<li>Cleverboard 3 &#8211; Separate article will be done a bit later</li>
<li>Cleverboard Dual &#8211; Separate article will be done a bit later</li>
<li><a href="smartboard-on-linux-test-results">Smart Board SB680 (70″)</a></li>
</ul>
<div id="attachment_1627" class="wp-caption alignright" style="width: 183px"><a href="http://www.opinsys.fi/wp-content/uploads/2011/05/neukkari.jpg"><img class="size-thumbnail wp-image-1627 " src="http://www.opinsys.fi/wp-content/uploads/2011/05/neukkari-150x150.jpg" alt="" width="173" height="173" /></a><p class="wp-caption-text">Conference room used as test lab</p></div>
<p>The local vendors provided us the test hardware and not all models are the newest ones available. Most manufacturers use the same technology in different models, so the test results from one model often tell a lot about the whole product line. We cannot say anything for certain about not tested models, though.</p>
<p>In linux usability the best were Smartboard and Promethean. Linux support was quite polished and also the physical hardware were convincing. Both have reasonably well packaged software that have more advanced features than the rest. Dymo&#8217;s MimioTeach was also interesting and it shines in use cases where mobility is a requirement. Overall impression of Mimio suffers from unpolished software packaging and lack of Finnish translation. Cleverboards had quite a few problems mostly caused by unfinished linux software.</p>
<p>Tested features have been compiled in the following table and every whiteboard model has its own article.</p>
<div style="font-size: 0.8em;">
<table class="kehystetty">
<tbody>
<tr>
<td><strong>Ominaisuus</strong></td>
<td><strong>Cleverboard3</strong></td>
<td><strong>Cleverboard Dual</strong></td>
<td><strong>Mimio</strong></td>
<td><strong>Smart Board</strong></td>
<td><strong>Promethean</strong></td>
</tr>
<tr>
<td><strong>Hardware status / problem debugging from software</strong></td>
<td>No user friendly way. Possible to see from command line if pen movements are received in software.</td>
<td>Not possible.</td>
<td>Yes. Control panel has a list of connected devices. Wireless dongle is listed as a separate device.</td>
<td>Yes. Hardware information can be seen in control panel.</td>
<td>Yes. Hardware information can be seen in control panel.</td>
</tr>
<tr>
<td><strong>Firmware updates on linux</strong></td>
<td>No information</td>
<td>No information</td>
<td>Yes. Automatic when usb cable is connected.</td>
<td>Yes. Asks for update in notification bubble. Update was not carried through while testing.</td>
<td>No information</td>
</tr>
<tr>
<td><strong>Linux driver implementation</strong></td>
<td>No custom module.</td>
<td>No custom module.</td>
<td>No custom module.</td>
<td>No custom module.</td>
<td>Requires a custom kernel module. In some cases installation can cause problems.</td>
</tr>
<tr>
<td><strong>Dualhead support</strong></td>
<td>No</td>
<td>No</td>
<td>Yes, but partially broken. No clear requirements, in test setup both displays had to have same resolution for software to work.</td>
<td>Yes. Whiteboard display is selected with space key on keyboard.</td>
<td>Yes. Whiteboard display is selected by clicking mouse on the right display.</td>
</tr>
<tr>
<td><strong>Multitouch support</strong></td>
<td>No</td>
<td>No (only win 7)</td>
<td>No</td>
<td>Not with tested hardware. Recognises multiple fingers and averages them, no random jumping.</td>
<td>Didn&#8217;t work with tested hardware. ActivInspire seems to have support, but the test whiteboard didn&#8217;t have pens for testing. According to the vendor also a firmware update is needed.</td>
</tr>
<tr>
<td><strong>Software resource usage</strong></td>
<td>No problems</td>
<td>No problems</td>
<td>No problems. Notebook software took at most 60% of cpu time.</td>
<td>No problems. When adding multiple images and video latency grows.</td>
<td>No problems.</td>
</tr>
<tr>
<td><strong>Calibration</strong></td>
<td>Calibration is started from Lynx software menu. Pen doesn&#8217;t work if Lynx software is not running.</td>
<td>Calibration is started from panel&#8217;s notification area.</td>
<td>Really easy. Calibration is started by pressing a special physical key on the whiteboard.</td>
<td>Calibration is started from Smartboard icon in panel&#8217;s notification area.</td>
<td>Really easy. Upper left corner of the whiteboard has a physical button that starts the calibration. Also panel icon can be used to start the calibration.</td>
</tr>
<tr>
<td><strong>Response to pen movement</strong></td>
<td>Movement lags behind noticeably.</td>
<td>Movement lags behind slighty.</td>
<td>Excellent. Immediate response even with sudden movement.</td>
<td>Follows 0.5-1.0 seconds behind. Notebook software works better than linux desktop. Accuracy is good and the movement follows the pen exactly even when it lags behind.</td>
<td>Good. Movement lags behing only slightly.</td>
</tr>
<tr>
<td><strong>Touch sensitivity</strong></td>
<td>Good. Touch is recognized from the pen and sensitivy is good.</td>
<td>Unreliable. Misclicks are common and drawings are often clumsy. Usage needs some practice.</td>
<td>Good. Touch is recognized well. Quiet buzz from the pen gives additional feedback.</td>
<td>Good. Default settings work well.</td>
<td>Needs concentration. When drawing for longer periods touch is lost randomly and the drawing has &#8220;holes&#8221;. Clicks sensitivy is good.</td>
</tr>
<tr>
<td><strong>Finger touch recognition</strong></td>
<td>No, only pen.</td>
<td>Yes, meant to be used with finger, but works with any pointing device.</td>
<td>No, only pen.</td>
<td>Yes, works well.</td>
<td>No, only pen.</td>
</tr>
<tr>
<td><strong>Touch accuracy</strong></td>
<td>Poor. Calibration doesn&#8217;t work well with current software.</td>
<td>Average. Drawing a single dot can be challenging.</td>
<td>Good. Accuracy is worse near the receiver, but otherwise really good. Receiver positioning needs some thought.</td>
<td>Good. Some parts of the whiteboard recognize touch a few millimeters off.</td>
<td>Good. Within a few millimeters.</td>
</tr>
<tr>
<td><strong>Pen buttons</strong></td>
<td>Pen has multiple buttons, but no clear was available whether they are programmable.</td>
<td>No pen. Right mouse button can be emulated by keeping finger steady for 2.5 seconds.</td>
<td>Two programmable buttons. E.g. unix copy-paste with middle button is usable.</td>
<td>No buttons in pen, right mouse button can be used by pressing a physical button on the whiteboard.</td>
<td>One button that acts as right mouse button. No information whether that is programmable.</td>
</tr>
<tr>
<td><strong>Eraser</strong></td>
<td>No physical</td>
<td>No physical</td>
<td>No physical</td>
<td>Yes. Physical eraser looking plastic piece.</td>
<td>No physical.</td>
</tr>
<tr>
<td><strong>Usability of linux desktop and normal linux programs</strong></td>
<td>Poor. Inaccuracy of calibration makes desktop usage unusable.</td>
<td>Average. Usable after getting used to it. Not good for things needing good accuracy.</td>
<td>Very good. Two programmable buttons enable e.g. unix copy-paste. Accuracy and feeling good.</td>
<td>Good. Getting used to using right mouse button takes some time, but can be done front of the whiteboard.</td>
<td>Pretty good. Pen sensitivy and random loss of touch make it a bit annoying. Right mouse button in the pen. Onnistuu kohtalaisen hyvin.</td>
</tr>
<tr>
<td><strong>Moving mouse cursor without pressing the left mouse button</strong></td>
<td>No</td>
<td>No</td>
<td>No</td>
<td>No</td>
<td>Yes, keeping the pen within a couple of millimeters from the whiteboard equals moving the mouse. Touch the whiteboard equals pressing left button.</td>
</tr>
<tr>
<td><strong>License management in LTSP environment</strong></td>
<td>No documentation</td>
<td>No documentation</td>
<td>No documentation</td>
<td>No documentation</td>
<td>No documentation</td>
</tr>
</tbody>
</table>
</div>
<div id="attachment_1625" class="wp-caption alignright" style="width: 160px"><a href="http://www.opinsys.fi/wp-content/uploads/2011/05/IMAG0032.jpg"><img class="size-thumbnail wp-image-1625" src="http://www.opinsys.fi/wp-content/uploads/2011/05/IMAG0032-150x150.jpg" alt="" width="150" height="150" /></a><p class="wp-caption-text">MimioTeach receiver</p></div>
<p>Only basic features were tested. It should be noted that different whiteboard models from same manufacturer may support different features even with same software packages. It is not possible to name a single best model from the tested models as different use cases require different features. Smartboard has the best linux support at the moment and the software worked as it should. For centrally managed environments all software packages need development to enable central license management. Currently license files need to be found manually from the filesystem after debugging the software, but this is far for user friendly. LTSP systems are spreading in schools all over the world making this an issue in many places.</p>
<p>Firmware updates were done only when absolutely necessary &#8211; meaning that only Mimio was updated as it wouldn&#8217;t work otherwise. Smartboard suggested an update, but it wasn&#8217;t done. There were no big differences in resource usage between the different software packages. Adding video and flash elements caused load to go up suddenly on all of them. In normal usage there were no big problems with memory usage or performance.</p>
<p>Biggest noticeable difference between the different whiteboards were touch sensitivity and latency. Latency here means the delay that can be seen when drawing on the board &#8211; does the mouse follow the pen/finger immediately or does it take some time to react. Mimio had the smallest latency that had nearly immediate response even when drawing with fast movements. Sensitivity means how well the whiteboard senses touch. For example with Promethean all testers had trouble drawing solid lines because the line would have breaks with it as the whiteboard didn&#8217;t sense the touch all the time.</p>
<p>Promethean was the only one to allow moving the mouse without pressing the left mouse key at the same time. This can be done by keeping the pen within a couple millimeters from the whiteboard. Touching the whiteboard means pressing the mouse key. All the other models always simulate pressing mouse button when touch is recognized.</p>
<p>The table below summarises technical features. Various problems with Cleverboard Lynx 4.0 software may have caused some things to be reported incorrectly.</p>
<h3>Basic features of IWB software packages</h3>
<div style="font-size: 0.8em;">
<table class="kehystetty">
<tbody>
<tr>
<td></td>
<td><strong>Lynx 4.0 (Cleverboard)</strong></td>
<td><strong>MimioStudio</strong></td>
<td><strong>Smart Notebook</strong></td>
<td><strong>Promethean – ActivInspire</strong></td>
</tr>
<tr>
<td><strong>Version</strong></td>
<td>4.3.21</td>
<td>7.11</td>
<td>10.2</td>
<td>1.5.34144-2</td>
</tr>
<tr>
<td><strong>Website</strong></td>
<td>Lynx 4<br />
FAQ</td>
<td>Mimio Studio Linux</td>
<td>Smart Notebook</td>
<td>Promethean</td>
</tr>
<tr>
<td><strong>Package size</strong></td>
<td>Core: 152 MB<br />
All materials: 824 MB<br />
Cleverboard Dual with MultiTouch driver 4.63 MB</td>
<td>English only: 142 MB<br />
All languages: 369 MB</td>
<td>Not checked</td>
<td>141 MB (driver, material, software, etc.)</td>
</tr>
<tr>
<td><strong>Packaging format</strong></td>
<td>bin-package</td>
<td>deb-package</td>
<td>deb-package</td>
<td>deb-package</td>
</tr>
<tr>
<td><strong>Licenses (still need more information)</strong></td>
<td><strong>Closed source</strong>. Single user license can be installed on two computers, on workstation and laptop. Site license is available, but details are still fuzzy.</td>
<td><strong>Closed source</strong>. No restrictions on number of computers / users. Software is actived by connecting Mimio hardware or by entering product key.</td>
<td><strong>Closed source.</strong></td>
<td><strong>Closed source.</strong></td>
</tr>
<tr>
<td><strong>Supported linux distributions</strong></td>
<td>Linux x86 2.6.27 and greater</td>
<td>Fedora 13, 14<br />
openSUSE 11.3<br />
Ubuntu 10.04, 10.10</td>
<td>Debian / Ubuntu</p>
<p>RPM</td>
<td>Ubuntu 9.10<br />
Ubuntu 10.04<br />
Debian Lenny<br />
Debian Squeeze<br />
Linkat 3<br />
Linex Colegios 2010<br />
ALTLinux</td>
</tr>
<tr>
<td><strong>Language support</strong></td>
<td>Englisth, Swedish, Finnish</td>
<td>Englisth, Swedish</td>
<td>Englisth, Swedish, Finnish</td>
<td>Englisth, Swedish, Finnish</td>
</tr>
<tr>
<td><strong>Information available about differences between different OS versions</strong></td>
<td>No</td>
<td>No</td>
<td><a title="Manufacturer's information sheet" href="http://smarttech.com/us/Support/Browse+Support/Product+Index/Software+Products/SMART+Notebook/Version+10+for+Linux">Information sheet</a>. No information available whether document is up-to-date.</td>
<td>No</td>
</tr>
<tr>
<td><strong>Support for embedding images</strong></td>
<td>Yes</td>
<td>Yes</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<td><strong>Support for embedding audio files</strong></td>
<td></td>
<td>Yes</td>
<td>Yes</td>
<td></td>
</tr>
<tr>
<td><strong>Support for embedding video files</strong></td>
<td>Doesn&#8217;t work</td>
<td>Yes</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<td><strong>Support for embedding flash files</strong></td>
<td></td>
<td>Yes</td>
<td>Yes</td>
<td></td>
</tr>
<tr>
<td><strong>Curtain</strong></td>
<td>Yes</td>
<td>Yes (doesn&#8217;t work with metacity compositing)</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<td><strong>Spotlight</strong></td>
<td>Yes</td>
<td>Yes (doesn&#8217;t work with metacity compositing)</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<td><strong>Handwriting recognition</strong></td>
<td>No</td>
<td>No</td>
<td>Yes, but imcomplete. German must be selected as recognition language. Last letter is often placed on separate line which is quite annoying.</td>
<td>Yes, but bad whiteboard sensitity causes problems. Words are often recognised incorrectly. Scandinavian letters work ok.</td>
</tr>
<tr>
<td><strong>Shape recognition</strong></td>
<td>Yes. A bit slow, though.</td>
<td></td>
<td>Yes, either already drawn objects or while drawing.</td>
<td>Yes, works while drawing.</td>
</tr>
<tr>
<td><strong>Drawing on top of desktop</strong></td>
<td>Using a screenshot</td>
<td>Yes, takes a screenshot and turns it into a drawing layer.</td>
<td>Yes, activated by lifting a pen from the whiteboard</td>
<td>Requires metacity compositing support in gconf.</td>
</tr>
<tr>
<td><strong>onscreen keyboard</strong></td>
<td>Yes</td>
<td>Yes.</td>
<td>Yes. Physical whiteboard has a special button to activate.</td>
<td>Yes</td>
</tr>
</tbody>
</table>
</div>
<p>There are also lots of other features in the software packages, but we have been focusing only in the basic features. Pedagogical material, support services and community activity has not been evaluated. Most software share the same features and usage logic is the similar in all of them. All have software that allows users to create graphical presentation similar to PowerPoint and OpenOffice.org Impress. Presentations can be shown page by page in fullscreen mode. Most software are hybrids between presentation software and drawing programs.</p>
<p>Examples of basic features are also curtain and spotlight features that allow the presenter to show only certain parts of the material on screen.</p>
<p>All the software is proprietary and closed sourced, so only the manufacturer can support them. Manufacturers claim to support most linux distributions, but we could not test anything else besides Ubuntu in this project. Most drivers are also so new that we cannot say much about longterm support that is available for them.</p>
<p>-Antti Sokero</p>
]]></content:encoded>
			<wfw:commentRss>http://www.opinsys.fi/en/interactive-whiteboards-on-linux-test-results/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interactive whiteboards in linux test lab &#8211; do they really work?</title>
		<link>http://www.opinsys.fi/en/interactive-whiteboards-in-linux-test-lab-do-they-really-work</link>
		<comments>http://www.opinsys.fi/en/interactive-whiteboards-in-linux-test-lab-do-they-really-work#comments</comments>
		<pubDate>Wed, 20 Apr 2011 11:41:43 +0000</pubDate>
		<dc:creator>Antti Sokero</dc:creator>
				<category><![CDATA[Developer's blog]]></category>

		<guid isPermaLink="false">http://www.opinsys.fi/en/?p=1602</guid>
		<description><![CDATA[This article continues our article series on interactive whiteboards on linux: Interactive whiteboards and linux Interactive whiteboard software comparison Installing interactive whiteboard software on Ubuntu Last week our conference room was turned in to a test laboratory as we took a deep look at different interactive whiteboards and their linux support. The general feeling I [...]]]></description>
			<content:encoded><![CDATA[<p>This article continues our article series on interactive whiteboards on linux:</p>
<ul>
<li><a href="interactive-whiteboards-and-linux">Interactive whiteboards and linux</a></li>
<li><a href="interactive-whiteboard-software-comparison">Interactive whiteboard software comparison</a></li>
<li><a href="installing-interactive-whiteboard-software-on-ubuntu">Installing interactive whiteboard software on Ubuntu</a></li>
</ul>
<p>Last week our conference room was turned in to a test laboratory as we took a deep look at different interactive whiteboards and their linux support.</p>
<p>The general feeling I got was fairly positive. It seems that previously familiar products have seen a lot of development and also new rivals have appeared.  Almost all of the devices actually worked fairly easily with linux. Only exceptions have been the CleverBoards (CleverBoard3 and Dual) as neither of them showed any life after plugged in. We will see later if this could be fixed after software updates.</p>
<p>From the reviewed software packages, Smart Notebook seems to be the most mature. Also Promethean has put effort on their linux support. MimioStudio still has problems with their installation package as it won&#8217;t even start without tweaking. One common problem for all of these software packages has to do with the file and folder rights. On a single user Linux workstation they might not be that big issue, but in a large scale environment they easily open unwanted security holes and a possibility to do harm at least to the software itself. Hopefully they will be fixed in the future.</p>

<a href='http://www.opinsys.fi/en/interactive-whiteboards-in-linux-test-lab-do-they-really-work/cleverboard3-kuvalla' title='cleverboard3-kuvalla'><img width="150" height="150" src="http://www.opinsys.fi/en/files/2011/04/cleverboard3-kuvalla-150x150.jpg" class="attachment-thumbnail" alt="CleverBoard3" title="cleverboard3-kuvalla" /></a>
<a href='http://www.opinsys.fi/en/interactive-whiteboards-in-linux-test-lab-do-they-really-work/mimio-mimiostudio' title='mimio-MimioStudio'><img width="150" height="150" src="http://www.opinsys.fi/en/files/2011/04/mimio-MimioStudio-150x150.jpg" class="attachment-thumbnail" alt="MimioTeach and MimioStudio" title="mimio-MimioStudio" /></a>
<a href='http://www.opinsys.fi/en/interactive-whiteboards-in-linux-test-lab-do-they-really-work/promethean1' title='    Promethean ActivBoard '><img width="150" height="150" src="http://www.opinsys.fi/en/files/2011/04/promethean1-150x150.jpg" class="attachment-thumbnail" alt="Promethean ActivBoard" title="Promethean ActivBoard" /></a>
<a href='http://www.opinsys.fi/en/interactive-whiteboards-in-linux-test-lab-do-they-really-work/smart-kasattuna' title='Smartboard SB680'><img width="150" height="150" src="http://www.opinsys.fi/en/files/2011/04/Smart-kasattuna-150x150.jpg" class="attachment-thumbnail" alt="Smartboard SB680" title="Smartboard SB680" /></a>

<p>Next up we will gather up our notes and make a little review for each of these products and their linux compatibility. We already sent some feedback to the manufacturers based on our findings so let&#8217;s see how they react. All in all the situation looks good and probably in the near future we&#8217;ll have plug&#8217;n'play compatibility for each of these products on our own ltsp system.</p>
<p>- Antti Sokero</p>
]]></content:encoded>
			<wfw:commentRss>http://www.opinsys.fi/en/interactive-whiteboards-in-linux-test-lab-do-they-really-work/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

