Browse Source

Add missing objects to GUI

dds
PaulStoffregen 10 years ago
parent
commit
5acc26c51d
1 changed files with 67 additions and 0 deletions
  1. +67
    -0
      gui/list.html

+ 67
- 0
gui/list.html View File

@@ -24,6 +24,28 @@
</script>


<script type="text/javascript">
RED.nodes.registerType('AnalogInputI2Sslave',{
shortName: "i2ss",
inputs:0,
outputs:2,
category: 'input-function',
color:"#E6E0F8",
icon: "arrow-in.png"
});
</script>
<script type="text/x-red" data-help-name="AnalogInputI2Sslave">
<p>Stereo audio input from the audio shield or other I2S device</p>
<p><b>TODO</b> Add object documetation here</b>.</p>
</script>
<script type="text/x-red" data-template-name="AnalogInputI2Sslave">
<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/javascript">
RED.nodes.registerType('AnalogInputADC',{
@@ -69,6 +91,29 @@



<script type="text/javascript">
RED.nodes.registerType('AnalogOutputI2Sslave',{
shortName: "i2ss",
inputs:2,
outputs:0,
category: 'output-function',
color:"#E6E0F8",
icon: "arrow-in.png"
});
</script>
<script type="text/x-red" data-help-name="AnalogOutputI2Sslave">
<p><b>TODO</b> Add object documetation here</b>.</p>
</script>
<script type="text/x-red" data-template-name="AnalogOutputI2Sslave">
<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/javascript">
RED.nodes.registerType('AnalogOutputAnalog',{
shortName: "dac",
@@ -482,6 +527,28 @@



<script type="text/javascript">
RED.nodes.registerType('AudioAnalyzeToneDetect',{
shortName: "tone",
inputs:1,
outputs:0,
category: 'analyze-function',
color:"#E6E0F8",
icon: "arrow-in.png"
});
</script>
<script type="text/x-red" data-help-name="AudioAnalyzeToneDetect">
<p><b>TODO</b> Add object documetation here</b>.</p>
</script>
<script type="text/x-red" data-template-name="AudioAnalyzeToneDetect">
<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/javascript">
RED.nodes.registerType('AudioAnalyzePrint',{
shortName: "print",

Loading…
Cancel
Save