forked from yaourdt/tasmota-to-mgos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mos.yml
50 lines (45 loc) · 2.08 KB
/
mos.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
author: mark dornbach <[email protected]>
description: a minimal firmware for ota flashing mongoose os from tasmota or tuya stock firmware
platform: esp8266
version: 0.1.2
libs_version: 2.19.0
modules_version: 2.19.0
mongoose_os_version: 2.19.0
manifest_version: 2020-01-29
sources: [src]
filesystem: [fs]
tags: [c, tuya, tasmota, mongoose]
# Custom configuration
config_schema:
#### sys ####
- ["debug.level", 2] # 0 = ERROR, 1 = WARN, 2 = INFO, 3+ = DEBUG
#### wifi ####
- ["wifi.sta.enable", true ] # join wifi as client
- ["wifi.sta.ssid", "vtrust-flash" ] # SSID
- ["wifi.sta.pass", "" ] # password
- ["wifi.sta.ip", "10.42.42.44" ] # device static IP
- ["wifi.sta.netmask", "255.255.255.0" ] # netmask
- ["wifi.sta.gw", "10.42.42.1" ] # default gateway
- ["wifi.sta.nameserver", "10.42.42.1" ] # DNS nameserver
- ["wifi.ap.enable", true ] # enable Access Point mode
- ["wifi.ap.ssid", "mg-??????" ] # SSID to use. ?? symbols are substituted by MAC address
- ["wifi.ap.pass", "" ] # password
- ["wifi.ap.hidden", false ] # hide WiFi network
- ["wifi.ap.ip", "10.42.42.44" ] # device static IP
- ["wifi.ap.netmask", "255.255.255.0" ] # netmask
- ["wifi.ap.gw", "10.42.42.1" ] # default gateway
- ["wifi.ap.nameserver", "10.42.42.1" ] # DNS nameserver
- ["wifi.ap.dhcp_start", "10.42.42.50" ] # DHCP start Address
- ["wifi.ap.dhcp_end", "10.42.42.60" ] # DHCP end Address
libs:
- origin: https://github.com/mongoose-os-libs/wifi
- origin: https://github.com/mongoose-os-libs/mbedtls # remove support for crypto chip to reduce footprint
variant: esp8266-noatca
- origin: https://github.com/mongoose-os-libs/mongoose # remove SSL support to reduce footprint
variant: esp8266-nossl
- origin: https://github.com/mongoose-os-libs/ota-http-server # local OTA update via HTTP POST
build_vars:
FLASH_SIZE: 524288
MGOS_MBEDTLS_ENABLE_ATCA: 0
cdefs:
MG_ENABLE_SSL: 0