<!--
  Copyright 2014 IBM Corp.

  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at

  http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
-->

<script type="text/x-red" data-template-name="makeymakey">
    <div class="form-row">
        <label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
        <input type="text" id="node-input-name" placeholder="Name">
    </div>
</script>

<script type="text/x-red" data-help-name="makeymakey">
    <p>Provides "keyboard" like input from a MakeyMakey device.</p>
    <p><b>Note:</b> this uses the hidstream npm module that by default only
    supports the basic keyboard keys and NOT the mouse inputs, fn keys,
    keypad keys, cursor keys etc. This means that the extra mouse emulation jumpers
    won't work.</p>
    <p>The MakeyMakey can of course be re-programmed to re-assign the keys.</p>
</script>

<script type="text/javascript">
    RED.nodes.registerType('makeymakey',{
        category: 'advanced-input',
        color:"#f6e686",
        defaults: {
            name: {value:""},
            vid: {value:"0x1b4f",required:true},
            pid: {value:"0x2b75",required:true},
            cr: {value:false}
        },
        inputs:0,
        outputs:1,
        icon: "usb.png",
        label: function() {
            return this.name||"makeymakey";
        },
        labelStyle: function() {
            return this.name?"node_label_italic":"";
        }
    });
</script>