Search found 4 matches

by geoffw123
Thu Aug 12, 2021 11:14 pm
Forum: General Discussion
Topic: ESP32 IR Receiver not working reliably
Replies: 0
Views: 2750

ESP32 IR Receiver not working reliably

I am trying to get an IR receiver (VS1838B i think) working with my ESP32 I have got it working but very unreliably, 1 time out of 10 it gets everything correct and reports NEC type remote with the correct code. 7 or so times out of 10 it reports unknown type with a consistent but wrong hex code. Th...
by geoffw123
Wed Dec 02, 2020 11:49 pm
Forum: ESP-IDF
Topic: HTTP Client Server question
Replies: 1
Views: 2248

HTTP Client Server question

I am running esp32 wifi HTTP client to connect to a PC Server It is basically working but the code I have got now is pretty crummy and does occasionally not get the full HTTP message containing a big JSON string. The examples I found online just assume the Server replies with a short response packet...
by geoffw123
Mon Nov 30, 2020 4:24 pm
Forum: ESP-IDF
Topic: Cant get Simple HTTP client working
Replies: 2
Views: 2913

Re: Cant get Simple HTTP client working

Hello Felix Thanks Man, I owe you a pint :) With a little bit more tinkering of the GET request msg that double linefeeds suggestion solved it for me !! For info the minimum working GET msg is client.print("GET /data.json HTTP/1.1\r\nHost: 192.168.0.4:8085\r\n\r\n"); That http GET request msg is far...
by geoffw123
Mon Nov 30, 2020 1:50 pm
Forum: ESP-IDF
Topic: Cant get Simple HTTP client working
Replies: 2
Views: 2913

Cant get Simple HTTP client working

Hello Newbie esp32 user here, making OK progress so far but cant get this simple HTTP client example working. I am using a neat free PC Utility Open hardware monitor ( https://openhardwaremonitor.org/downloads/ )). This App has a built in HTTP Server. I am running it on a remote laptop, I have opene...