diff --git a/arduino-core/src/processing/app/SketchData.java b/arduino-core/src/processing/app/SketchData.java index cef17433e..6d53ada0b 100644 --- a/arduino-core/src/processing/app/SketchData.java +++ b/arduino-core/src/processing/app/SketchData.java @@ -11,7 +11,7 @@ import java.util.*; public class SketchData { public static final List SKETCH_EXTENSIONS = Arrays.asList("ino", "pde"); - public static final List OTHER_ALLOWED_EXTENSIONS = Arrays.asList("c", "cpp", "h", "s"); + public static final List OTHER_ALLOWED_EXTENSIONS = Arrays.asList("c", "cpp", "h", "hh", "hpp", "s"); public static final List EXTENSIONS = new LinkedList(FluentIterable.from(SKETCH_EXTENSIONS).append(OTHER_ALLOWED_EXTENSIONS).toList()); /** main pde file for this sketch. */