Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ PKGS += vdisp lib_tca9535 vbms_harmony32 vbms_harmony16
PKGS += dash35b vl_bike_39p lib_bq27441 boosted_doctor dash16
PKGS += lib_tca9534 UnleashedCreativityLights wheelie_limiter
PKGS += mt6701_config dash_esc vesc_scooter_support lib_esp_led_strip vl_link_status
PKGS += scooter_dashboard_support

TEST_PKGS = blacktip_dpv

Expand Down
1 change: 1 addition & 0 deletions res_all.qrc
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
<file>vesc_scooter_support/vesc_scooter_support.vescpkg</file>
<file>lib_esp_led_strip/esp_led_strip.vescpkg</file>
<file>vl_link_status/vl_link_status.vescpkg</file>
<file>scooter_dashboard_support/scooter_dashboard_support.vescpkg</file>
</qresource>
</RCC>

674 changes: 674 additions & 0 deletions scooter_dashboard_support/LICENSE

Large diffs are not rendered by default.

13 changes: 13 additions & 0 deletions scooter_dashboard_support/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
VESC_TOOL ?= vesc_tool

PKG = scooter_dashboard_support.vescpkg

all: $(PKG)

$(PKG): pkgdesc.qml ui.qml scooter_support.lisp README.md version
$(VESC_TOOL) --buildPkgFromDesc pkgdesc.qml --testPkgDesc 'vesc:maxim 120' --testPkgDesc 'vesc:pronto'

clean:
rm -f $(PKG)

.PHONY: all clean
343 changes: 343 additions & 0 deletions scooter_dashboard_support/README.md

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions scooter_dashboard_support/pkgdesc.qml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import QtQuick 2.15

Item {
property string pkgName: "Scooter Dashboard Support"
property string pkgDescriptionMd: "README.md"
property string pkgLisp: "scooter_support.lisp"
property string pkgQml: "ui.qml"
property bool pkgQmlIsFullscreen: false
property string pkgOutput: "scooter_dashboard_support.vescpkg"

function isCompatible (fwRxParams) {
var hwType = fwRxParams.hwTypeStr().toLowerCase()
return hwType === "vesc"
}
}
Loading