diff --git a/embedded/.prettierrc b/embedded/.prettierrc
index e00e0f86..895c8c30 100644
--- a/embedded/.prettierrc
+++ b/embedded/.prettierrc
@@ -3,8 +3,7 @@
"tabWidth": 4,
"useTabs": false,
"semi": true,
- "singleQuote": true,
- "jsxSingleQuote": false,
+ "singleQuote": false,
"trailingComma": "es5",
"bracketSpacing": true,
"bracketSameLine": false,
diff --git a/embedded/config/buildassets.js b/embedded/config/buildassets.js
index 0cd58626..8d6a6f6a 100644
--- a/embedded/config/buildassets.js
+++ b/embedded/config/buildassets.js
@@ -1,80 +1,80 @@
-let path = require('path');
-const fs = require('fs');
-const { createReadStream, createWriteStream } = require('fs');
-const { createGzip } = require('zlib');
-const chalk = require('chalk');
+let path = require("path");
+const fs = require("fs");
+const { createReadStream, createWriteStream } = require("fs");
+const { createGzip } = require("zlib");
+const chalk = require("chalk");
-let distPath = path.normalize(__dirname + '/../dist/');
-let srcPath = path.normalize(__dirname + '/../assets/');
+let distPath = path.normalize(__dirname + "/../dist/");
+let srcPath = path.normalize(__dirname + "/../assets/");
let headerPath = path.normalize(
- __dirname + '/../../esp3d/src/modules/http/favicon.h'
+ __dirname + "/../../esp3d/src/modules/http/favicon.h"
);
const convertToC = (filepath) => {
- console.log(chalk.yellow('Converting bin to text file'));
+ console.log(chalk.yellow("Converting bin to text file"));
//Cleaning files
- if (fs.existsSync(distPath + 'out.tmp')) fs.rmSync(distPath + 'out.tmp');
- if (fs.existsSync(distPath + 'favicon.h'))
- fs.rmSync(distPath + 'favicon.h');
+ if (fs.existsSync(distPath + "out.tmp")) fs.rmSync(distPath + "out.tmp");
+ if (fs.existsSync(distPath + "favicon.h"))
+ fs.rmSync(distPath + "favicon.h");
- const data = new Uint8Array(fs.readFileSync(filepath, { flag: 'r' }));
- console.log('data size is ', data.length);
- let out = '#define favicon_size ' + data.length + '\n';
- out += 'const unsigned char favicon[' + data.length + '] PROGMEM = {\n ';
+ const data = new Uint8Array(fs.readFileSync(filepath, { flag: "r" }));
+ console.log("data size is ", data.length);
+ let out = "#define favicon_size " + data.length + "\n";
+ out += "const unsigned char favicon[" + data.length + "] PROGMEM = {\n ";
let nb = 0;
data.forEach((byte, index) => {
out +=
- ' 0x' +
- (byte.toString(16).length == 1 ? '0' : '') +
+ " 0x" +
+ (byte.toString(16).length == 1 ? "0" : "") +
byte.toString(16);
- if (index < data.length - 1) out += ',';
+ if (index < data.length - 1) out += ",";
if (nb == 15) {
- out += '\n ';
+ out += "\n ";
nb = 0;
} else {
nb++;
}
});
- out += '\n};\n';
- fs.writeFileSync(distPath + 'out.tmp', out);
+ out += "\n};\n";
+ fs.writeFileSync(distPath + "out.tmp", out);
//Check conversion
- if (fs.existsSync(distPath + 'out.tmp')) {
- console.log(chalk.green('[ok]'));
+ if (fs.existsSync(distPath + "out.tmp")) {
+ console.log(chalk.green("[ok]"));
} else {
- console.log(chalk.red('[error]Conversion failed'));
+ console.log(chalk.red("[error]Conversion failed"));
return;
}
//Format header file
- console.log(chalk.yellow('Building header'));
+ console.log(chalk.yellow("Building header"));
fs.writeFileSync(
- distPath + 'favicon.h',
- fs.readFileSync(srcPath + 'header.txt')
+ distPath + "favicon.h",
+ fs.readFileSync(srcPath + "header.txt")
);
- let bin2cfile = fs.readFileSync(distPath + 'out.tmp').toString();
- fs.appendFileSync(distPath + 'favicon.h', bin2cfile);
+ let bin2cfile = fs.readFileSync(distPath + "out.tmp").toString();
+ fs.appendFileSync(distPath + "favicon.h", bin2cfile);
fs.appendFileSync(
- distPath + 'favicon.h',
- fs.readFileSync(srcPath + 'footer.txt')
+ distPath + "favicon.h",
+ fs.readFileSync(srcPath + "footer.txt")
);
//Check format result
- if (fs.existsSync(distPath + 'favicon.h')) {
- console.log(chalk.green('[ok]'));
+ if (fs.existsSync(distPath + "favicon.h")) {
+ console.log(chalk.green("[ok]"));
} else {
- console.log(chalk.red('[error]Conversion failed'));
+ console.log(chalk.red("[error]Conversion failed"));
return;
}
//Move file to src
- console.log(chalk.yellow('Overwriting header in sources'));
- fs.writeFileSync(headerPath, fs.readFileSync(distPath + 'favicon.h'));
+ console.log(chalk.yellow("Overwriting header in sources"));
+ fs.writeFileSync(headerPath, fs.readFileSync(distPath + "favicon.h"));
if (fs.existsSync(headerPath)) {
- console.log(chalk.green('[ok]'));
+ console.log(chalk.green("[ok]"));
} else {
- console.log(chalk.red('[error]Overwriting failed'));
+ console.log(chalk.red("[error]Overwriting failed"));
return;
}
};
@@ -85,10 +85,10 @@ const compressFile = (filePath, targetPath) => {
stream
.pipe(createGzip(targetPath))
.pipe(createWriteStream(targetPath))
- .on('finish', () => {
+ .on("finish", () => {
console.log(`Successfully compressed at ${targetPath}`);
convertToC(targetPath);
});
};
-compressFile(srcPath + 'favicon.ico', distPath + 'favicon.ico.gz');
+compressFile(srcPath + "favicon.ico", distPath + "favicon.ico.gz");
diff --git a/embedded/config/buildheader.js b/embedded/config/buildheader.js
index d52152fb..2e3f8730 100644
--- a/embedded/config/buildheader.js
+++ b/embedded/config/buildheader.js
@@ -1,76 +1,76 @@
-let path = require('path');
-const fs = require('fs');
-const child_process = require('child_process');
-const chalk = require('chalk');
+let path = require("path");
+const fs = require("fs");
+const child_process = require("child_process");
+const chalk = require("chalk");
-let distPath = path.normalize(__dirname + '/../dist/');
-let srcPath = path.normalize(__dirname + '/../src/');
+let distPath = path.normalize(__dirname + "/../dist/");
+let srcPath = path.normalize(__dirname + "/../src/");
let headerPath = path.normalize(
- __dirname + '/../../esp3d/src/modules/http/embedded.h'
+ __dirname + "/../../esp3d/src/modules/http/embedded.h"
);
-console.log(chalk.yellow('Converting bin to text file'));
+console.log(chalk.yellow("Converting bin to text file"));
//Cleaning files
-if (fs.existsSync(distPath + 'out.tmp')) fs.rmSync(distPath + 'out.tmp');
-if (fs.existsSync(distPath + 'embedded.h')) fs.rmSync(distPath + 'embedded.h');
+if (fs.existsSync(distPath + "out.tmp")) fs.rmSync(distPath + "out.tmp");
+if (fs.existsSync(distPath + "embedded.h")) fs.rmSync(distPath + "embedded.h");
const data = new Uint8Array(
- fs.readFileSync(distPath + 'index.html.gz', { flag: 'r' })
+ fs.readFileSync(distPath + "index.html.gz", { flag: "r" })
);
-console.log('data size is ', data.length);
-let out = '#define tool_html_gz_size ' + data.length + '\n';
-out += 'const unsigned char tool_html_gz[' + data.length + '] PROGMEM = {\n ';
+console.log("data size is ", data.length);
+let out = "#define tool_html_gz_size " + data.length + "\n";
+out += "const unsigned char tool_html_gz[" + data.length + "] PROGMEM = {\n ";
let nb = 0;
data.forEach((byte, index) => {
out +=
- ' 0x' + (byte.toString(16).length == 1 ? '0' : '') + byte.toString(16);
- if (index < data.length - 1) out += ',';
+ " 0x" + (byte.toString(16).length == 1 ? "0" : "") + byte.toString(16);
+ if (index < data.length - 1) out += ",";
if (nb == 15) {
- out += '\n ';
+ out += "\n ";
nb = 0;
} else {
nb++;
}
});
-out += '\n};\n';
-fs.writeFileSync(distPath + 'out.tmp', out);
+out += "\n};\n";
+fs.writeFileSync(distPath + "out.tmp", out);
//Check conversion
-if (fs.existsSync(distPath + 'out.tmp')) {
- console.log(chalk.green('[ok]'));
+if (fs.existsSync(distPath + "out.tmp")) {
+ console.log(chalk.green("[ok]"));
} else {
- console.log(chalk.red('[error]Conversion failed'));
+ console.log(chalk.red("[error]Conversion failed"));
return;
}
//Format header file
-console.log(chalk.yellow('Building header'));
+console.log(chalk.yellow("Building header"));
fs.writeFileSync(
- distPath + 'embedded.h',
- fs.readFileSync(srcPath + 'header.txt')
+ distPath + "embedded.h",
+ fs.readFileSync(srcPath + "header.txt")
);
-let bin2cfile = fs.readFileSync(distPath + 'out.tmp').toString();
-fs.appendFileSync(distPath + 'embedded.h', bin2cfile);
+let bin2cfile = fs.readFileSync(distPath + "out.tmp").toString();
+fs.appendFileSync(distPath + "embedded.h", bin2cfile);
fs.appendFileSync(
- distPath + 'embedded.h',
- fs.readFileSync(srcPath + 'footer.txt')
+ distPath + "embedded.h",
+ fs.readFileSync(srcPath + "footer.txt")
);
//Check format result
-if (fs.existsSync(distPath + 'embedded.h')) {
- console.log(chalk.green('[ok]'));
+if (fs.existsSync(distPath + "embedded.h")) {
+ console.log(chalk.green("[ok]"));
} else {
- console.log(chalk.red('[error]Conversion failed'));
+ console.log(chalk.red("[error]Conversion failed"));
return;
}
//Move file to src
-console.log(chalk.yellow('Overwriting header in sources'));
-fs.writeFileSync(headerPath, fs.readFileSync(distPath + 'embedded.h'));
+console.log(chalk.yellow("Overwriting header in sources"));
+fs.writeFileSync(headerPath, fs.readFileSync(distPath + "embedded.h"));
if (fs.existsSync(headerPath)) {
- console.log(chalk.green('[ok]'));
+ console.log(chalk.green("[ok]"));
} else {
- console.log(chalk.red('[error]Overwriting failed'));
+ console.log(chalk.red("[error]Overwriting failed"));
return;
}
diff --git a/embedded/config/pack_favicon.js b/embedded/config/pack_favicon.js
index eb5879f5..04d04327 100644
--- a/embedded/config/pack_favicon.js
+++ b/embedded/config/pack_favicon.js
@@ -1,7 +1,7 @@
-const path = require('path');
-const { createReadStream, createWriteStream } = require('fs');
-const { createGzip } = require('zlib');
-const faviconPath = path.normalize(__dirname + '/../assets/favicon.ico');
+const path = require("path");
+const { createReadStream, createWriteStream } = require("fs");
+const { createGzip } = require("zlib");
+const faviconPath = path.normalize(__dirname + "/../assets/favicon.ico");
// Create a gzip function for reusable purpose
const compressFile = (filePath) => {
@@ -9,7 +9,7 @@ const compressFile = (filePath) => {
stream
.pipe(createGzip())
.pipe(createWriteStream(`${filePath}.gz`))
- .on('finish', () =>
+ .on("finish", () =>
console.log(`Successfully compressed the file at ${filePath}`)
);
};
diff --git a/embedded/config/server.js b/embedded/config/server.js
index d6d3278f..104c1b7a 100644
--- a/embedded/config/server.js
+++ b/embedded/config/server.js
@@ -1,7 +1,7 @@
-const express = require('express');
-const chalk = require('chalk');
-let path = require('path');
-const fs = require('fs');
+const express = require("express");
+const chalk = require("chalk");
+let path = require("path");
+const fs = require("fs");
const port = 8080;
/*
* Web Server for development
@@ -10,19 +10,19 @@ const port = 8080;
const wscolor = chalk.cyan;
const expresscolor = chalk.green;
const commandcolor = chalk.white;
-const WebSocket = require('ws');
+const WebSocket = require("ws");
let currentID = 0;
const app = express();
-const fileUpload = require('express-fileupload');
-let serverpath = path.normalize(__dirname + '/../server/public/');
-let sdpath = path.normalize(__dirname + '/../server/sd/');
+const fileUpload = require("express-fileupload");
+let serverpath = path.normalize(__dirname + "/../server/public/");
+let sdpath = path.normalize(__dirname + "/../server/sd/");
-let WebSocketServer = require('ws').Server,
+let WebSocketServer = require("ws").Server,
wss = new WebSocketServer({
port: 81,
handleProtocols: function (protocol) {
- console.log('protocol received from client ' + protocol);
- return 'webui-v3';
+ console.log("protocol received from client " + protocol);
+ return "webui-v3";
return null;
},
});
@@ -45,442 +45,442 @@ function SendBinary(text) {
});
}
-app.post('/login', function (req, res) {
- res.send('');
+app.post("/login", function (req, res) {
+ res.send("");
return;
});
-app.get('/config', function (req, res) {
+app.get("/config", function (req, res) {
res.send(
- 'chip id: 56398\nCPU Freq: 240 Mhz
' +
- 'CPU Temp: 58.3 C
' +
- 'free mem: 212.36 KB
' +
- 'SDK: v3.2.3-14-gd3e562907
' +
- 'flash size: 4.00 MB
' +
- 'size for update: 1.87 MB
' +
- 'FS type: LittleFS
' +
- 'FS usage: 104.00 KB/192.00 KB
' +
- 'baud: 115200
' +
- 'sleep mode: none
' +
- 'wifi: ON
' +
- 'hostname: esp3d
' +
- 'HTTP port: 80
' +
- 'Telnet port: 23
' +
- 'WebDav port: 8383
' +
- 'sta: ON
' +
- 'mac: 80:7D:3A:C4:4E:DC
' +
- 'SSID: WIFI_OFFICE_A2G
' +
- 'signal: 100 %
' +
- 'phy mode: 11n
' +
- 'channel: 11
' +
- 'ip mode: dhcp
' +
- 'ip: 192.168.1.61
' +
- 'gw: 192.168.1.1
' +
- 'msk: 255.255.255.0
' +
- 'DNS: 192.168.1.1
' +
- 'ap: OFF
' +
- 'mac: 80:7D:3A:C4:4E:DD
' +
- 'serial: ON
' +
- 'notification: OFF
' +
- 'Target Fw: repetier
' +
- 'FW ver: 3.0.0.a91
' +
- 'FW arch: ESP32 '
+ "chip id: 56398\nCPU Freq: 240 Mhz
" +
+ "CPU Temp: 58.3 C
" +
+ "free mem: 212.36 KB
" +
+ "SDK: v3.2.3-14-gd3e562907
" +
+ "flash size: 4.00 MB
" +
+ "size for update: 1.87 MB
" +
+ "FS type: LittleFS
" +
+ "FS usage: 104.00 KB/192.00 KB
" +
+ "baud: 115200
" +
+ "sleep mode: none
" +
+ "wifi: ON
" +
+ "hostname: esp3d
" +
+ "HTTP port: 80
" +
+ "Telnet port: 23
" +
+ "WebDav port: 8383
" +
+ "sta: ON
" +
+ "mac: 80:7D:3A:C4:4E:DC
" +
+ "SSID: WIFI_OFFICE_A2G
" +
+ "signal: 100 %
" +
+ "phy mode: 11n
" +
+ "channel: 11
" +
+ "ip mode: dhcp
" +
+ "ip: 192.168.1.61
" +
+ "gw: 192.168.1.1
" +
+ "msk: 255.255.255.0
" +
+ "DNS: 192.168.1.1
" +
+ "ap: OFF
" +
+ "mac: 80:7D:3A:C4:4E:DD
" +
+ "serial: ON
" +
+ "notification: OFF
" +
+ "Target Fw: repetier
" +
+ "FW ver: 3.0.0.a91
" +
+ "FW arch: ESP32 "
);
return;
});
-app.get('/command', function (req, res) {
+app.get("/command", function (req, res) {
console.log(commandcolor(`[server]/command params: ${req.query.cmd}`));
let url = req.query.cmd;
- if (url.startsWith('[ESP800]json')) {
+ if (url.startsWith("[ESP800]json")) {
res.json({
- cmd: '800',
- status: 'ok',
+ cmd: "800",
+ status: "ok",
data: {
- FWVersion: '3.0.0.a28',
+ FWVersion: "3.0.0.a28",
FWTarget: 40,
- SDConnection: 'none',
- Authentication: 'Disabled',
- WebCommunication: 'Synchronous',
- WebSocketIP: 'localhost',
- WebSocketPort: '81',
- Hostname: 'esp3d',
- WiFiMode: 'STA',
- WebUpdate: 'Enabled',
- FlashFileSystem: 'LittleFs',
- HostPath: '/',
- Time: 'none',
- Cam_ID: '4',
- Cam_name: 'ESP32 Cam',
+ SDConnection: "none",
+ Authentication: "Disabled",
+ WebCommunication: "Synchronous",
+ WebSocketIP: "localhost",
+ WebSocketPort: "81",
+ Hostname: "esp3d",
+ WiFiMode: "STA",
+ WebUpdate: "Enabled",
+ FlashFileSystem: "LittleFs",
+ HostPath: "/",
+ Time: "none",
+ Cam_ID: "4",
+ Cam_name: "ESP32 Cam",
},
});
return;
}
- if (url.indexOf('ESP111') != -1) {
- res.send('192.168.1.111');
+ if (url.indexOf("ESP111") != -1) {
+ res.send("192.168.1.111");
return;
}
- if (url.indexOf('ESP420') != -1) {
+ if (url.indexOf("ESP420") != -1) {
res.json({
Status: [
- { id: 'chip id', value: '38078' },
- { id: 'CPU Freq', value: '240 Mhz' },
- { id: 'CPU Temp', value: '50.6 C' },
- { id: 'free mem', value: '217.50 KB' },
- { id: 'SDK', value: 'v3.3.1-61-g367c3c09c' },
- { id: 'flash size', value: '4.00 MB' },
- { id: 'size for update', value: '1.87 MB' },
- { id: 'FS type', value: 'SPIFFS' },
- { id: 'FS usage', value: '39.95 KB/169.38 KB' },
- { id: 'baud', value: '115200' },
- { id: 'sleep mode', value: 'none' },
- { id: 'wifi', value: 'ON' },
- { id: 'hostname', value: 'esp3d' },
- { id: 'HTTP port', value: '80' },
- { id: 'Telnet port', value: '23' },
- { id: 'Ftp ports', value: '21, 20, 55600' },
- { id: 'sta', value: 'ON' },
- { id: 'mac', value: '30:AE:A4:21:BE:94' },
- { id: 'SSID', value: 'WIFI_OFFICE_B2G' },
- { id: 'signal', value: '100 %' },
- { id: 'phy mode', value: '11n' },
- { id: 'channel', value: '2' },
- { id: 'ip mode', value: 'dhcp' },
- { id: 'ip', value: '192.168.1.43' },
- { id: 'gw', value: '192.168.1.1' },
- { id: 'msk', value: '255.255.255.0' },
- { id: 'DNS', value: '192.168.1.1' },
- { id: 'ap', value: 'OFF' },
- { id: 'mac', value: '30:AE:A4:21:BE:95' },
- { id: 'serial', value: 'ON' },
- { id: 'notification', value: 'OFF' },
- { id: 'FW ver', value: '3.0.0.a28' },
- { id: 'FW arch', value: 'ESP32' },
+ { id: "chip id", value: "38078" },
+ { id: "CPU Freq", value: "240 Mhz" },
+ { id: "CPU Temp", value: "50.6 C" },
+ { id: "free mem", value: "217.50 KB" },
+ { id: "SDK", value: "v3.3.1-61-g367c3c09c" },
+ { id: "flash size", value: "4.00 MB" },
+ { id: "size for update", value: "1.87 MB" },
+ { id: "FS type", value: "SPIFFS" },
+ { id: "FS usage", value: "39.95 KB/169.38 KB" },
+ { id: "baud", value: "115200" },
+ { id: "sleep mode", value: "none" },
+ { id: "wifi", value: "ON" },
+ { id: "hostname", value: "esp3d" },
+ { id: "HTTP port", value: "80" },
+ { id: "Telnet port", value: "23" },
+ { id: "Ftp ports", value: "21, 20, 55600" },
+ { id: "sta", value: "ON" },
+ { id: "mac", value: "30:AE:A4:21:BE:94" },
+ { id: "SSID", value: "WIFI_OFFICE_B2G" },
+ { id: "signal", value: "100 %" },
+ { id: "phy mode", value: "11n" },
+ { id: "channel", value: "2" },
+ { id: "ip mode", value: "dhcp" },
+ { id: "ip", value: "192.168.1.43" },
+ { id: "gw", value: "192.168.1.1" },
+ { id: "msk", value: "255.255.255.0" },
+ { id: "DNS", value: "192.168.1.1" },
+ { id: "ap", value: "OFF" },
+ { id: "mac", value: "30:AE:A4:21:BE:95" },
+ { id: "serial", value: "ON" },
+ { id: "notification", value: "OFF" },
+ { id: "FW ver", value: "3.0.0.a28" },
+ { id: "FW arch", value: "ESP32" },
],
});
return;
}
- if (url.indexOf('ESP410') != -1) {
+ if (url.indexOf("ESP410") != -1) {
res.json({
AP_LIST: [
{
- SSID: 'HP-Setup>71-M277 LaserJet',
- SIGNAL: '92',
- IS_PROTECTED: '0',
+ SSID: "HP-Setup>71-M277 LaserJet",
+ SIGNAL: "92",
+ IS_PROTECTED: "0",
},
- { SSID: 'WIFI_OFFICE_B2G', SIGNAL: '88', IS_PROTECTED: '1' },
- { SSID: 'NETGEAR70', SIGNAL: '66', IS_PROTECTED: '1' },
- { SSID: 'ZenFone6'luc', SIGNAL: '48', IS_PROTECTED: '1' },
- { SSID: 'Livebox-EF01', SIGNAL: '20', IS_PROTECTED: '1' },
- { SSID: 'orange', SIGNAL: '20', IS_PROTECTED: '0' },
+ { SSID: "WIFI_OFFICE_B2G", SIGNAL: "88", IS_PROTECTED: "1" },
+ { SSID: "NETGEAR70", SIGNAL: "66", IS_PROTECTED: "1" },
+ { SSID: "ZenFone6'luc", SIGNAL: "48", IS_PROTECTED: "1" },
+ { SSID: "Livebox-EF01", SIGNAL: "20", IS_PROTECTED: "1" },
+ { SSID: "orange", SIGNAL: "20", IS_PROTECTED: "0" },
],
});
return;
}
- if (url.indexOf('ESP400') != -1) {
+ if (url.indexOf("ESP400") != -1) {
res.json({
Settings: [
{
- F: 'network/network',
- P: '130',
- T: 'S',
- V: 'esp3d',
- H: 'hostname',
- S: '32',
- M: '1',
+ F: "network/network",
+ P: "130",
+ T: "S",
+ V: "esp3d",
+ H: "hostname",
+ S: "32",
+ M: "1",
},
{
- F: 'network/network',
- P: '0',
- T: 'B',
- V: '1',
- H: 'radio mode',
- O: [{ none: '0' }, { sta: '1' }, { ap: '2' }],
+ F: "network/network",
+ P: "0",
+ T: "B",
+ V: "1",
+ H: "radio mode",
+ O: [{ none: "0" }, { sta: "1" }, { ap: "2" }],
},
{
- F: 'network/sta',
- P: '1',
- T: 'S',
- V: 'WIFI_OFFICE_B2G',
- S: '32',
- H: 'SSID',
- M: '1',
+ F: "network/sta",
+ P: "1",
+ T: "S",
+ V: "WIFI_OFFICE_B2G",
+ S: "32",
+ H: "SSID",
+ M: "1",
},
{
- F: 'network/sta',
- P: '34',
- T: 'S',
- N: '1',
- V: '********',
- S: '64',
- H: 'pwd',
- M: '8',
+ F: "network/sta",
+ P: "34",
+ T: "S",
+ N: "1",
+ V: "********",
+ S: "64",
+ H: "pwd",
+ M: "8",
},
{
- F: 'network/sta',
- P: '99',
- T: 'B',
- V: '1',
- H: 'ip mode',
- O: [{ dhcp: '1' }, { static: '0' }],
+ F: "network/sta",
+ P: "99",
+ T: "B",
+ V: "1",
+ H: "ip mode",
+ O: [{ dhcp: "1" }, { static: "0" }],
},
{
- F: 'network/sta',
- P: '100',
- T: 'A',
- V: '192.168.0.1',
- H: 'ip',
+ F: "network/sta",
+ P: "100",
+ T: "A",
+ V: "192.168.0.1",
+ H: "ip",
},
{
- F: 'network/sta',
- P: '108',
- T: 'A',
- V: '192.168.0.1',
- H: 'gw',
+ F: "network/sta",
+ P: "108",
+ T: "A",
+ V: "192.168.0.1",
+ H: "gw",
},
{
- F: 'network/sta',
- P: '104',
- T: 'A',
- V: '255.255.255.0',
- H: 'msk',
+ F: "network/sta",
+ P: "104",
+ T: "A",
+ V: "255.255.255.0",
+ H: "msk",
},
{
- F: 'network/ap',
- P: '218',
- T: 'S',
- V: 'ESP3D',
- S: '32',
- H: 'SSID',
- M: '1',
+ F: "network/ap",
+ P: "218",
+ T: "S",
+ V: "ESP3D",
+ S: "32",
+ H: "SSID",
+ M: "1",
},
{
- F: 'network/ap',
- P: '251',
- T: 'S',
- N: '1',
- V: '********',
- S: '64',
- H: 'pwd',
- M: '8',
+ F: "network/ap",
+ P: "251",
+ T: "S",
+ N: "1",
+ V: "********",
+ S: "64",
+ H: "pwd",
+ M: "8",
},
{
- F: 'network/ap',
- P: '316',
- T: 'A',
- V: '192.168.0.1',
- H: 'ip',
+ F: "network/ap",
+ P: "316",
+ T: "A",
+ V: "192.168.0.1",
+ H: "ip",
},
{
- F: 'network/ap',
- P: '118',
- T: 'B',
- V: '11',
- H: 'channel',
+ F: "network/ap",
+ P: "118",
+ T: "B",
+ V: "11",
+ H: "channel",
O: [
- { 1: '1' },
- { 2: '2' },
- { 3: '3' },
- { 4: '4' },
- { 5: '5' },
- { 6: '6' },
- { 7: '7' },
- { 8: '8' },
- { 9: '9' },
- { 10: '10' },
- { 11: '11' },
- { 12: '12' },
- { 13: '13' },
- { 14: '14' },
+ { 1: "1" },
+ { 2: "2" },
+ { 3: "3" },
+ { 4: "4" },
+ { 5: "5" },
+ { 6: "6" },
+ { 7: "7" },
+ { 8: "8" },
+ { 9: "9" },
+ { 10: "10" },
+ { 11: "11" },
+ { 12: "12" },
+ { 13: "13" },
+ { 14: "14" },
],
},
{
- F: 'service/http',
- P: '328',
- T: 'B',
- V: '1',
- H: 'enable',
- O: [{ no: '0' }, { yes: '1' }],
+ F: "service/http",
+ P: "328",
+ T: "B",
+ V: "1",
+ H: "enable",
+ O: [{ no: "0" }, { yes: "1" }],
},
{
- F: 'service/http',
- P: '121',
- T: 'I',
- V: '80',
- H: 'port',
- S: '65001',
- M: '1',
+ F: "service/http",
+ P: "121",
+ T: "I",
+ V: "80",
+ H: "port",
+ S: "65001",
+ M: "1",
},
{
- F: 'service/telnetp',
- P: '329',
- T: 'B',
- V: '1',
- H: 'enable',
- O: [{ no: '0' }, { yes: '1' }],
+ F: "service/telnetp",
+ P: "329",
+ T: "B",
+ V: "1",
+ H: "enable",
+ O: [{ no: "0" }, { yes: "1" }],
},
{
- F: 'service/telnetp',
- P: '125',
- T: 'I',
- V: '23',
- H: 'port',
- S: '65001',
- M: '1',
+ F: "service/telnetp",
+ P: "125",
+ T: "I",
+ V: "23",
+ H: "port",
+ S: "65001",
+ M: "1",
},
{
- F: 'service/ftp',
- P: '1208',
- T: 'B',
- V: '1',
- H: 'enable',
- O: [{ no: '0' }, { yes: '1' }],
+ F: "service/ftp",
+ P: "1208",
+ T: "B",
+ V: "1",
+ H: "enable",
+ O: [{ no: "0" }, { yes: "1" }],
},
{
- F: 'service/ftp',
- P: '1196',
- T: 'I',
- V: '21',
- H: 'control port',
- S: '65001',
- M: '1',
+ F: "service/ftp",
+ P: "1196",
+ T: "I",
+ V: "21",
+ H: "control port",
+ S: "65001",
+ M: "1",
},
{
- F: 'service/ftp',
- P: '1200',
- T: 'I',
- V: '20',
- H: 'active port',
- S: '65001',
- M: '1',
+ F: "service/ftp",
+ P: "1200",
+ T: "I",
+ V: "20",
+ H: "active port",
+ S: "65001",
+ M: "1",
},
{
- F: 'service/ftp',
- P: '1204',
- T: 'I',
- V: '55600',
- H: 'passive port',
- S: '65001',
- M: '1',
+ F: "service/ftp",
+ P: "1204",
+ T: "I",
+ V: "55600",
+ H: "passive port",
+ S: "65001",
+ M: "1",
},
{
- F: 'service/notification',
- P: '1191',
- T: 'B',
- V: '1',
- H: 'auto notif',
- O: [{ no: '0' }, { yes: '1' }],
+ F: "service/notification",
+ P: "1191",
+ T: "B",
+ V: "1",
+ H: "auto notif",
+ O: [{ no: "0" }, { yes: "1" }],
},
{
- F: 'service/notification',
- P: '116',
- T: 'B',
- V: '0',
- H: 'notification',
+ F: "service/notification",
+ P: "116",
+ T: "B",
+ V: "0",
+ H: "notification",
O: [
- { none: '0' },
- { pushover: '1' },
- { email: '2' },
- { line: '3' },
+ { none: "0" },
+ { pushover: "1" },
+ { email: "2" },
+ { line: "3" },
],
},
{
- F: 'service/notification',
- P: '332',
- T: 'S',
- V: '********',
- S: '63',
- H: 't1',
- M: '0',
+ F: "service/notification",
+ P: "332",
+ T: "S",
+ V: "********",
+ S: "63",
+ H: "t1",
+ M: "0",
},
{
- F: 'service/notification',
- P: '583',
- T: 'S',
- V: '********',
- S: '63',
- H: 't2',
- M: '0',
+ F: "service/notification",
+ P: "583",
+ T: "S",
+ V: "********",
+ S: "63",
+ H: "t2",
+ M: "0",
},
{
- F: 'service/notification',
- P: '1042',
- T: 'S',
- V: ' ',
- S: '127',
- H: 'ts',
- M: '0',
+ F: "service/notification",
+ P: "1042",
+ T: "S",
+ V: " ",
+ S: "127",
+ H: "ts",
+ M: "0",
},
{
- F: 'system/system',
- P: '648',
- T: 'B',
- V: '40',
- H: 'targetfw',
+ F: "system/system",
+ P: "648",
+ T: "B",
+ V: "40",
+ H: "targetfw",
O: [
- { repetier: '50' },
- { marlin: '20' },
- { marlinkimbra: '35' },
- { smoothieware: '40' },
- { grbl: '10' },
- { unknown: '0' },
+ { repetier: "50" },
+ { marlin: "20" },
+ { marlinkimbra: "35" },
+ { smoothieware: "40" },
+ { grbl: "10" },
+ { unknown: "0" },
],
},
{
- F: 'system/system',
- P: '112',
- T: 'I',
- V: '115200',
- H: 'baud',
+ F: "system/system",
+ P: "112",
+ T: "I",
+ V: "115200",
+ H: "baud",
O: [
- { 9600: '9600' },
- { 19200: '19200' },
- { 38400: '38400' },
- { 57600: '57600' },
- { 74880: '74880' },
- { 115200: '115200' },
- { 230400: '230400' },
- { 250000: '250000' },
- { 500000: '500000' },
- { 921600: '921600' },
+ { 9600: "9600" },
+ { 19200: "19200" },
+ { 38400: "38400" },
+ { 57600: "57600" },
+ { 74880: "74880" },
+ { 115200: "115200" },
+ { 230400: "230400" },
+ { 250000: "250000" },
+ { 500000: "500000" },
+ { 921600: "921600" },
],
},
{
- F: 'system/system',
- P: '320',
- T: 'I',
- V: '10000',
- H: 'bootdelay',
- S: '40000',
- M: '0',
+ F: "system/system",
+ P: "320",
+ T: "I",
+ V: "10000",
+ H: "bootdelay",
+ S: "40000",
+ M: "0",
},
{
- F: 'system/system',
- P: '129',
- T: 'F',
- V: '255',
- H: 'outputmsg',
- O: [{ M117: '16' }, { serial: '1' }, { telnet: '2' }],
+ F: "system/system",
+ P: "129",
+ T: "F",
+ V: "255",
+ H: "outputmsg",
+ O: [{ M117: "16" }, { serial: "1" }, { telnet: "2" }],
},
],
});
return;
}
- SendBinary('ok\n');
- res.send('');
+ SendBinary("ok\n");
+ res.send("");
});
function fileSizeString(size) {
let s;
- if (size < 1024) return size + ' B';
- if (size < 1024 * 1024) return (size / 1024).toFixed(2) + ' KB';
+ if (size < 1024) return size + " B";
+ if (size < 1024 * 1024) return (size / 1024).toFixed(2) + " KB";
if (size < 1024 * 1024 * 1024)
- return (size / (1024 * 1024)).toFixed(2) + ' MB';
+ return (size / (1024 * 1024)).toFixed(2) + " MB";
if (size < 1024 * 1024 * 1024 * 1024)
- return (size / (1024 * 1024 * 1024)).toFixed(2) + ' GB';
- return 'X B';
+ return (size / (1024 * 1024 * 1024)).toFixed(2) + " GB";
+ return "X B";
}
function filesList(mypath, mainpath) {
@@ -489,16 +489,16 @@ function filesList(mypath, mainpath) {
let total = sdpath == mainpath ? 4096 * 1024 * 1024 : 1.2 * 1024 * 1024;
let totalused = getTotalSize(mainpath);
let currentpath = path.normalize(mainpath + mypath);
- console.log('[path]' + currentpath);
+ console.log("[path]" + currentpath);
fs.readdirSync(currentpath).forEach((fileelement) => {
- let fullpath = path.normalize(currentpath + '/' + fileelement);
+ let fullpath = path.normalize(currentpath + "/" + fileelement);
let fst = fs.statSync(fullpath);
let fsize = -1;
if (fst.isFile()) {
fsize = fileSizeString(fst.size);
}
- if (nb > 0) res += ',';
+ if (nb > 0) res += ",";
res += '{"name":"' + fileelement + '","size":"' + fsize + '"}';
nb++;
});
@@ -521,10 +521,10 @@ const getAllFiles = function (dirPath, arrayOfFiles) {
arrayOfFiles = arrayOfFiles || [];
files.forEach(function (file) {
- if (fs.statSync(dirPath + '/' + file).isDirectory()) {
- arrayOfFiles = getAllFiles(dirPath + '/' + file, arrayOfFiles);
+ if (fs.statSync(dirPath + "/" + file).isDirectory()) {
+ arrayOfFiles = getAllFiles(dirPath + "/" + file, arrayOfFiles);
} else {
- arrayOfFiles.push(dirPath + '/' + file);
+ arrayOfFiles.push(dirPath + "/" + file);
}
});
@@ -546,7 +546,7 @@ const getTotalSize = function (directoryPath) {
function deleteFolderRecursive(path) {
if (fs.existsSync(path) && fs.lstatSync(path).isDirectory()) {
fs.readdirSync(path).forEach(function (file, index) {
- let curPath = path + '/' + file;
+ let curPath = path + "/" + file;
if (fs.lstatSync(curPath).isDirectory()) {
// recurse
@@ -562,49 +562,49 @@ function deleteFolderRecursive(path) {
} else console.log(`[server]No directory "${path}"...`);
}
-app.all('/updatefw', function (req, res) {
- res.send('ok');
+app.all("/updatefw", function (req, res) {
+ res.send("ok");
});
-app.all('/sdfiles', function (req, res) {
+app.all("/sdfiles", function (req, res) {
let mypath = req.query.path;
let url = req.originalUrl;
- let filepath = path.normalize(sdpath + mypath + '/' + req.query.filename);
- if (url.indexOf('action=deletedir') != -1) {
- console.log('[server]delete directory ' + filepath);
+ let filepath = path.normalize(sdpath + mypath + "/" + req.query.filename);
+ if (url.indexOf("action=deletedir") != -1) {
+ console.log("[server]delete directory " + filepath);
deleteFolderRecursive(filepath);
fs.readdirSync(mypath);
- } else if (url.indexOf('action=delete') != -1) {
+ } else if (url.indexOf("action=delete") != -1) {
fs.unlinkSync(filepath);
- console.log('[server]delete file ' + filepath);
+ console.log("[server]delete file " + filepath);
}
- if (url.indexOf('action=createdir') != -1) {
+ if (url.indexOf("action=createdir") != -1) {
fs.mkdirSync(filepath);
- console.log('[server]new directory ' + filepath);
+ console.log("[server]new directory " + filepath);
}
- if (typeof mypath == 'undefined') {
- if (typeof req.body.path == 'undefined') {
- console.log('[server]path is not defined');
- mypath = '/';
+ if (typeof mypath == "undefined") {
+ if (typeof req.body.path == "undefined") {
+ console.log("[server]path is not defined");
+ mypath = "/";
} else {
- mypath = (req.body.path == '/' ? '' : req.body.path) + '/';
+ mypath = (req.body.path == "/" ? "" : req.body.path) + "/";
}
}
- console.log('[server]path is ' + mypath);
+ console.log("[server]path is " + mypath);
if (!req.files || Object.keys(req.files).length === 0) {
return res.send(filesList(mypath, sdpath));
}
let myFile = req.files.myfiles;
- if (typeof myFile.length == 'undefined') {
+ if (typeof myFile.length == "undefined") {
let fullpath = path.normalize(sdpath + mypath + myFile.name);
- console.log('[server]one file:' + fullpath);
+ console.log("[server]one file:" + fullpath);
myFile.mv(fullpath, function (err) {
if (err) return res.status(500).send(err);
res.send(filesList(mypath, sdpath));
});
return;
} else {
- console.log(myFile.length + ' files');
+ console.log(myFile.length + " files");
for (let i = 0; i < myFile.length; i++) {
let fullpath = path.normalize(sdpath + mypath + myFile[i].name);
console.log(fullpath);
@@ -615,47 +615,47 @@ app.all('/sdfiles', function (req, res) {
}
});
-app.all('/files', function (req, res) {
+app.all("/files", function (req, res) {
let mypath = req.query.path;
let url = req.originalUrl;
let filepath = path.normalize(
- serverpath + mypath + '/' + req.query.filename
+ serverpath + mypath + "/" + req.query.filename
);
- if (url.indexOf('action=deletedir') != -1) {
- console.log('[server]delete directory ' + filepath);
+ if (url.indexOf("action=deletedir") != -1) {
+ console.log("[server]delete directory " + filepath);
deleteFolderRecursive(filepath);
fs.readdirSync(mypath);
- } else if (url.indexOf('action=delete') != -1) {
+ } else if (url.indexOf("action=delete") != -1) {
fs.unlinkSync(filepath);
- console.log('[server]delete file ' + filepath);
+ console.log("[server]delete file " + filepath);
}
- if (url.indexOf('action=createdir') != -1) {
+ if (url.indexOf("action=createdir") != -1) {
fs.mkdirSync(filepath);
- console.log('[server]new directory ' + filepath);
+ console.log("[server]new directory " + filepath);
}
- if (typeof mypath == 'undefined') {
- if (typeof req.body.path == 'undefined') {
- console.log('[server]path is not defined');
- mypath = '/';
+ if (typeof mypath == "undefined") {
+ if (typeof req.body.path == "undefined") {
+ console.log("[server]path is not defined");
+ mypath = "/";
} else {
- mypath = (req.body.path == '/' ? '' : req.body.path) + '/';
+ mypath = (req.body.path == "/" ? "" : req.body.path) + "/";
}
}
- console.log('[server]path is ' + mypath);
+ console.log("[server]path is " + mypath);
if (!req.files || Object.keys(req.files).length === 0) {
return res.send(filesList(mypath, serverpath));
}
let myFile = req.files.myfiles;
- if (typeof myFile.length == 'undefined') {
+ if (typeof myFile.length == "undefined") {
let fullpath = path.normalize(serverpath + mypath + myFile.name);
- console.log('[server]one file:' + fullpath);
+ console.log("[server]one file:" + fullpath);
myFile.mv(fullpath, function (err) {
if (err) return res.status(500).send(err);
res.send(filesList(mypath, serverpath));
});
return;
} else {
- console.log(myFile.length + ' files');
+ console.log(myFile.length + " files");
for (let i = 0; i < myFile.length; i++) {
let fullpath = path.normalize(serverpath + mypath + myFile[i].name);
console.log(fullpath);
@@ -667,8 +667,8 @@ app.all('/files', function (req, res) {
}
});
-wss.on('connection', (socket, request) => {
- console.log(wscolor('[ws] New connection'));
+wss.on("connection", (socket, request) => {
+ console.log(wscolor("[ws] New connection"));
console.log(wscolor(`[ws] currentID:${currentID}`));
socket.send(`currentID:${currentID}`);
wss.clients.forEach(function each(client) {
@@ -677,10 +677,10 @@ wss.on('connection', (socket, request) => {
}
});
currentID++;
- socket.on('message', (message) => {
- console.log(wscolor('[ws] received: %s', message));
+ socket.on("message", (message) => {
+ console.log(wscolor("[ws] received: %s", message));
});
});
-wss.on('error', (error) => {
- console.log(wscolor('[ws] Error: %s', error));
+wss.on("error", (error) => {
+ console.log(wscolor("[ws] Error: %s", error));
});
diff --git a/embedded/config/webpack.dev.js b/embedded/config/webpack.dev.js
index ad53f803..748521e8 100644
--- a/embedded/config/webpack.dev.js
+++ b/embedded/config/webpack.dev.js
@@ -1,31 +1,31 @@
-const path = require('path');
-const HtmlWebpackPlugin = require('html-webpack-plugin');
+const path = require("path");
+const HtmlWebpackPlugin = require("html-webpack-plugin");
module.exports = {
- mode: 'development', // this will trigger some webpack default stuffs for dev
- entry: path.resolve(__dirname, '../src/index.js'), // if not set, default path to './src/index.js'. Accepts an object with multiple key-value pairs, with key as your custom bundle filename(substituting the [name]), and value as the corresponding file path
+ mode: "development", // this will trigger some webpack default stuffs for dev
+ entry: path.resolve(__dirname, "../src/index.js"), // if not set, default path to './src/index.js'. Accepts an object with multiple key-value pairs, with key as your custom bundle filename(substituting the [name]), and value as the corresponding file path
output: {
- filename: '[name].bundle.js', // [name] will take whatever the input filename is. defaults to 'main' if only a single entry value
- path: path.resolve(__dirname, '../dist'), // the folder containing you final dist/build files. Default to './dist'
+ filename: "[name].bundle.js", // [name] will take whatever the input filename is. defaults to 'main' if only a single entry value
+ path: path.resolve(__dirname, "../dist"), // the folder containing you final dist/build files. Default to './dist'
},
devServer: {
historyApiFallback: true, // to make our SPA works after a full reload, so that it serves 'index.html' when 404 response
open: true,
static: {
- directory: path.resolve(__dirname, './dist'),
+ directory: path.resolve(__dirname, "./dist"),
},
port: 8088,
proxy: {
context: () => true,
- target: 'http://localhost:8080',
+ target: "http://localhost:8080",
},
},
- stats: 'minimal', // default behaviour spit out way too much info. adjust to your need.
- devtool: 'source-map', // a sourcemap type. map to original source with line number
+ stats: "minimal", // default behaviour spit out way too much info. adjust to your need.
+ devtool: "source-map", // a sourcemap type. map to original source with line number
plugins: [
new HtmlWebpackPlugin({
- template: path.join(__dirname, '../src/index.html'),
- inlineSource: '.(js|css)$',
+ template: path.join(__dirname, "../src/index.html"),
+ inlineSource: ".(js|css)$",
inject: true,
}),
], // automatically creates a 'index.html' for us with our ,