Working version including remote access

This commit is contained in:
2018-04-06 18:23:50 +02:00
parent 8ab81f735e
commit fb759c481d
4 changed files with 137 additions and 61 deletions

47
mos.yml
View File

@@ -29,45 +29,22 @@ config_schema:
# - ["my_app.bool_value", "b", false, {title: "Some boolean value"}]
# - ["my_app.string_value", "s", "", {title: "Some string value"}]
# - ["my_app.int_value", "i", 123, {title: "Some integer value"}]
- ["i2c.enable", true]
- ["i2c.freq", 400]
- ["i2c.sda_gpio", 4] # D2
- ["i2c.scl_gpio", 5] # D1
- ["flashLight", "o", {title: "Flash light / alarm light settings"}]
- ["flashLight.address", "i", 0x30, {title: "i2c address of motor controller TB6612 (e.g. WEMOS)"}]
- ["flashLight.motorFrequency", "i", 500, {title: "Frequency of PWM in Hz"}]
- ["flashLight.motorUpdateTime", "i", 50, {title: "Time between motor updates in msec"}]
- ["flashLight.mqttCtrlTopic", "s", "flashLight/%s/ctrl", {title: "MQTT channel to subscribe to receive commands; %s is replaced by clientId"}]
- ["flashLight.mqttStatusTopic", "s", "flashLight/%s/status", {title: "MQTT channel to publish to send status change infos; %s is replaced by clientId"}]
- ["mqtt.enable", true]
- ["mqtt.server", "mqtt.pmpark.de:1883"]
- ["mqtt.user", "default"]
- ["mqtt.pass", "12345678"]
- ["mqtt.will_message", "offline"]
- ["mqtt.will_topic", "flashLight/"]
# - ["i2c.enable", true]
# - ["i2c.freq", 400]
# - ["i2c.sda_gpio", 4] # D2
# - ["i2c.scl_gpio", 5] # D1
- ["tp", "o", {title: "Thermo printer controller settings"}]
- ["tp.escapeCharacter", "i", 27, {title: "ASCII code of character, that is to be used as escape character in text interpretation"}]
# - ["mqtt.enable", true]
# - ["mqtt.server", "mqtt.pmpark.de:1883"]
# - ["mqtt.user", "default"]
# - ["mqtt.pass", "12345678"]
# - ["mqtt.will_message", "offline"]
# - ["mqtt.will_topic", "flashLight/"]
- ["sntp.enable", true]
- ["sntp.server", "time.google.com"]
# These settings get compiled into the C structure, and can be accessed
# from the C code this way:
#
# printf("Hello from %s!\n", mgos_sys_config_get_device_id());
#
# Settings are cool: can be modified remotely without full firmware upgrade!
#
# To see all available compiled settings, buid the firmware and open
# build/gen/mgos_config.h file.
#
# Also, in this config_schema section, you can override existing
# settings that has been created by other libraries. For example, debug log
# level is 2 by default. For this firmware we can override it to 3:
#
# config_schema:
# - ["debug.level", 3]
# List of libraries used by this app, in order of initialisation
libs:
- origin: https://github.com/mongoose-os-libs/ca-bundle