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.
2 parents c57e04e + 97a8f01 commit 31dc302Copy full SHA for 31dc302
src/cppCode.ts
@@ -18,6 +18,10 @@ const psychicTemplate = `
18
//files: {{fileCount}}
19
//memory: {{fileSize}}
20
21
+#include <Arduino.h>
22
+#include <PsychicHttp.h>
23
+#include <PsychicHttpsServer.h>
24
+
25
{{#each sources}}
26
const uint8_t data{{this.index}}[{{this.length}}] = { {{this.bytes}} };
27
{{#if ../isEtag}}
@@ -58,6 +62,9 @@ const asyncTemplate = `
58
62
59
63
60
64
65
66
+#include <ESPAsyncWebServer.h>
67
61
68
69
const uint8_t data{{this.index}}[{{this.length}}] PROGMEM = { {{this.bytes}} };
70
0 commit comments