We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9dd4255 commit 2a8c063Copy full SHA for 2a8c063
app/src/processing/app/debug/Compiler.java
@@ -536,6 +536,18 @@ public void message(String s) {
536
}
537
538
539
+ if (s.contains("undefined reference to `SPIClass::begin()'")
540
+ && s.contains("libraries/Robot_Control")) {
541
+ String error = _("Please import the SPI library from the Sketch > Import Library menu.");
542
+ exception = new RunnerException(error);
543
+ }
544
+
545
+ if (s.contains("undefined reference to `Wire'")
546
547
+ String error = _("Please import the Wire library from the Sketch > Import Library menu.");
548
549
550
551
System.err.print(s);
552
553
0 commit comments