diff --git a/src/pages/configuration/configuration.html b/src/pages/configuration/configuration.html index 7554e13..bed9443 100644 --- a/src/pages/configuration/configuration.html +++ b/src/pages/configuration/configuration.html @@ -46,6 +46,10 @@ Humidity + + Pressure + + Lux diff --git a/src/pages/configuration/configuration.ts b/src/pages/configuration/configuration.ts index 1888955..74709f2 100644 --- a/src/pages/configuration/configuration.ts +++ b/src/pages/configuration/configuration.ts @@ -54,7 +54,7 @@ export class ConfigurationPage { var values = { SSID: this.ssid, PASSWORD:this.pw, - INGRESS_DOMAIN:"opensensemap.org", + INGRESS_DOMAIN:"ingress.opensensemap.org", SENSEBOX_ID:this.senseboxid, NUM_SENSORS:6, TEMPERSENSOR_ID:this.temp, @@ -67,13 +67,13 @@ export class ConfigurationPage { PM25SENSOR_ID:this.pm25 }; sketchy = this.applyTemplate(sketchy,values); - console.log(sketchy); }) /** * Start OTA Wizard here but with the pre defined sketch here and not with the blockly sketch * - * */ + ** + */ const sketch = 'void setup(){Serial.begin(9600);} void loop(){Serial.println("Working");}' this.navCtrl.push(OtaWizardPage, { sketchy }) }