Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/samethope/arduino-structs
This is a small arduino "library" made of data structures for common IO components with common functionality for myself that I find extremely helpful.
https://github.com/samethope/arduino-structs
arduino arduino-library arduino-uno data-structures
Last synced: about 2 months ago
JSON representation
This is a small arduino "library" made of data structures for common IO components with common functionality for myself that I find extremely helpful.
- Host: GitHub
- URL: https://github.com/samethope/arduino-structs
- Owner: SametHope
- Created: 2024-04-19T14:18:33.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-04-25T08:06:58.000Z (9 months ago)
- Last Synced: 2024-04-25T09:29:18.650Z (9 months ago)
- Topics: arduino, arduino-library, arduino-uno, data-structures
- Language: C
- Homepage:
- Size: 20.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Arduino Structs
This is a small arduino "library" made of data structures for common IO components with common functionality for myself that I find pretty helpful.
See [SametHopeStructs.h](https://github.com/SametHope/arduino-structs/blob/main/SametHopeStructs.h) for conventions used and a list of data structures included and more.
## Usage
1. Add all files on the repo into the relevant arduino project.
2. Include SametHopeStructs.h for all structs or include them individually.### Misc
Clang_format_fallback Style configuration used on Visual Studio Code for formatting:
```
{ BasedOnStyle: LLVM, UseTab: Never, IndentWidth: 2, TabWidth: 2, BreakBeforeBraces: Attach, AllowShortIfStatementsOnASingleLine: false, IndentCaseLabels: false, ColumnLimit: 0, AccessModifierOffset: -2 }
```