Skip to content

Commit

Permalink
Restructured project to work as library
Browse files Browse the repository at this point in the history
  • Loading branch information
FernandoGarcia committed Apr 3, 2022
1 parent baae203 commit 70f0d4b
Show file tree
Hide file tree
Showing 61 changed files with 15 additions and 41 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
.gcc-flags.json
*Thumbs.db
/data/www
/lib/framework/WWWData.h
src/WWWData.h
/interface/build
/interface/node_modules
/interface/.eslintcache
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion interface/config-overrides.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ module.exports = function override(config, env) {
terserPlugin.options.extractComments = false;

// build progmem data files
config.plugins.push(new ProgmemGenerator({ outputPath: "../lib/framework/WWWData.h", bytesPerLine: 20 }));
config.plugins.push(new ProgmemGenerator({ outputPath: "../src/WWWData.h", bytesPerLine: 20 }));
}
return config;
};
36 changes: 0 additions & 36 deletions lib/readme.txt

This file was deleted.

10 changes: 8 additions & 2 deletions platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ framework = arduino
monitor_speed = 115200

extra_scripts =
pre:scripts/build_interface.py
pre:lib/esp8266-react/scripts/build_interface.py

lib_deps =
ArduinoJson@>=6.0.0,<7.0.0
Expand All @@ -43,8 +43,14 @@ board = esp12e
board_build.f_cpu = 160000000L
board_build.filesystem = littlefs

[env:node32s]
; Comment out min_spiffs.csv setting if disabling PROGMEM_WWW with ESP32

[env:node32s]
board_build.partitions = min_spiffs.csv
platform = espressif32
board = node32s

[env:esp32dev]
board_build.partitions = min_spiffs.csv
platform = espressif32
board = esp32dev
6 changes: 5 additions & 1 deletion scripts/build_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,13 @@
from subprocess import check_output, Popen, PIPE, STDOUT, CalledProcessError
import os
import gzip
import inspect

Import("env")

filename = inspect.getframeinfo(inspect.currentframe()).filename
dir_path = os.path.dirname(os.path.abspath(filename))

def gzipFile(file):
with open(file, 'rb') as f_in:
with gzip.open(file + '.gz', 'wb') as f_out:
Expand All @@ -19,7 +23,7 @@ def flagExists(flag):
return True

def buildWeb():
os.chdir("interface")
os.chdir(dir_path + '/../interface')
print("Building interface with npm")
try:
env.Execute("npm install")
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 70f0d4b

Please sign in to comment.