-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmos.yml
40 lines (33 loc) · 1.31 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
author: robburger
description: A MongooseOS-based temperature/humidity monitor piping data to AWS
version: 0.1.0
libs_version: ${mos.version}
modules_version: ${mos.version}
mongoose_os_version: ${mos.version}
# Optional. List of tags for online search.
tags:
- aws
- c
- dht
# List of files / directories with C sources. No slashes at the end of dir names.
sources:
- src
# List of dirs. Files from these dirs will be copied to the device filesystem
filesystem:
- fs
# Custom configuration entries, settable via "device configuration"
config_schema:
- ["dht.pin", "i", 14, {title: "GPIO pin the DHT22 sensor is attached to"}]
- ["dht.freq", "i", 10, {title: "Frequency of readings in seconds. Min. 2 sec"}]
# Libraries needed for firmware compilation
libs:
- origin: https://github.com/mongoose-os-libs/boards
- origin: https://github.com/mongoose-os-libs/ca-bundle
- origin: https://github.com/mongoose-os-libs/dash
- origin: https://github.com/mongoose-os-libs/dht
- 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/wifi
# Used by the mos tool to catch mos binaries incompatible with this file format
manifest_version: 2017-09-29