Skip to content

Commit

Permalink
fix: change the upload interval range of LoRaPP device to [5, 43200]
Browse files Browse the repository at this point in the history
  • Loading branch information
KillingJacky committed Mar 18, 2020
1 parent 37bbbf2 commit 50619c6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "sensecap_node_cfg_tool",
"description": "SenseCAP Node Configuration Tool",
"version": "1.0.1",
"version": "1.0.2",
"homepage": "https://github.com/Seeed-Solution/SenseCAP-Node-Configuration-Tool",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions src/views/Home.vue
Expand Up @@ -224,12 +224,12 @@ export default {
this.labelAppEUI = 'App EUI'
this.labelAppKey = 'App Key'
this.appEUIRules = [this.rules.required, this.rules.eui16]
this.dataIntervalRules = [this.rules.required, this.rules.int, this.rules.rangeWAN]
// this.dataIntervalRules = [this.rules.required, this.rules.int, this.rules.rangeWAN]
} else if (newVal === 'LoRaPP') {
this.labelAppEUI = 'Key A'
this.labelAppKey = 'Key B'
this.appEUIRules = [this.rules.required, this.rules.eui32]
this.dataIntervalRules = [this.rules.required, this.rules.int, this.rules.rangePP]
// this.dataIntervalRules = [this.rules.required, this.rules.int, this.rules.rangePP]
}
},
locale(newVal, oldVal) {
Expand Down

0 comments on commit 50619c6

Please sign in to comment.