This repository contains customized ESP-IDF-based project setup dedicated for Introduction to Internet of Things Hands-on sessions.
-
Add user user the following groups:
sudo
,plugdev
anddialout
.$ sudo usermod -a -G sudo ${USER} $ sudo usermod -a -G plugdev ${USER} $ sudo usermod -a -G dialout ${USER}
-
Install
build-essential
package.$ sudo apt-get update && sudo apt-get install build-essential
-
Clone repository.
$ git clone git@github.com:uwr-iot/iot-lab.git
-
Download & install project dependencies.
$ cd iot-lab $ make setup
Use following make
targets:
make all
- to compile project,make flash
- to install firmware on main CPU,make monitor
- to open debug console.
Complete documentation for ESP-IDF can be found here.