@@ -63,12 +63,12 @@ public Example(String fqn, IPath path) throws Exception {
63
63
64
64
private static int getNumADCUsedInExample (String myFQN2 ) {
65
65
switch (myFQN2 ) {
66
- case "Example /04.Communication/VirtualColorMixer" :
67
- case "Example /10.StarterKit_BasicKit/p04_ColorMixingLamp" :
66
+ case "Examples /04.Communication/VirtualColorMixer" :
67
+ case "Examples /10.StarterKit_BasicKit/p04_ColorMixingLamp" :
68
68
return 3 ;
69
- case "Example /06.Sensors/ADXL3xx" :
69
+ case "Examples /06.Sensors/ADXL3xx" :
70
70
return 4 ;
71
- case "Example /08.Strings/StringComparisonOperators" :
71
+ case "Examples /08.Strings/StringComparisonOperators" :
72
72
return 6 ;
73
73
default :
74
74
return 0 ;
@@ -98,102 +98,102 @@ private static LinkedList<String> examplesUsingMidi() {
98
98
99
99
private static LinkedList <String > examplesUsingFlightSim () {
100
100
LinkedList <String > ret = new LinkedList <>();
101
- ret .add ("Example /Teensy/USB_FlightSim/BlinkTransponder" );
102
- ret .add ("Example /Teensy/USB_FlightSim/FrameRateDisplay" );
103
- ret .add ("Example /Teensy/USB_FlightSim/NavFrequency" );
104
- ret .add ("Example /Teensy/USB_FlightSim/ThrottleServo" );
101
+ ret .add ("Examples /Teensy/USB_FlightSim/BlinkTransponder" );
102
+ ret .add ("Examples /Teensy/USB_FlightSim/FrameRateDisplay" );
103
+ ret .add ("Examples /Teensy/USB_FlightSim/NavFrequency" );
104
+ ret .add ("Examples /Teensy/USB_FlightSim/ThrottleServo" );
105
105
return ret ;
106
106
}
107
107
108
108
private static LinkedList <String > examplesUsingSerial1 () {
109
109
LinkedList <String > ret = new LinkedList <>();
110
- ret .add ("Example /04.Communication/MultiSerial" );
111
- ret .add ("Example /04.Communication/SerialPassthrough" );
112
- ret .add ("Example /Teensy/Serial/EchoBoth" );
110
+ ret .add ("Examples /04.Communication/MultiSerial" );
111
+ ret .add ("Examples /04.Communication/SerialPassthrough" );
112
+ ret .add ("Examples /Teensy/Serial/EchoBoth" );
113
113
return ret ;
114
114
}
115
115
116
116
private static LinkedList <String > examplesUsingSerialUSB () {
117
117
LinkedList <String > ret = new LinkedList <>();
118
- ret .add ("Example /11.ArduinoISP/ArduinoISP" );
118
+ ret .add ("Examples /11.ArduinoISP/ArduinoISP" );
119
119
return ret ;
120
120
}
121
121
122
122
private static LinkedList <String > examplesUsingDirectMode () {
123
123
LinkedList <String > ret = new LinkedList <>();
124
- ret .add ("Example /10.StarterKit_BasicKit/p13_TouchSensorLamp" );
124
+ ret .add ("Examples /10.StarterKit_BasicKit/p13_TouchSensorLamp" );
125
125
return ret ;
126
126
}
127
127
128
128
private static LinkedList <String > examplesUsingKeyboard () {
129
129
LinkedList <String > ret = new LinkedList <>();
130
- ret .add ("Example /09.USB/Keyboard/KeyboardLogout" );
131
- ret .add ("Example /09.USB/Keyboard/KeyboardMessage" );
132
- ret .add ("Example /09.USB/Keyboard/KeyboardReprogram" );
133
- ret .add ("Example /09.USB/Keyboard/KeyboardSerial" );
134
- ret .add ("Example /09.USB/Mouse/ButtonMouseControl" );
135
- ret .add ("Example /09.USB/Mouse/JoystickMouseControl" );
136
- ret .add ("Example /09.USB/KeyboardAndMouseControl" );
130
+ ret .add ("Examples /09.USB/Keyboard/KeyboardLogout" );
131
+ ret .add ("Examples /09.USB/Keyboard/KeyboardMessage" );
132
+ ret .add ("Examples /09.USB/Keyboard/KeyboardReprogram" );
133
+ ret .add ("Examples /09.USB/Keyboard/KeyboardSerial" );
134
+ ret .add ("Examples /09.USB/Mouse/ButtonMouseControl" );
135
+ ret .add ("Examples /09.USB/Mouse/JoystickMouseControl" );
136
+ ret .add ("Examples /09.USB/KeyboardAndMouseControl" );
137
137
return ret ;
138
138
}
139
139
140
140
private static LinkedList <String > examplesUsingSerial () {
141
141
LinkedList <String > ret = new LinkedList <>();
142
- ret .add ("Example /01.Basics/AnalogReadSerial" );
143
- ret .add ("Example /01.Basics/DigitalReadSerial" );
144
- ret .add ("Example /01.Basics/ReadAnalogVoltage" );
145
- ret .add ("Example /02.Digital/DigitalInputPullup" );
146
- ret .add ("Example /02.Digital/StateChangeDetection" );
147
- ret .add ("Example /02.Digital/tonePitchFollower" );
148
- ret .add ("Example /03.Analog/AnalogInOutSerial" );
149
- ret .add ("Example /03.Analog/Smoothing" );
150
- ret .add ("Example /04.Communication/ASCIITable" );
151
- ret .add ("Example /04.Communication/Dimmer" );
152
- ret .add ("Example /04.Communication/Graph" );
153
- ret .add ("Example /04.Communication/Midi" );
154
- ret .add ("Example /04.Communication/PhysicalPixel" );
155
- ret .add ("Example /04.Communication/ReadASCIIString" );
156
- ret .add ("Example /04.Communication/SerialCallResponse" );
157
- ret .add ("Example /04.Communication/SerialCallResponseASCII" );
158
- ret .add ("Example /04.Communication/SerialEvent" );
159
- ret .add ("Example /04.Communication/VirtualColorMixer" );
160
- ret .add ("Example /05.Control/IfStatementConditional" );
161
- ret .add ("Example /05.Control/switchCase" );
162
- ret .add ("Example /05.Control/switchCase2" );
163
- ret .add ("Example /06.Sensors/ADXL3xx" );
164
- ret .add ("Example /06.Sensors/Knock" );
165
- ret .add ("Example /06.Sensors/Memsic2125" );
166
- ret .add ("Example /06.Sensors/Ping" );
167
- ret .add ("Example /08.Strings/CharacterAnalysis" );
168
- ret .add ("Example /08.Strings/StringAdditionOperator" );
169
- ret .add ("Example /08.Strings/StringAppendOperator" );
170
- ret .add ("Example /08.Strings/StringCaseChanges" );
171
- ret .add ("Example /08.Strings/StringCharacters" );
172
- ret .add ("Example /08.Strings/StringComparisonOperators" );
173
- ret .add ("Example /08.Strings/StringConstructors" );
174
- ret .add ("Example /08.Strings/StringIndexOf" );
175
- ret .add ("Example /08.Strings/StringLength" );
176
- ret .add ("Example /08.Strings/StringLengthTrim" );
177
- ret .add ("Example /08.Strings/StringReplace" );
178
- ret .add ("Example /08.Strings/StringStartsWithEndsWith" );
179
- ret .add ("Example /08.Strings/StringSubstring" );
180
- ret .add ("Example /08.Strings/StringToInt" );
181
- ret .add ("Example /10.StarterKit_BasicKit/p03_LoveOMeter" );
182
- ret .add ("Example /10.StarterKit_BasicKit/p04_ColorMixingLamp" );
183
- ret .add ("Example /10.StarterKit_BasicKit/p05_ServoMoodIndicator" );
184
- ret .add ("Example /10.StarterKit_BasicKit/p07_Keyboard" );
185
- ret .add ("Example /10.StarterKit_BasicKit/p12_KnockLock" );
186
- ret .add ("Example /10.StarterKit_BasicKit/p13_TouchSensorLamp" );
187
- ret .add ("Example /10.StarterKit_BasicKit/p14_TweakTheArduinoLogo" );
188
- ret .add ("Example /11.ArduinoISP/ArduinoISP" );
189
- ret .add ("Example /Teensy/Tutorial3/HelloSerialMonitor" );
190
- ret .add ("Example /Teensy/Tutorial3/Pushbutton" );
191
- ret .add ("Example /Teensy/Tutorial3/PushbuttonPullup" );
192
- ret .add ("Example /Teensy/Tutorial3/PushbuttonRGBcolor" );
193
- ret .add ("Example /Teensy/Tutorial4/AnalogInput" );
194
- ret .add ("Example /Teensy/Tutorial4/TemperatureNumberOnly" );
195
- ret .add ("Example /Teensy/Tutorial4/TemperatureScaled" );
196
- ret .add ("Example /Teensy/Tutorial4/TemperatureScaledMulti" );
142
+ ret .add ("Examples /01.Basics/AnalogReadSerial" );
143
+ ret .add ("Examples /01.Basics/DigitalReadSerial" );
144
+ ret .add ("Examples /01.Basics/ReadAnalogVoltage" );
145
+ ret .add ("Examples /02.Digital/DigitalInputPullup" );
146
+ ret .add ("Examples /02.Digital/StateChangeDetection" );
147
+ ret .add ("Examples /02.Digital/tonePitchFollower" );
148
+ ret .add ("Examples /03.Analog/AnalogInOutSerial" );
149
+ ret .add ("Examples /03.Analog/Smoothing" );
150
+ ret .add ("Examples /04.Communication/ASCIITable" );
151
+ ret .add ("Examples /04.Communication/Dimmer" );
152
+ ret .add ("Examples /04.Communication/Graph" );
153
+ ret .add ("Examples /04.Communication/Midi" );
154
+ ret .add ("Examples /04.Communication/PhysicalPixel" );
155
+ ret .add ("Examples /04.Communication/ReadASCIIString" );
156
+ ret .add ("Examples /04.Communication/SerialCallResponse" );
157
+ ret .add ("Examples /04.Communication/SerialCallResponseASCII" );
158
+ ret .add ("Examples /04.Communication/SerialEvent" );
159
+ ret .add ("Examples /04.Communication/VirtualColorMixer" );
160
+ ret .add ("Examples /05.Control/IfStatementConditional" );
161
+ ret .add ("Examples /05.Control/switchCase" );
162
+ ret .add ("Examples /05.Control/switchCase2" );
163
+ ret .add ("Examples /06.Sensors/ADXL3xx" );
164
+ ret .add ("Examples /06.Sensors/Knock" );
165
+ ret .add ("Examples /06.Sensors/Memsic2125" );
166
+ ret .add ("Examples /06.Sensors/Ping" );
167
+ ret .add ("Examples /08.Strings/CharacterAnalysis" );
168
+ ret .add ("Examples /08.Strings/StringAdditionOperator" );
169
+ ret .add ("Examples /08.Strings/StringAppendOperator" );
170
+ ret .add ("Examples /08.Strings/StringCaseChanges" );
171
+ ret .add ("Examples /08.Strings/StringCharacters" );
172
+ ret .add ("Examples /08.Strings/StringComparisonOperators" );
173
+ ret .add ("Examples /08.Strings/StringConstructors" );
174
+ ret .add ("Examples /08.Strings/StringIndexOf" );
175
+ ret .add ("Examples /08.Strings/StringLength" );
176
+ ret .add ("Examples /08.Strings/StringLengthTrim" );
177
+ ret .add ("Examples /08.Strings/StringReplace" );
178
+ ret .add ("Examples /08.Strings/StringStartsWithEndsWith" );
179
+ ret .add ("Examples /08.Strings/StringSubstring" );
180
+ ret .add ("Examples /08.Strings/StringToInt" );
181
+ ret .add ("Examples /10.StarterKit_BasicKit/p03_LoveOMeter" );
182
+ ret .add ("Examples /10.StarterKit_BasicKit/p04_ColorMixingLamp" );
183
+ ret .add ("Examples /10.StarterKit_BasicKit/p05_ServoMoodIndicator" );
184
+ ret .add ("Examples /10.StarterKit_BasicKit/p07_Keyboard" );
185
+ ret .add ("Examples /10.StarterKit_BasicKit/p12_KnockLock" );
186
+ ret .add ("Examples /10.StarterKit_BasicKit/p13_TouchSensorLamp" );
187
+ ret .add ("Examples /10.StarterKit_BasicKit/p14_TweakTheArduinoLogo" );
188
+ ret .add ("Examples /11.ArduinoISP/ArduinoISP" );
189
+ ret .add ("Examples /Teensy/Tutorial3/HelloSerialMonitor" );
190
+ ret .add ("Examples /Teensy/Tutorial3/Pushbutton" );
191
+ ret .add ("Examples /Teensy/Tutorial3/PushbuttonPullup" );
192
+ ret .add ("Examples /Teensy/Tutorial3/PushbuttonRGBcolor" );
193
+ ret .add ("Examples /Teensy/Tutorial4/AnalogInput" );
194
+ ret .add ("Examples /Teensy/Tutorial4/TemperatureNumberOnly" );
195
+ ret .add ("Examples /Teensy/Tutorial4/TemperatureScaled" );
196
+ ret .add ("Examples /Teensy/Tutorial4/TemperatureScaledMulti" );
197
197
198
198
199
199
ret .add ("Library/Managed/LiquidCrystal/SerialDisplay" );
@@ -202,38 +202,38 @@ private static LinkedList<String> examplesUsingSerial() {
202
202
203
203
private static LinkedList <String > examplesUsingJoyStick () {
204
204
LinkedList <String > ret = new LinkedList <>();
205
- ret .add ("Example /Teensy/USB_Joystick/Basic" );
206
- ret .add ("Example /Teensy/USB_Joystick/Buttons" );
207
- ret .add ("Example /Teensy/USB_Joystick/Complete" );
205
+ ret .add ("Examples /Teensy/USB_Joystick/Basic" );
206
+ ret .add ("Examples /Teensy/USB_Joystick/Buttons" );
207
+ ret .add ("Examples /Teensy/USB_Joystick/Complete" );
208
208
return ret ;
209
209
}
210
210
211
211
private static LinkedList <String > examplesUsingMouse () {
212
212
LinkedList <String > ret = new LinkedList <>();
213
- ret .add ("Example /Teensy/USB_Joystick/Basic" );
214
- ret .add ("Example /Teensy/USB_Joystick/Buttons" );
215
- ret .add ("Example /Teensy/USB_Joystick/Complete" );
216
- ret .add ("Example /Teensy/USB_RawHID/Basic" );
213
+ ret .add ("Examples /Teensy/USB_Joystick/Basic" );
214
+ ret .add ("Examples /Teensy/USB_Joystick/Buttons" );
215
+ ret .add ("Examples /Teensy/USB_Joystick/Complete" );
216
+ ret .add ("Examples /Teensy/USB_RawHID/Basic" );
217
217
return ret ;
218
218
}
219
219
220
220
private static LinkedList <String > examplesUsingTone () {
221
221
LinkedList <String > ret = new LinkedList <>();
222
- ret .add ("Example /10.StarterKit_BasicKit/p06_LightTheremin" );
223
- ret .add ("Example /02.Digital/toneMultiple" );
224
- ret .add ("Example /02.Digital/toneMelody" );
225
- ret .add ("Example /02.Digital/toneKeyboard" );
226
- ret .add ("Example /02.Digital/tonePitchFollower" );
227
- ret .add ("Example /10.StarterKit_BasicKit/p07_Keyboard" );
222
+ ret .add ("Examples /10.StarterKit_BasicKit/p06_LightTheremin" );
223
+ ret .add ("Examples /02.Digital/toneMultiple" );
224
+ ret .add ("Examples /02.Digital/toneMelody" );
225
+ ret .add ("Examples /02.Digital/toneKeyboard" );
226
+ ret .add ("Examples /02.Digital/tonePitchFollower" );
227
+ ret .add ("Examples /10.StarterKit_BasicKit/p07_Keyboard" );
228
228
return ret ;
229
229
}
230
230
231
231
private static LinkedList <String > examplesUsingWire1 () {
232
232
LinkedList <String > ret = new LinkedList <>();
233
- ret .add ("Example /Teensy/USB_Joystick/Basic" );
234
- ret .add ("Example /Teensy/USB_Joystick/Buttons" );
235
- ret .add ("Example /Teensy/USB_Joystick/Complete" );
236
- ret .add ("Example /Teensy/USB_RawHID/Basic" );
233
+ ret .add ("Examples /Teensy/USB_Joystick/Basic" );
234
+ ret .add ("Examples /Teensy/USB_Joystick/Buttons" );
235
+ ret .add ("Examples /Teensy/USB_Joystick/Complete" );
236
+ ret .add ("Examples /Teensy/USB_RawHID/Basic" );
237
237
ret .add ("Library/Managed/Adafruit_BME280_Library/advancedsettings" );
238
238
ret .add ("Library/Managed/AS3935MI/AS3935MI_LightningDetector_otherInterfaces" );
239
239
return ret ;
0 commit comments