-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmos.yml
42 lines (36 loc) · 1.24 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
author: Tomsim
description: ESP8266 PIR monitor with deep sleep and RTC memory store
version: 1.0
libs_version: ${mos.version}
modules_version: ${mos.version}
mongoose_os_version: ${mos.version}
tags:
- js
- hw
- PIR
- RTC
- ESP8266
sources:
- src
filesystem:
- fs
config_schema:
- ["wifi.ap.enable",false]
- ["wifi.sta.enable",false]
- ["mqtt.enable",false]
- ["pir", "o", {title: "PIR settings"}]
- ["pir.devName", "s", "01", {title: "PIR device name"}]
- ["pir.dsTimeout", "i", 30, {title: "Deep sleep timeout (seconds)"}]
- ["pir.hbCycle", "i", 12, {title: "Heart beat deep sleep cycle"}]
# List of libraries used by this app, in order of initialisation
libs:
- origin: https://github.com/mongoose-os-libs/ca-bundle
- origin: https://github.com/mongoose-os-libs/http-server
- origin: https://github.com/mongoose-os-libs/rpc-service-config
- origin: https://github.com/mongoose-os-libs/rpc-service-fs
- origin: https://github.com/mongoose-os-libs/rpc-uart
- origin: https://github.com/mongoose-os-libs/rpc-mqtt
- origin: https://github.com/mongoose-os-libs/wifi
- origin: https://github.com/mongoose-os-libs/mjs
# Used by the mos tool to catch mos binaries incompatible with this file format
manifest_version: 2017-08-19