Skip to content

FastAccelStepper not installed automatically when using PlatformIO #10

@esranonff

Description

@esranonff

At the moment, you can download this library with the following syntax in your platformio.ini file, however it will not pull in the dependencies:

; PlatformIO Project Configuration File
;
;   Build options: build flags, source filter
;   Upload options: custom upload port, speed and extra flags
;   Library options: dependencies, extra library storages
;   Advanced options: extra scripting
;
; Please visit documentation for the other options and examples
; https://docs.platformio.org/page/projectconf.html
[env:esp32dev]
platform = espressif32
board = esp32dev
framework = arduino
lib_deps = 
    https://github.com/theelims/StrokeEngine.git#main

This is easily solved by adding an additional line:

; PlatformIO Project Configuration File
;
;   Build options: build flags, source filter
;   Upload options: custom upload port, speed and extra flags
;   Library options: dependencies, extra library storages
;   Advanced options: extra scripting
;
; Please visit documentation for the other options and examples
; https://docs.platformio.org/page/projectconf.html
[env:esp32dev]
platform = espressif32
board = esp32dev
framework = arduino
lib_deps = 
    https://github.com/theelims/StrokeEngine.git#main
    gin66/FastAccelStepper@^0.30.5

however it would be good if the dependencies could be installed automatically via https://docs.platformio.org/en/latest/manifests/library-json/fields/dependencies.html

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions