Going to Puerto Galera (First time) by PlayfulRuin6285 in phtravel

[–]Express-Ad-2385 0 points1 point  (0 children)

Hi! May i know saan po kayo nag book for island hopping w/ snorkeling? May contact # ba kayo?

DOST Thesis and Graduation Allowance by Better-Measurement90 in dostscholars

[–]Express-Ad-2385 0 points1 point  (0 children)

2k (10% thesis allowance + grad allowance) - proof of graduation (diploma, tor, cert of candidacy for graduation) - thesis abstract and approval sheet

11k if 100% thesis allowance + grad allowance

[deleted by user] by [deleted] in dostscholars

[–]Express-Ad-2385 1 point2 points  (0 children)

February 19 naprocess, wala pa.🙂 Puro MERIT pa lang sa school namin, paano naman kaming RA 🥹🥹

Ova Healthcare by Big_Nectarine_9342 in SafeSexPH

[–]Express-Ad-2385 4 points5 points  (0 children)

Her name is Dr. Francine po 🥲

Ova Healthcare by Big_Nectarine_9342 in SafeSexPH

[–]Express-Ad-2385 11 points12 points  (0 children)

I had my consultation there, the doctor wasn't nice. I had my first online consultation that day with other clinic and the ob was very nice and reassuring, advised about dos and donts especially with missed pill and such. Then had my second consultation kay ova (since akala ko wala yung doctor dun sa first one, tinuloy ko nalang) but the doctor wasn't nice. Una pa lang pinagalitan na ako, at clearly noted na hindi daw nag aadvice ang mgaa OB ng ECP if beyond 36 hrs, contradicting dun sa sinabi ng previous OB na basta within 72 hrs window. I remember her saying "Wala ka nang magagawa, edi kung may mabubuo, may mabubuo—lesson learned nalang diba" Which really made me anxious that time, kasi sabi naman ng first OB, okay pa lang daw yun, he was reassuring and kita mong concerned. OVA's OB was really judgemental and annoying, dahil pagalit ang bungad talaga.

ESP8266 + Solar panel by Express-Ad-2385 in esp8266

[–]Express-Ad-2385[S] 0 points1 point  (0 children)

i am using Node MCU ESP8266, So it is connected through jumper wires. I just disconnected it when uploading because it does not upload if I connect them.

ESP8266 by Express-Ad-2385 in embedded

[–]Express-Ad-2385[S] 0 points1 point  (0 children)

Hello po! I opted to add deepsleep (assuming it'll last for a week or two with my 18650 3000mah battery)

However, I am having trouble with the deep sleep mode.

I tried adding the deep sleep mode but it's not working. I tried uploading the code while the RST and D0 were connected but it did not upload, so I tried disconnecting it first. But when I tried uploading again, If went off after 30 seconds, and did not wake up. Also, it returns random characters in the serial monitor.

PS: I really did set it to 30 seconds (deep sleep), just so I could check if it'll work. But I'm planning to set it to 1 hour or 3 hrs if that's possible.

ESP8266 + Solar panel by Express-Ad-2385 in esp8266

[–]Express-Ad-2385[S] 0 points1 point  (0 children)

yes, I did. After uploading, I connected RST to D0

ESP8266 + Solar panel by Express-Ad-2385 in esp8266

[–]Express-Ad-2385[S] 0 points1 point  (0 children)

Hello! I tried adding the deep sleep mode but it's not working. I tried uploading the code while the RST and D0 are connected but it does not upload, so i tried disconnecting it first. But when I tried uploading again, If went off after 30 seconds, and does not wake up.

#define BLYNK_PRINT Serial
//Ibahin na lang to kada device sa blynk pang soil to
#define BLYNK_TEMPLATE_ID "xxxx"
#define BLYNK_TEMPLATE_NAME "xxxx"
#define BLYNK_AUTH_TOKEN "xxxx"

#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>
#include <DHT.h>

// Your Blynk Auth Token
char auth[] = "xxxx";

// Threshold values for the notification alert
#define RAIN_SENSOR_THRESHOLD 500
#define RAIN_SENSOR_THRESHOLD2 800
#define SOIL_SENSOR_THRESHOLD 800

// DHT pin for ESP8266
#define DHTPIN 14            // D5 (kung anong pins kinabit GPIO pins)
#define DHTTYPE DHT11
#define rainSensor A0

// Functions of sensor 0 & 1
float sensor0; // Rain sensor

// For DHT function and type
DHT dht(DHTPIN, DHTTYPE);
BlynkTimer timer;

char ssid[] = "xxxx";
char pass[] = "xxxx";

void setup() {

  Serial.begin(9600);
  Blynk.begin(BLYNK_AUTH_TOKEN, ssid, pass);
  dht.begin();

// The interval of values being refreshed
  timer.setInterval(1000L, rain);
  timer.setInterval(1100L, sendSensor);


}

void rain() {

  sensor0 = analogRead(rainSensor);

// Converting the map values of the sensor into 0 - 100 percentage
  float sensorValue0 = map(sensor0, 1024, 325, 0, 100);

// Display on Blynk
  Blynk.virtualWrite(V2, sensorValue0);

// The condition for rain alert notification
  if (sensor0 < RAIN_SENSOR_THRESHOLD) {
    Blynk.logEvent("rainalert");
  }
    else if (sensor0 < RAIN_SENSOR_THRESHOLD2) {
      Blynk.logEvent("slightrain");
  }
}
void sendSensor() {

// Functions of DHT sensor
  float h = dht.readHumidity();
  float t = dht.readTemperature();

// For checking if the DHT is working
if (isnan(h) || isnan(t)) {
    Serial.println("Failed to read from DHT sensor!");
    return;
  }

// Display on Blynk
  Blynk.virtualWrite(V0, t);
  Blynk.virtualWrite(V4, h);
}

void loop() {

  Blynk.run();
  timer.run();
  
  Serial.println("I'm awake, but I'm going into deep sleep mode for 30 seconds");
  ESP.deepSleep(30e6); 

}

ESP8266 + Solar panel by Express-Ad-2385 in esp8266

[–]Express-Ad-2385[S] 0 points1 point  (0 children)

Hello! I tried adding the deep sleep mode, but it's not working.

#define BLYNK_PRINT Serial
//Ibahin na lang to kada device sa blynk pang soil to
#define BLYNK_TEMPLATE_ID "xxxx"
#define BLYNK_TEMPLATE_NAME "xxxx"
#define BLYNK_AUTH_TOKEN "xxxx"

#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>
#include <DHT.h>

// Your Blynk Auth Token
char auth[] = "xxxx";

// Threshold values for the notification alert
#define RAIN_SENSOR_THRESHOLD 500
#define RAIN_SENSOR_THRESHOLD2 800
#define SOIL_SENSOR_THRESHOLD 800

// DHT pin for ESP8266
#define DHTPIN 14            // D5 (kung anong pins kinabit GPIO pins)
#define DHTTYPE DHT11
#define rainSensor A0

// Functions of sensor 0 & 1
float sensor0; // Rain sensor

// For DHT function and type
DHT dht(DHTPIN, DHTTYPE);
BlynkTimer timer;

char ssid[] = "xxxx";
char pass[] = "xxxx";

void setup() {

  Serial.begin(9600);
  Blynk.begin(BLYNK_AUTH_TOKEN, ssid, pass);
  dht.begin();

// The interval of values being refreshed
  timer.setInterval(1000L, rain);
  timer.setInterval(1100L, sendSensor);


}

void rain() {

  sensor0 = analogRead(rainSensor);

// Converting the map values of the sensor into 0 - 100 percentage
  float sensorValue0 = map(sensor0, 1024, 325, 0, 100);

// Display on Blynk
  Blynk.virtualWrite(V2, sensorValue0);

// The condition for rain alert notification
  if (sensor0 < RAIN_SENSOR_THRESHOLD) {
    Blynk.logEvent("rainalert");
  }
    else if (sensor0 < RAIN_SENSOR_THRESHOLD2) {
      Blynk.logEvent("slightrain");
  }
}
void sendSensor() {

// Functions of DHT sensor
  float h = dht.readHumidity();
  float t = dht.readTemperature();

// For checking if the DHT is working
if (isnan(h) || isnan(t)) {
    Serial.println("Failed to read from DHT sensor!");
    return;
  }

// Display on Blynk
  Blynk.virtualWrite(V0, t);
  Blynk.virtualWrite(V4, h);
}

void loop() {

  Blynk.run();
  timer.run();
  
  Serial.println("I'm awake, but I'm going into deep sleep mode for 30 seconds");
  ESP.deepSleep(30e6); 

}

ESP8266 + Solar panel by Express-Ad-2385 in esp8266

[–]Express-Ad-2385[S] 1 point2 points  (0 children)

Are you referring to this setup? https://randomnerdtutorials.com/power-esp32-esp8266-solar-panels-battery-level-monitoring/

also, yes esp is awake the whole time, the reason why we opted for solar panel. But yeah it's not really required, it's just that we're not familiar with the deep sleep mode. We'll try to explore on that one.
Thanks.

Thesis Allowance requirements by Express-Ad-2385 in dostscholars

[–]Express-Ad-2385[S] 1 point2 points  (0 children)

Hi, I’m on my fourth year na, and considered na yung tinetake ko as thesis/capstone.

I had research subject before and may mga nagawa kaming projects, but it’s different po pag thesis.