Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/schonfinkel/duino
Playing with arduino in C++ (and maybe Rust?), platform.io and also Nix.
https://github.com/schonfinkel/duino
arduino cpp github-actions just justfile nix nix-flake platformio
Last synced: 25 days ago
JSON representation
Playing with arduino in C++ (and maybe Rust?), platform.io and also Nix.
- Host: GitHub
- URL: https://github.com/schonfinkel/duino
- Owner: schonfinkel
- Created: 2024-02-11T19:51:02.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2024-05-27T15:12:36.000Z (8 months ago)
- Last Synced: 2024-12-17T20:39:01.996Z (30 days ago)
- Topics: arduino, cpp, github-actions, just, justfile, nix, nix-flake, platformio
- Language: C++
- Homepage:
- Size: 19.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Duino
[![built with nix](https://builtwithnix.org/badge.svg)](https://builtwithnix.org)
| Project | Directory | Status |
| ------------- | ----------------- | --------- |
| Tasks | [tasks](./tasks/) | [![Build Project (Tasks)](https://github.com/mtrsk/duino/actions/workflows/build.yml/badge.svg)](https://github.com/mtrsk/duino/actions/workflows/build.yml) |Playing with arduino in C++ (and maybe Rust), platform.io and Nix. Also wanting to explore some embedded systems stuff, leveraging what I know about Nix.
## Developing
```shell
nix develop --impure
```
as of now, there's only a single `tasks` project. But I plan to add more, increasing complexity and scope.## Building & Uploading
Run `cd` into the directory you want and use the `justfile`:
```shell
just build
just release
just upload
```## Testing
There are also unit tests into each project:
```shell
just test
```## Debugging
```shell
just monitor
```## Notes
For `NixOS` only, make sure your user is in the `dialout` group.