https://github.com/raimue/arduino
Collection of Arduino libraries and my own tinkering stuff
https://github.com/raimue/arduino
Last synced: about 2 months ago
JSON representation
Collection of Arduino libraries and my own tinkering stuff
- Host: GitHub
- URL: https://github.com/raimue/arduino
- Owner: raimue
- Created: 2014-02-16T22:45:27.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2023-11-12T21:03:01.000Z (over 1 year ago)
- Last Synced: 2025-04-22T22:17:30.227Z (about 2 months ago)
- Language: C++
- Size: 4.6 MB
- Stars: 3
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Experiments with Arduino
This repository contains all sorts of stuff related to Arduino. This is mostly
just my own stuff as I use it and is not necessarily meant for direct use by
others. Documentation might be missing, but feel free to ask if you find
anything interesting you would like to know more about.## git submodule configuration
This repository uses external repositories using git submodules:
$ git submodule update --init
Some of the external repositories are once again using submodules. Depending on
what you are working on, you may not need them all and you can initialize them
as needed. Or you can get a full copy of all submodules recursively:$ git submodule update --init --recursive
## Boards Management
### AVR
Everything is builtin into Arduino and Arduino-Makefile. No special
configuration necessary.### ESP8266
Support for esp8266 can be enabled by downloading additional tools. Refer to
the official [ESP8266 Arduino Core](https://arduino-esp8266.readthedocs.io/)
instructions.Additonallity, [arduino-cli](https://github.com/arduino/arduino-cli) is
required for compilation and for flashing the device.