-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmos.yml
More file actions
42 lines (36 loc) · 1.31 KB
/
mos.yml
File metadata and controls
42 lines (36 loc) · 1.31 KB
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: Rumen Nikiforov
description: Using BME280 sensor with Blynk mobile app
version: 1.0
libs_version: ${mos_version}
modules_version: ${mos_version}
mongoose_os_version: ${mos_version}
# Optional. List of tags for online search.
tags:
- js
- mobile
- cloud
- arduino
# List of dirs. Files from these dirs will be copied to the device filesystem
filesystem:
- fs
# List of libraries used by this app, in order of initialisation
libs:
# common mgos libs
- 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/spi
- origin: https://github.com/mongoose-os-libs/i2c
# libs necessary for the current app
- origin: https://github.com/mongoose-os-libs/blynk
- origin: https://github.com/mongoose-os-libs/mjs
- origin: https://github.com/mongoose-os-libs/wifi
# bme280
- origin: https://github.com/mongoose-os-libs/arduino-adafruit-bme280
config_schema:
- ["i2c.enable", true]
- ["i2c.sda_gpio", 14]
- ["i2c.scl_gpio", 12]
- ["i2c.address", "i", 0x77, {title: "The device i2c address usually 0x76 or 0x77"}]
# Used by the mos tool to catch mos binaries incompatible with this file format
manifest_version: 2017-05-18