-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
set/getValue to Variable. ESPLiveScript 1.2.0
pio.ini - add STARBASE_USERMOD_MIDI (not active yet) - update LiveScript t0 main/1.2.0 - rename esp32_wrover to esp-wrover-kit main.cpp - add STARBASE_USERMOD_MIDI (not active yet) SysModModel - setValueJV, setValueF, getValue, setValue -> Variable - mdl->setValue(variable.var, -> variable.setValue( - mdl->getValue(variable.var, -> variable.getValue(
- Loading branch information
Showing
17 changed files
with
244 additions
and
174 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,13 +66,20 @@ build_flags = | |
lib_deps = | ||
ElectronicCats/MPU6050 @ 1.3.0 | ||
|
||
[STARBASE_USERMOD_MIDI] | ||
build_flags = | ||
-D STARBASE_USERMOD_MIDI | ||
lib_deps = | ||
; https://github.com/marcel-licence/esp32_usb_midi | ||
; https://github.com/felis/USB_Host_Shield_2.0 | ||
|
||
;asmParser © https://github.com/hpwit/ASMParser | ||
[STARBASE_USERMOD_LIVE] | ||
build_flags = | ||
-D STARBASE_USERMOD_LIVE | ||
-D EXTPRINTF=ppf | ||
lib_deps = | ||
; https://github.com/hpwit/ESPLiveScript.git#17b4bb7 ;v2.9.3 @ 20241030 15:39 | ||
https://github.com/ewowi/ESPLiveScript.git#v2.9.3 ;ewowi repo adds some proposed PR's and makes sure we don't have unexpected updates | ||
https://github.com/ewowi/ESPLiveScript.git#main ;1.2.0. ewowi repo adds some proposed PR's and makes sure we don't have unexpected updates | ||
|
||
[STARBASE] | ||
build_flags = | ||
|
@@ -88,6 +95,7 @@ build_flags = | |
-D STARBASE_ETHERNET ; +41.876 bytes (2.2%) | ||
${STARBASE_USERMOD_E131.build_flags} ;+11.416 bytes 0.6% | ||
${STARBASE_USERMOD_MPU6050.build_flags} ;+35.308 bytes 1.8% | ||
; ${STARBASE_USERMOD_MIDI.build_flags} ;+5%... | ||
; ${STARBASE_USERMOD_HA.build_flags} | ||
${STARBASE_USERMOD_LIVE.build_flags} ;+222.204 bytes 11.7% | ||
lib_deps = | ||
|
@@ -97,6 +105,7 @@ lib_deps = | |
;optional: | ||
${STARBASE_USERMOD_E131.lib_deps} | ||
${STARBASE_USERMOD_MPU6050.lib_deps} | ||
; ${STARBASE_USERMOD_MIDI.lib_deps} | ||
; ${STARBASE_USERMOD_HA.lib_deps} | ||
${STARBASE_USERMOD_LIVE.lib_deps} | ||
|
||
|
@@ -148,7 +157,7 @@ lib_deps = | |
; https://github.com/platformio/platform-espressif32/issues/1360 | ||
; https://community.platformio.org/t/support-esp32-wrover-module/17717 | ||
; note: flasghing to new board goes wrong, try first without ICVD then with and without etc until it works (witchcraft) | ||
[env:esp32_wrover] | ||
[env:esp-wrover-kit] | ||
board = esp-wrover-kit ; esp-wrover-kit ;https://github.com/platformio/platform-espressif32/blob/develop/boards/esp-wrover-kit.json | ||
; recommended to pin to a platform version, see https://github.com/platformio/platform-espressif32/releases | ||
platform = [email protected] ;using platformio/framework-arduinoespressif32 @ ~3.20014.0 / framework-arduinoespressif32 @ 3.20014.231204 (2.0.14) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.