Search found 5 matches

by AggelosK
Mon Jan 22, 2024 6:34 pm
Forum: ESP32 Arduino
Topic: Issue with integrating sensor + WIFI
Replies: 8
Views: 49424

Re: Issue with integrating sensor + WIFI

Yeah, true. Well m not sure what else do i have as a solution.


Pardon for my inactivity, i got a lot of stuff to accomplish.
by AggelosK
Tue Jan 02, 2024 11:57 am
Forum: ESP32 Arduino
Topic: Issue with integrating sensor + WIFI
Replies: 8
Views: 49424

Re: Issue with integrating sensor + WIFI

Thank you for your response. I tried it but since it didnt have support for DHT11, i tried DHT22 and it worked perfectly. In the meantime, i tried with a different dht11 sensor however they both malfunctioned and produced the same wrong output. Should i consider that the sensor is way too slow and d...
by AggelosK
Sat Dec 30, 2023 7:48 pm
Forum: ESP32 Arduino
Topic: Issue with integrating sensor + WIFI
Replies: 8
Views: 49424

Re: Issue with integrating sensor + WIFI

Thank you for your response.

I intended to also add a vTaskDelay(pdMS_TO_TICKS(1000)) in the original code hwoever it still kept eventually showing wrong values. Positioning the taskcreation in the end still did not fix the issue. Nevertheless, i will take a look at the attached link.
by AggelosK
Wed Dec 27, 2023 7:44 pm
Forum: ESP32 Arduino
Topic: Issue with integrating sensor + WIFI
Replies: 8
Views: 49424

Re: Issue with integrating sensor + WIFI

Thank you for your reply. However, ive tried your solution and im still getting the same output. Removed the pinMode setting for the DHT pin, Code altered: [[noreturn]] void reader(void *pvParameters) { dht.begin(); //Changed location of the begin statement while (true) { if (WiFiClass::status() == ...
by AggelosK
Wed Dec 27, 2023 4:37 pm
Forum: ESP32 Arduino
Topic: Issue with integrating sensor + WIFI
Replies: 8
Views: 49424

Issue with integrating sensor + WIFI

Hello. I've came across an issue whiel trying to connect my sensor with my esp32s board. Code: #include <Arduino.h> #include <freertos/FreeRTOS.h> #include <freertos/task.h> #include <dht.h> #include <HTTPClient.h> #include <WiFi.h> #include <WiFiMulti.h> #include <WiFiClientSecure.h> #include <WebS...