Skip to content
Prev Previous commit
Fixed default .ino for the missings empty lines.
  • Loading branch information
nbourre committed Oct 25, 2022
commit 4f2010e665b1166f593145492f9bd4aedddf4da1
6 changes: 5 additions & 1 deletion arduino-ide-extension/src/node/sketches-service-impl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,14 @@ import { join } from 'path';
const RecentSketches = 'recent-sketches.json';
const DefaultIno = `void setup() {
// put your setup code here, to run once:

}

void loop() {
// put your main code here, to run repeatedly:
}`;

}
`;

@injectable()
export class SketchesServiceImpl
Expand Down