<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-gb">
	<link rel="self" type="application/atom+xml" href="https://forums.obdev.at/app.php/feed/topic/8925" />

	<title>Objective Development Forums</title>
	
	<link href="https://forums.obdev.at/index.php" />
	<updated>2014-11-12T10:50:13+02:00</updated>

	<author><name><![CDATA[Objective Development Forums]]></name></author>
	<id>https://forums.obdev.at/app.php/feed/topic/8925</id>

		<entry>
		<author><name><![CDATA[katt]]></name></author>
		<updated>2014-11-12T10:50:13+02:00</updated>

		<published>2014-11-12T10:50:13+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=8925&amp;p=28658#p28658</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=8925&amp;p=28658#p28658"/>
		<title type="html"><![CDATA[Re: HIDKeys: issue key on both press and release]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=8925&amp;p=28658#p28658"><![CDATA[
This equals 88 bits. In the hypothical worst case all data is FF, which is practictally impossible. In that case 14 bits are &quot;stuffed&quot;, resulting in a total maximum critical packet lengths of 102 bits or 84 without CRC.<br /><br />_______________________<br />Unlike scam <a href="http://www.pass4-sure.net/820-421-dumps.html" class="postlink">820-421 exam</a> and itil <a href="http://en.wikipedia.org/wiki/Avaya" class="postlink">wikipedia</a> training program, our best <a href="http://www.stanford.edu/" class="postlink">Stanford University</a> and <a href="http://www.ibm.com/us/en/" class="postlink">IBM</a> online training courses provide you quick success in first try of <a href="https://www.lpi.org/" class="postlink">LPI</a><p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=20827">katt</a> — Wed Nov 12, 2014 10:50 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Ross_ValuSoft]]></name></author>
		<updated>2014-04-11T14:41:07+02:00</updated>

		<published>2014-04-11T14:41:07+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=8925&amp;p=26823#p26823</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=8925&amp;p=26823#p26823"/>
		<title type="html"><![CDATA[Re: HIDKeys: issue key on both press and release]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=8925&amp;p=26823#p26823"><![CDATA[
Hi Blarrg.<br /><br />Granddaughters have gone back to their parents and I have just tested your code... successfully. Thanks. <br /><br />Now I need to understand it and extend it so that multiple keys can be pressed and released without interfering with each other. Another day... another quest.<br /><br />Cheers,<br /><br />Ross (who has been answering to &quot;Pops&quot; for the last 48 hours  <img class="smilies" src="./../../../images/smilies/icon_lol.gif" alt=":lol:" title="Laughing" /> )<p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=7724">Ross_ValuSoft</a> — Fri Apr 11, 2014 2:41 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Ross_ValuSoft]]></name></author>
		<updated>2014-04-10T03:15:02+02:00</updated>

		<published>2014-04-10T03:15:02+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=8925&amp;p=26814#p26814</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=8925&amp;p=26814#p26814"/>
		<title type="html"><![CDATA[Re: HIDKeys: issue key on both press and release]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=8925&amp;p=26814#p26814"><![CDATA[
Many, many thanks.<br /><br />I will test it after my granddaughters (5 and 3) go home tomorrow. At the moment that are using 120% of our time and energies.  <img class="smilies" src="./../../../images/smilies/icon_lol.gif" alt=":lol:" title="Laughing" /> <br /><br />Cheers,<br /><br />Ross<p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=7724">Ross_ValuSoft</a> — Thu Apr 10, 2014 3:15 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[blargg]]></name></author>
		<updated>2014-04-10T02:27:59+02:00</updated>

		<published>2014-04-10T02:27:59+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=8925&amp;p=26813#p26813</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=8925&amp;p=26813#p26813"/>
		<title type="html"><![CDATA[Re: HIDKeys: issue key on both press and release]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=8925&amp;p=26813#p26813"><![CDATA[
Hi, I just downloaded HIDkeys, got it working on a USBasp stick (with fewer keys), and came up with this modification to generate distinct key events when you release the button. So you get 1-17 when pressed, 18-34 when released (in the keyReport array). So when I pressed a certain button, it types an A, and then when I release that button, it types an R.<br /><br /><div class="codebox"><p>Code: </p><pre><code>// main.c:68<br />#define NUM_KEYS    17*2<br /><br />// main.c:266<br />        if(lastKey != key &amp;&amp; !keyDidChange){<br />            if (lastKey &amp;&amp; lastKey &lt;= NUM_KEYS/2)<br />                lastKey += NUM_KEYS/2;<br />            else<br />                lastKey = key;<br />            keyDidChange = 1;<br />        }<br /><br />// main.c:200<br />static const uchar  keyReport&#91;NUM_KEYS + 1&#93;&#91;2&#93; PROGMEM = {<br />/* none */  {0, 0},                     /* no key pressed */<br />/*  1 */    {MOD_SHIFT_LEFT, KEY_A},<br />/*  2 */    {MOD_SHIFT_LEFT, KEY_B},<br />/*  3 */    {MOD_SHIFT_LEFT, KEY_C},<br />/*  4 */    {MOD_SHIFT_LEFT, KEY_D},<br />/*  5 */    {MOD_SHIFT_LEFT, KEY_E},<br />/*  6 */    {MOD_SHIFT_LEFT, KEY_F},<br />/*  7 */    {MOD_SHIFT_LEFT, KEY_G},<br />/*  8 */    {MOD_SHIFT_LEFT, KEY_H},<br />/*  9 */    {MOD_SHIFT_LEFT, KEY_I},<br />/* 10 */    {MOD_SHIFT_LEFT, KEY_J},<br />/* 11 */    {MOD_SHIFT_LEFT, KEY_K},<br />/* 12 */    {MOD_SHIFT_LEFT, KEY_L},<br />/* 13 */    {MOD_SHIFT_LEFT, KEY_M},<br />/* 14 */    {MOD_SHIFT_LEFT, KEY_N},<br />/* 15 */    {MOD_SHIFT_LEFT, KEY_O},<br />/* 16 */    {MOD_SHIFT_LEFT, KEY_P},<br />/* 17 */    {MOD_SHIFT_LEFT, KEY_Q},<br />/* 18 */    {MOD_SHIFT_LEFT, KEY_R}, // 1-34 release gives these<br />/* 19 */    {MOD_SHIFT_LEFT, KEY_S},<br />/* 20 */    {MOD_SHIFT_LEFT, KEY_T},<br />/* 21 */    {MOD_SHIFT_LEFT, KEY_U},<br />/* 22 */    {MOD_SHIFT_LEFT, KEY_V},<br />/* 23 */    {MOD_SHIFT_LEFT, KEY_W},<br />/* 24 */    {MOD_SHIFT_LEFT, KEY_X},<br />/* 25 */    {MOD_SHIFT_LEFT, KEY_Y},<br />/* 26 */    {MOD_SHIFT_LEFT, KEY_Z},<br />/* 27 */    {MOD_SHIFT_LEFT, KEY_1},<br />/* 28 */    {MOD_SHIFT_LEFT, KEY_2},<br />/* 29 */    {MOD_SHIFT_LEFT, KEY_3},<br />/* 30 */    {MOD_SHIFT_LEFT, KEY_4},<br />/* 31 */    {MOD_SHIFT_LEFT, KEY_5},<br />/* 32 */    {MOD_SHIFT_LEFT, KEY_6},<br />/* 33 */    {MOD_SHIFT_LEFT, KEY_7},<br />/* 34 */    {MOD_SHIFT_LEFT, KEY_8},<br />};<br /></code></pre></div><p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=20076">blargg</a> — Thu Apr 10, 2014 2:27 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Ross_ValuSoft]]></name></author>
		<updated>2014-04-08T22:09:03+02:00</updated>

		<published>2014-04-08T22:09:03+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=8925&amp;p=26808#p26808</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=8925&amp;p=26808#p26808"/>
		<title type="html"><![CDATA[Re: HIDKeys: issue key on both press and release]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=8925&amp;p=26808#p26808"><![CDATA[
No one?<p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=7724">Ross_ValuSoft</a> — Tue Apr 08, 2014 10:09 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Ross_ValuSoft]]></name></author>
		<updated>2014-04-03T06:56:10+02:00</updated>

		<published>2014-04-03T06:56:10+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=8925&amp;p=26764#p26764</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=8925&amp;p=26764#p26764"/>
		<title type="html"><![CDATA[HIDKeys: issue key on both press and release]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=8925&amp;p=26764#p26764"><![CDATA[
Hi everyone.<br /><br />Has anyone succeeded in being able to issue a key on both a switch press and its release? I have tried a few ways but been unsuccessful. A clue to get me in the correct direction would be appreciated.<br /><br />Thanks,<br /><br />Ross<p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=7724">Ross_ValuSoft</a> — Thu Apr 03, 2014 6:56 am</p><hr />
]]></content>
	</entry>
	</feed>
