Skip to content

Added an optional user modifiable default sketch file when creating a new project. #1559

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Oct 26, 2022
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