-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for the ac remote Fujitsu AR-JE5 #780
Comments
News here. It seems that these remote models are the same (including Fujitsu, General, Hiyasu and Fuji Electric) And all of these AC models:
|
Hello everyone. In the latest versions of ESPHome, I was able to read the codes for the AR-JE5 remote. It would be great if this somehow helps in the implementation of a full-fledged component for "IR Remote Climate" |
I'm interested in it too. Did anyone here make any progress on that? I tried some codes contained in the project referenced by @migabit and works well (I tried the on/off codes with a template switch) |
I made some progress modifying the existing I'm using this board from dudanov with the following config: esphome:
name: bedroom-climate
friendly_name: bedroom-climate
esp8266:
board: esp01_1m
external_components:
- source: overriden_components
components: [ fujitsu_general ]
# Enable logging
logger:
baud_rate: 0
#level: VERBOSE
# Enable Home Assistant API
api:
encryption:
key: "encryption_key"
ota:
password: "ota_password"
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
# Enable fallback hotspot (captive portal) in case wifi connection fails
ap:
ssid: "Bedroom-Climate Fallback Hotspot"
password: "ap_password"
captive_portal:
# IR remote transmitter (IR- pad connected to TSOP output of controlled device)
remote_transmitter:
pin: GPIO13
carrier_duty_percent: 100%
remote_receiver:
id: rcvr
pin:
number: GPIO12
inverted: true
#dump: aeha
climate:
- platform: fujitsu_general
name: "Climatizador dormitorio"
receiver_id: rcvr Hope it helps! |
Please add support for the Fujitsu AR-JE5. A lot of Fujitsu models use these codes. |
Newbie question: How do you properly reference the modified components in "external_components:" from https://github.com/vicfergar/esphome/tree/feat/fujitsu-ar-je5 ? |
Yes, look at an example of my config
@vicfergar |
Thank you for your time on this @migabit ! |
Hello @vicfergar , thank you for your work, it is greatly appreciated. I currently have a Fujitsu model designed for domestic use in Japan, with the remote control model "ar-rlb2j". I have tried the official "fujitsu_general" and "heatpumpir" libraries from esphome, as well as your modified version, but unfortunately, none of them can control my air conditioner. Therefore, I plan to follow @migabit 's approach and record all possible combinations of temperature and mode using a receiver. My question is, how can I convert these combinations into a cpp code similar to what you have written? Thank you. ============ Update: esphome:
includes:
- fujitsu_ir.h
libraries:
- https://github.com/shimmy-void/IRremoteESP8266.git#bce5c0b0eeda8431a95d95c9947e4008bb0b982f
# ...
climate:
- platform: custom
lambda: |-
auto fujitsu_ac = new FujitsuAC();
App.register_component(fujitsu_ac);
return {fujitsu_ac};
climates:
- name: "Living Room Fujitsu AC" |
Thank you @migabit && @vicfergar !! Worked perfectly for a Fujitsu model ASU9CQ (remote model AR-JW28) Also, external components can be directly loaded from git which makes things a bit easier :
|
Describe the problem you have/What new integration you would like
The AC Remote Fujitsu AR-JE5 is not included in the list of compatible Fujitsu remotes of component climate fujitsu_general.
Please describe your use case for this integration and alternatives you've tried:
Additional context
Maybe the SmartIR Broadlink integration could help to identify the codes: https://github.com/smartHomeHub/SmartIR/blob/master/codes/climate/1286.json
The text was updated successfully, but these errors were encountered: