Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Config Files #69

Merged
merged 2 commits into from
Jun 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
Update:
Enabled: true
# Uncomment additional options as needed.
# To learn more about these config options, including custom application configuration settings, check out the Application Settings Configuration documentation.
# http://developer.wildernesslabs.co/Meadow/Meadow.OS/Configuration/Application_Settings_Configuration/

# Logging configuration.
Logging:
LogLevel:
Default: Trace

# Adjust the level of logging detail.
LogLevel:

# Trace, Debug, Information, Warning, or Error
Default: Information

# Meadow.Cloud configuration.
MeadowCloud:

# Enable Logging, Events, Command + Control
# Enabled: false

# Enable Over-the-air Updates
# EnableUpdates: false
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,35 @@
# To learn more about these config options, including custom application configuration settings, check out the Application Settings Configuration documentation.
# http://developer.wildernesslabs.co/Meadow/Meadow.OS/Configuration/Application_Settings_Configuration/

# App lifecycle configuration.
Lifecycle:
# Control whether Meadow will restart when an unhandled app exception occurs. Combine with Lifecycle > AppFailureRestartDelaySeconds to control restart timing.
RestartOnAppFailure: false
# # When app set to restart automatically on app failure,
#AppFailureRestartDelaySeconds: 15

# Control whether Meadow will restart when an unhandled app exception occurs. Combine with Lifecycle > AppFailureRestartDelaySeconds to control restart timing.
RestartOnAppFailure: false

# # Adjust the level of logging detail.
# When app set to restart automatically on app failure,
# AppFailureRestartDelaySeconds: 15

# Logging configuration.
Logging:
LogLevel:
Default: Trace

# Adjust the level of logging detail.
LogLevel:

# Trace, Debug, Information, Warning, or Error
Default: Information

# Meadow.Cloud configuration.
MeadowCloud:

# Enable Logging, Events, Command + Control
# Enabled: false

# Enable Over-the-air Updates
# EnableUpdates: false

# Enable Health Metrics
# EnableHealthMetrics: false

# How often to send metrics to Meadow.Cloud
# HealthMetricsIntervalMinutes: 60
Original file line number Diff line number Diff line change
@@ -1,57 +1,62 @@
# Uncommented these options as needed.
# To learn more about these config options, check out the OS & Device Configuration documentation.
# http://developer.wildernesslabs.co/Meadow/Meadow.OS/Configuration/OS_Device_Configuration/
# Acceptable values for true: true, 1, yes
# Acceptable values for false: false, 0, no

#Device:
# Name of the device on the network.
# Name: MeadowF7V2_ConfigSample
# Main Device Config
Device:

# Uncomment if SD card hardware present on this hardware (e.g., Core-Compute module with SD add-on)? Optional; default value is `false`.
# SdStorageSupported: true
# Name of the device on the network.
Name: MeadowDevice

# Uncomment if SD card hardware present on this hardware
# (e.g., Core-Compute module with SD add-on)? Optional; default value is `false`.
# SdStorageSupported: true

# Control how the ESP coprocessor will start and operate.
#Coprocessor:
# Should the ESP32 automatically attempt to connect to an access point at startup?
# If set to true, wifi.config.yaml credentials must be stored in the device.
# AutomaticallyStartNetwork: true
Coprocessor:

# Should the ESP32 automatically attempt to connect to an access point at startup?
# If set to true, wifi.yaml credentials must be stored in the device.
# AutomaticallyStartNetwork: true

# Should the ESP32 automatically reconnect to the configured access point?
# AutomaticallyReconnect: true
# Should the ESP32 automatically reconnect to the configured access point?
# AutomaticallyReconnect: true

# Maximum number of retry attempts for connections etc. before an error code is returned.
# MaximumRetryCount: 7
# Maximum number of retry attempts for connections etc. before an error code is returned.
# MaximumRetryCount: 7

# Network configuration.
#Network:
# Interfaces:
# - Name: Ethernet
# UseDHCP: false
# IPAddress: 192.168.1.60
# NetMask: 255.255.255.0
# Gateway: 192.168.1.254
# - Name: WiFi
# UseDHCP: true
# IPAddress:
# NetMask:
# Gateway:

# Which interface should be used?
# DefaultInterface: WiFi

# Automatically attempt to get the time at startup?
# GetNetworkTimeAtStartup: true

# Time synchronization period in seconds.
# NtpRefreshPeriodSeconds: 600

# Name of the NTP servers.
# NtpServers:
# - 0.pool.ntp.org
# - 1.pool.ntp.org
# - 2.pool.ntp.org
# - 3.pool.ntp.org

# IP addresses of the DNS servers.
# DnsServers:
# - 1.1.1.1
# - 8.8.8.8
Network:

# Network Interface (Default value is WiFi with DHCP)
# Interfaces:
# - Name: Ethernet
# UseDHCP: false
# IPAddress: 192.168.1.60
# NetMask: 255.255.255.0
# Gateway: 192.168.1.254
# - Name: WiFi
# UseDHCP: true
# IPAddress:
# NetMask:
# Gateway:

# Default Interface
# DefaultInterface: Wifi

