-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Integrate esp-robonomics-client to firmwares
- Loading branch information
PavelSheremetev
committed
Jan 13, 2025
1 parent
e3ce597
commit 970493c
Showing
4 changed files
with
28 additions
and
0 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 |
---|---|---|
@@ -1 +1,2 @@ | ||
firmware/Tasmota/Tasmota/ | ||
.platformio |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ pkgs ? import <nixpkgs> {} }: | ||
let | ||
in | ||
pkgs.mkShell { | ||
buildInputs = [ | ||
pkgs.platformio | ||
pkgs.esptool | ||
pkgs.python312Packages.pip | ||
pkgs.python312Packages.zopfli | ||
pkgs.python312Packages.wheel | ||
# optional: needed as a programmer i.e. for esp32 | ||
# pkgs.avrdude | ||
]; | ||
shellHook = '' | ||
export PLATFORMIO_CORE_DIR=$PWD/.platformio | ||
''; | ||
} |