Skip to content

Commit 06ae601

Browse files
author
jantje
committed
more libs tagged on hardware/usability
1 parent c5a00af commit 06ae601

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

io.sloeber.tests/src/io/sloeber/core/Libraries.java

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
import io.sloeber.providers.Adafruit;
99
import io.sloeber.providers.Arduino;
10+
import io.sloeber.providers.ESP32;
1011
import io.sloeber.providers.Teensy;
1112

1213
@SuppressWarnings("nls")
@@ -94,6 +95,10 @@ public static boolean doNotUseThisLib(String libName) {
9495
"ArduinoESPAT",
9596
//ESPAsyncE131.h:23:25: fatal error: ESPAsyncUDP.h: No such file or directory
9697
"ESP_Async_E1.31",
98+
//doesn't work in arduino ide
99+
"AIOModule",
100+
//ned to fix issue
101+
"Blynk_For_Chinese",
97102
};
98103
return Arrays.asList(skipLibs).contains(libName);
99104
}
@@ -166,12 +171,13 @@ private static String getRequiredBoard(String libName) {
166171
"AzureIoTHub", "AzureIoTProtocol_HTTP", "AzureIoTProtocol_MQTT", "Adafruit_AM_radio_library" });
167172
runLibOnBoard.put("mkrfox1200", new String[] { "Arduino_SigFox_for_MKRFox1200" });
168173
runLibOnBoard.put("due",
169-
new String[] { "Audio", "AutoAnalogAudio", "dcf77_xtal", "due_can", "DueFlashStorage", "DueTimer" });
174+
new String[] { "Audio", "AutoAnalogAudio", "dcf77_xtal", "due_can", "DueFlashStorage", "DueTimer"});
170175
runLibOnBoard.put("espresso_lite_v2", new String[] { "ESPert", "ESPectro" });
171-
runLibOnBoard.put("esp32", new String[] { "EasyBuzzer_Beep_leonardo", "ESPUI","Basecamp" });
176+
runLibOnBoard.put(ESP32.esp32ID, new String[] { "EasyBuzzer_Beep_leonardo", "ESPUI","Basecamp" });
172177
runLibOnBoard.put(Teensy.Teensy3_6_ID, new String[] { "ACAN","ACAN2515","ACAN2517" });
173178

174179
runLibOnBoard.put(Adafruit.metroM4ID, new String[] { "Adafruit_QSPI" ,"Adafruit_mp3"});
180+
runLibOnBoard.put(Arduino.ethernetID, new String[] { "Blynk_For_Chinese" });
175181

176182

177183
for (Entry<String, String[]> curEntry : runLibOnBoard.entrySet()) {

0 commit comments

Comments
 (0)