# Automatically attempt to get the time at startup?
# GetNetworkTimeAtStartup: true

# Time synchronization period in seconds.
# NtpRefreshPeriod: 600

# Name of the NTP servers.
# NtpServers:
# - 0.pool.ntp.org
# - 1.pool.ntp.org
# - 2.pool.ntp.org
# - 3.pool.ntp.org

# IP addresses of the DNS servers.
# DnsServers:
# - 1.1.1.1
# - 8.8.8.8
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
# To learn more about these config options, including custom application configuration settings, check out the Application Settings Configuration documentation.
# http://developer.wildernesslabs.co/Meadow/Meadow.OS/Configuration/WiFi_Configuration/

# # To enable automatically connecting to a default network, make sure to enable the Coprocessor > AutomaticallyStartNetwork value in meadow.config.yaml.
#Credentials:
# Ssid: YourSSID
# Password: SSIDPassword
# WiFi network credentials
Credentials:

# WiFi SSID
# Ssid: YourSSID

# WiFi Password
# Password: SSIDPassword
Original file line number Diff line number Diff line change
@@ -1,2 +1,21 @@
Update:
Enabled: true
# Uncomment additional options as needed.
# To learn more about these config options, including custom application configuration settings, check out the Application Settings Configuration documentation.
# http://developer.wildernesslabs.co/Meadow/Meadow.OS/Configuration/Application_Settings_Configuration/

# Logging configuration.
Logging:

# Adjust the level of logging detail.
LogLevel:

# Trace, Debug, Information, Warning, or Error
Default: Information

# Meadow.Cloud configuration.
MeadowCloud:

# Enable Logging, Events, Command + Control
# Enabled: false

# Enable Over-the-air Updates
# EnableUpdates: false
Original file line number Diff line number Diff line change
@@ -1,62 +1,62 @@
# Acceptable values for true: true, 1, yes
# Acceptable values for false: false, 0, no

# Main Device Config
Device:

# Name of the device on the network.
Name: MeadowDevice

# Uncomment if SD card hardware present on this hardware
# (e.g., Core-Compute module with SD add-on)? Optional; default value is `false`.
# SdStorageSupported: true

# Control how the ESP coprocessor will start and operate.
Coprocessor:

# Should the ESP32 automatically attempt to connect to an access point at startup?
# If set to true, wifi.yaml credentials must be stored in the device.
# AutomaticallyStartNetwork: true

# Should the ESP32 automatically reconnect to the configured access point?
# AutomaticallyReconnect: true

# Maximum number of retry attempts for connections etc. before an error code is returned.
# MaximumRetryCount: 7

# Network configuration.
Network:

# Network Interface (Default value is WiFi with DHCP)
# Interfaces:
# - Name: Ethernet
# UseDHCP: false
# IPAddress: 192.168.1.60
# NetMask: 255.255.255.0
# Gateway: 192.168.1.254
# - Name: WiFi
# UseDHCP: true
# IPAddress:
# NetMask:
# Gateway:

# Default Interface
# DefaultInterface: Wifi

# Automatically attempt to get the time at startup?
# GetNetworkTimeAtStartup: true

# Time synchronization period in seconds.
# NtpRefreshPeriod: 600

# Name of the NTP servers.
# NtpServers:
# - 0.pool.ntp.org
# - 1.pool.ntp.org
# - 2.pool.ntp.org
# - 3.pool.ntp.org

# IP addresses of the DNS servers.
# DnsServers:
# - 1.1.1.1
# Acceptable values for true: true, 1, yes
# Acceptable values for false: false, 0, no
# Main Device Config
Device:
# Name of the device on the network.
Name: MeadowDevice
# Uncomment if SD card hardware present on this hardware
# (e.g., Core-Compute module with SD add-on)? Optional; default value is `false`.
# SdStorageSupported: true
# Control how the ESP coprocessor will start and operate.
Coprocessor:
# Should the ESP32 automatically attempt to connect to an access point at startup?
# If set to true, wifi.yaml credentials must be stored in the device.
# AutomaticallyStartNetwork: true
# Should the ESP32 automatically reconnect to the configured access point?
# AutomaticallyReconnect: true
# Maximum number of retry attempts for connections etc. before an error code is returned.
# MaximumRetryCount: 7
# Network configuration.
Network:
# Network Interface (Default value is WiFi with DHCP)
# Interfaces:
# - Name: Ethernet
# UseDHCP: false
# IPAddress: 192.168.1.60
# NetMask: 255.255.255.0
# Gateway: 192.168.1.254
# - Name: WiFi
# UseDHCP: true
# IPAddress:
# NetMask:
# Gateway:
# Default Interface
# DefaultInterface: Wifi
# Automatically attempt to get the time at startup?
# GetNetworkTimeAtStartup: true
# Time synchronization period in seconds.
# NtpRefreshPeriod: 600
# Name of the NTP servers.
# NtpServers:
# - 0.pool.ntp.org
# - 1.pool.ntp.org
# - 2.pool.ntp.org
# - 3.pool.ntp.org
# IP addresses of the DNS servers.
# DnsServers:
# - 1.1.1.1
# - 8.8.8.8
Loading