https://github.com/sbstjn/aws-edukit-example
Example baseline for prototyping with the Core2 AWS IoT EduKit.
https://github.com/sbstjn/aws-edukit-example
aws edukit iot
Last synced: about 1 month ago
JSON representation
Example baseline for prototyping with the Core2 AWS IoT EduKit.
- Host: GitHub
- URL: https://github.com/sbstjn/aws-edukit-example
- Owner: sbstjn
- Created: 2021-01-03T16:18:58.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-01-08T09:14:26.000Z (over 5 years ago)
- Last Synced: 2025-01-05T14:31:16.486Z (over 1 year ago)
- Topics: aws, edukit, iot
- Language: C
- Homepage:
- Size: 7.87 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AWS EduKit Example
> Based on [Core2-for-AWS-IoT-EduKit](https://github.com/m5stack/Core2-for-AWS-IoT-EduKit) and [AWS IoT EduKit Workshop](https://edukit.workshop.aws/en/).

## Prerequisites
Install `v4.2` of [esp-idf](https://github.com/espressif/esp-idf).
```bash
$ > brew install cmake ninja dfu-util
$ > mkdir $HOME/esp
$ > cd $HOME/esp
$ > git clone -b release/v4.2 --recursive https://github.com/espressif/esp-idf.git
$ > cd esp-idf
$ > $HOME/esp/esp-idf/install.sh
```
## Configuration
```bash
# Configure esp-idf
$ > . $HOME/esp/esp-idf/export.sh
# Configure WiFi settings in "AWS Configuration" ( use "s" to save and "q" to quit )
$ > idf.py menuconfig
```
## Build
```bash
# Compile software
$ > idf.py build
```
## Flash
```bash
# Load software to Core2 and start monitor
$ > idf.py flash monitor
```
## Hints
Use `control + ]` to quit monitor.