Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sralloza/halloween2022
Arduino code for Halloween2022 electronics
https://github.com/sralloza/halloween2022
Last synced: about 1 month ago
JSON representation
Arduino code for Halloween2022 electronics
- Host: GitHub
- URL: https://github.com/sralloza/halloween2022
- Owner: sralloza
- Created: 2022-02-03T16:15:16.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-10-31T09:49:19.000Z (about 2 years ago)
- Last Synced: 2023-03-09T04:32:33.311Z (almost 2 years ago)
- Language: C++
- Size: 17.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Halloween2022
Arduino code for Halloween2022 electronics.
Designed using Arduino Mega, deployed using Arduino Nano.
## Development
For more info take a look at the [arduino-cli docs](https://arduino.github.io/arduino-cli/0.21/getting-started/).
Environment variables:
- **`PORT`**: usually /dev/xxx. Use `arduino-cli board list` to get the correct port.
- **`BOARD`**: `arduino:avr:mega` for Arduino Mega and `arduino:avr:nano` for Arduino Nano### Update board and libraries index
```shell
arduino-cli core update-index
```### View arduino connected boards
```shell
arduino-cli board list
```### Install board core
```shell
arduino-cli core install arduino:avr
```To list all boards:
```shell
arduino-cli board listall
```### Compile sketch
```shell
arduino-cli compile --fqbn $BOARD
```### Upload sketch
```shell
arduino-cli upload -p $PORT --fqbn $BOARD
```### Open serial monitor
```shell
arduino-cli monitor -p $PORT
```