Skip to content

Commit

Permalink
Tweak comments
Browse files Browse the repository at this point in the history
  • Loading branch information
SFrijters committed Jul 17, 2024
1 parent 9b939bc commit b369cb0
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,16 @@
devShellArduinoCLI = pkgs.mkShell {
name = "${name}-dev";
packages = with pkgs; [
arduino-cli # For compiling and uploading the sketch
git # For embedding a version hash into the sketch
gnumake # To provide somewhat standardized commands to compile, upload, and monitor the sketch
picocom # To monitor the serial output
pythonWithExtras # So that the python3 wrapper of the esp8266 downloaded code can find a working python interpreter on the path
# To compile and upload the sketch
arduino-cli
# To embed a version hash into the sketch
git
# To provide somewhat standardized commands to compile, upload, and monitor the sketch
gnumake
# To monitor the serial output
picocom
# So that the python3 wrapper of the esp8266 downloaded code can find a working python interpreter on the path
pythonWithExtras
];
shellHook = ''
${arduinoShellHookPaths}
Expand Down

0 comments on commit b369cb0

Please sign in to comment.