Search found 10 matches

by ged
08 Mar 2019, 05:34
Forum: ESP Easy: Hardware
Topic: A bit confused about IR Receiver and IR Transmitter
Replies: 7
Views: 7448

Re: A bit confused about IR Receiver and IR Transmitter

Just to follow up on this. The Remote control repeats the signal several times, the unit needs this repeating to capture commands (maybe it's a sleep or maybe it's trying to filter out noise, not sure)... So for my ESP to reliably trigger the commands, I need it to repeat the pattern... In my case 3...
by ged
08 Mar 2019, 03:24
Forum: ESP Easy: Hardware
Topic: A bit confused about IR Receiver and IR Transmitter
Replies: 7
Views: 7448

Re: A bit confused about IR Receiver and IR Transmitter

@janjoh I have a Bionaire Space Heater, it has the same codes for 5 of the 6 buttons... because it only has 5 buttons! Based on the spreadsheet, I am able to get these codes to work though it often takes several send attempts ( EDIT: I think the unit may expect the code to be repeated a couple of ti...
by ged
30 May 2017, 22:21
Forum: ESP Easy: Hardware
Topic: IR Transmitter ?
Replies: 120
Views: 190490

Re: IR Transmitter ?

thanks ged, I have try and this is the result: Encoding : UNKNOWN Code : B3E2CB06 (32 bits) Timing[11]: + 450, - 450 + 400, - 400 + 500, - 400 + 400, - 450 + 400, - 450 + 450 unsigned int rawData[11] = {450,450, 400,400, 500,400, 400,450, 400,450, 450}; // UNKNOWN B3E2CB06 Encoding : SANYO Code : F...
by ged
30 May 2017, 20:15
Forum: ESP Easy: Hardware
Topic: IR Transmitter ?
Replies: 120
Views: 190490

Re: IR Transmitter ?

Yup okay, 400 works for both... So I guess the at the receiving end the signal is being processed as roughly a multiple of the pulse length (~ the min value)... that makes sense. Thanks for your help. So... did it work? Your device is working using the ESPEasy? I hope so!... :D Yup it does indeed.....
by ged
30 May 2017, 20:10
Forum: ESP Easy: Hardware
Topic: IR Transmitter ?
Replies: 120
Views: 190490

Re: IR Transmitter ?

Gustavo helped me, let me see if I can help you a bit... :) I suppose the code for IR transmitter with ESPEasy is NEC 800FF -> http://<ip address>/control?cmd=IRSEND,NEC,800FF It's correct? The syntax as documented suggests you need to provide the number of bits on the end of that. another question:...
by ged
30 May 2017, 19:59
Forum: ESP Easy: Hardware
Topic: IR Transmitter ?
Replies: 120
Views: 190490

Re: IR Transmitter ?

Yup okay, 400 works for both... So I guess the at the receiving end the signal is being processed as roughly a multiple of the pulse length (~ the min value)... that makes sense.

Thanks for your help.
by ged
30 May 2017, 18:22
Forum: ESP Easy: Hardware
Topic: IR Transmitter ?
Replies: 120
Views: 190490

Re: IR Transmitter ?

I'm now struggling with this as well... Trying to get a Bionaire Space Heater to do my bidding. I took a hack on the spreadsheet and added some code to do the Bin to Base32 in the sheet and used GCD to look for Pulse and Space... (my work is here: https://docs.google.com/spreadsheets/d/1tERsKhJf85v5...
by ged
15 Oct 2016, 20:04
Forum: ESP Easy: Software
Topic: HOWTO: Get sensor data into Home-Assistant
Replies: 0
Views: 3389

HOWTO: Get sensor data into Home-Assistant

Hi All, New ESP user, thought I'd share how I got sensor data into Home Assistant home automation suite. After pm_cz helped me get past my little IDX=0 problem, the key was getting the data as json . So http://<ESP>/json gets the data like: (<ESP> is the IP or hostname of your ESP device) { "Sy...
by ged
15 Oct 2016, 19:09
Forum: ESP Easy: Hardware
Topic: BMP280 (GY-BME/P280) Reading all 0.0's [FIXED: IDX/VAR was 0]
Replies: 8
Views: 22814

Re: GY-BME/P280 Reading all 0.0's

It would be good to include log messages and version of ESPEasy. Generally speaking, these boards typically include pull-up resistors so you do not have to use them. I suppose you have tried both plugins (Temperature & Humidity & Pressure - BME280, Temperature & Pressure - BMP280) and t...
by ged
15 Oct 2016, 07:40
Forum: ESP Easy: Hardware
Topic: BMP280 (GY-BME/P280) Reading all 0.0's [FIXED: IDX/VAR was 0]
Replies: 8
Views: 22814

BMP280 (GY-BME/P280) Reading all 0.0's [FIXED: IDX/VAR was 0]

Got a GY-BME/P280 which seems to be a hybrid of a BME280 and a BMP280, marketed as a BMP280. (CSB pin seems to be a chip selector from the doc I saw) When I connect it up and power cycle the ESP8266, I get "0x76 BME280/BMP280/MS5607/MS5611" from the i2c scanner. No matter what configuratio...