aboutsummaryrefslogtreecommitdiff
path: root/readme.md
blob: f9e3c74fa5a67e82e7c0fe9cef701782b2a2c861 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
this is a work-in-progress

- am using [espressif's ESP8266_RTOS_SDK](https://github.com/espressif/ESP8266_RTOS_SDK)
- run `make compile_commands` if you're using the clangd language server
- need to add/modify the following in your sdkconfig:
	```bash
	# compilation on arch
	CONFIG_SDK_PYTHON="python2"

	# wifi settings
	CONFIG_EXAMPLE_WIFI_SSID="your network name"
	CONFIG_EXAMPLE_WIFI_PASSWORD="your network password"

	# hostname (optional)
	CONFIG_LWIP_LOCAL_HOSTNAME="your custom hostname instead of espressif"
	```