Skip to content
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

[NASA] Control Beep Sound #144

Open
hnykda opened this issue Jul 16, 2024 · 28 comments
Open

[NASA] Control Beep Sound #144

hnykda opened this issue Jul 16, 2024 · 28 comments

Comments

@hnykda
Copy link
Contributor

hnykda commented Jul 16, 2024

Hi,

my ACs have an option to turn on the beeping sound when controlling the AC. I can control this via a remote or via Smarthings app.

I am trying to figure out how to add this, so I found that there are two promising codes in NASA spec. I added custom sensors like this:

  devices:
    - address: "20.00.00"
      climate:
        name: "Haven room AC"
      custom_sensor:
        # NASA_USE_SILENCE
        - name: "Haven Silence Mode"
          message: 0x4046
        # NASA_CONTROL_SILENCE
        - name: "Haven Silence Mode Control"
          message: 0x4045

but they are always set to 0 and 1, respectively (I can see them being logged), even when I change the settings. So I suspect it's not the correct code (and these are just some hardcoded values).

Any idea how this can be added?

Here is a full log when I was trying to toggle these:
logs_ac-control-beta_logs.txt

It seems to be similar to e.g. me trying to figure out #121 . In that case though, I can't even see/find the right code.

@lanwin
Copy link
Owner

lanwin commented Jul 16, 2024

Hi @hnykda as I understand, the silence mode is a mode where the AC itself is more silent. I dont think this is related to the BEEP.

What you can to is to turnoff the BEEP multiple times and look if the log contains the an equal message all the times 0-3sec after you turned it off.

@hnykda
Copy link
Contributor Author

hnykda commented Jul 16, 2024

Yeah, I suspected something like that. So here I turned on the AC, and triggered the beep sound with the remote, and started checking logs for up to approx 10-30 seconds from that time. But it seems there is nothing useful? I asked chatgpt to find any inconsistencies, didn't find any, nor I can eyeball anything (it was on a unit with
address 20.00.00).

b.log
a.log

@lanwin
Copy link
Owner

lanwin commented Jul 18, 2024

When you do that via remote I would expect that. Then the Indoor unit receives the remote command and execute it directly without sending any status via BUS.

Can you check the same via Smartthing. There must be a message since there is no other way the command could be traval to to Indoor unit.

@hnykda
Copy link
Contributor Author

hnykda commented Jul 18, 2024

This is my config:

substitutions:
  name: ac-control-beta
  friendly_name: AC Control Beta (Eastern ACs)

esphome:
  name: ${name}
  friendly_name: ${friendly_name}
  min_version: 2024.6.0
  name_add_mac_suffix: false
  compile_process_limit: 1
  project:
    name: esphome.web
    version: "1.0"

esp32:
  board: esp32dev
  framework:
    type: esp-idf

logger:
  level: INFO
  baud_rate: 0
  logs:
    component: ERROR # Remove the "Your component takes to long to respond warning"

api:

ota:
  platform: esphome

wifi:
  ssid: !secret wifi_ssid
  password: !secret wifi_password

captive_portal:

uart:
  tx_pin: GPIO1
  rx_pin: GPIO3
  parity: EVEN
  baud_rate: 9600

## SAMSUNG AC CONFIGURATION
external_components:
  - source: github://lanwin/esphome_samsung_ac@6e7001c # latest commit on main as of June 30
    components: [samsung_ac]

# Configuration of AC component
samsung_ac:
  capabilities:
    vertical_swing: true
    horizontal_swing: true
    presets:
      quiet: true
      fast: true
      windfree: true
      sleep: true
  
  ### DEBUGGING
  debug_log_messages: true
  ### DEBUGGING

  non_nasa_keepalive: false

  devices:
    - address: "20.00.00"
      climate:
        name: "Haven room AC"
      room_temperature:
        name: "Haven room AC temperature"
      target_temperature:
        name: "Haven room AC target temperature"
      power:
        name: "Haven room AC power"
      mode:
        name: "Haven room AC mode"
      room_humidity:
        name: "Haven room AC humidity"
      room_temperature_offset: -1
      # https://github.com/lanwin/esphome_samsung_ac/issues/144
      # custom_sensor:
      #   - name: "Haven Silence Mode"
      #     message: 0x4046
      #   - name: "Haven Silence Mode 1"
      #     message: 0x4045
    - address: "20.00.01"
      climate:
        name: "Kitchen AC"
      room_temperature:
        name: "Kitchen AC temperature"
      target_temperature:
        name: "Kitchen AC target temperature"
      room_humidity:
        name: "Kitchen AC humidity"
      power:
        name: "Kitchen AC power"
      mode:
        name: "Kitchen AC mode"
      room_temperature_offset: -2

bluetooth_proxy:
  active: true

esp32_ble_tracker:
  scan_parameters:
    interval: 1100ms
    window: 1100ms
    active: true

And here I toggle Sound Effect on/off for 5 times on 20.00.00 device. I can hear how the unit beeps when toggling off/on. But I don't see anything new or weird in the logs for 20.00.00.

logs_ac-control-beta_logs (2).txt

I can see that some packets are skipped though. Will try with debug_log_messages_raw: true?

@hnykda
Copy link
Contributor Author

hnykda commented Jul 18, 2024

logs_ac-control-beta_run.txt

here is a similar try with raw messages. Same, some packets are skipped. Could it be that we can't parse them for whatever reason?

When I check the API on https://api.smartthings.com/v1/devices/{device-id}/status, I see that there is this diff:

image

@lanwin
Copy link
Owner

lanwin commented Jul 19, 2024

What do you mean by skipped? Debug Log should log everything witch could be decoded. But we dont use everything since we dont know the meaning of most of the messages.

Can you please make 3 examples where you change the volume from 100 to 0 with smartthings and three logs where that start exactly at the second where you made the change.

@mchiriciuc
Copy link

mchiriciuc commented Jul 20, 2024

Hi,
I have tried to find the same command but with a different approach: I used the mqtt logging and looked for a topic which changed it's value form 0 to 1 with the same pattern as my enable / disable BEEP from smartthings.
Found no message with that pattern.
I think that the indoor unit does not publish this (and the dispaly on/off) to the F1/F2 buss since it is for that internal unit only.

I found message 0x42e5 which is filter clean interval in hours (if it is usefull to anybody), and message 0x4222 which seems to be filter working hours since last cleaning. We need now just the reset filter message to be able to implement all indoor unit filter related functionality and be one step closer to get rid of smartthings.

I also found that message 0x8420 is providing energy consumption since last power on, and a custom sensor is working fine for it.

Let me know if I can test things to improve the project.

@lanwin
Copy link
Owner

lanwin commented Jul 22, 2024

Oh nice findings. Yes I think to only option would be to do it from Smartthings. Since there must be a message witch goes from Smartthings hub to the indoor unit via F1/F2.

@hnykda
Copy link
Contributor Author

hnykda commented Jul 22, 2024

What do you mean by skipped?

Well, the packet numbers are having gaps in them. That's what I meant. But I expected that what you said is happening - there are more packets flying around but only some are those we parse and show.

When you say debug log, do you mean the UART debug log or the raw messages? Because with raw messages I didn't seem to get any more of them. Does MQTT shows all, even the one it can't parse?

When I try toggling it and have mqtt logging on, I get e.g. this (which I am having a hard time to figure out):

170
244
242
235
200
0
1
0
0
0
0
0
0
65535
0
0
65535
2
0
2162687
13
0
91
0
0
0
1
0
0
0
255
255
255
0
1
1
1
255
255
0
0
0
0
0
0
0
0
255
255
0
255
0
255
0
0
255
128
0
70

65535
254
272
0
250
65535
500
480
480
480
480
480
0
0
0
0
60
165
0
0
0
65535
5
65535
65535
65535
170
243
245
65036
65036
940
243
245
65036
65036
940
12
65535
65535
282
6
17
0
0
51
0
65535
0
65535
6
10
9
0
11
0
34340864
0
0
0
28454
200
0
1
0
0
0
0
0
0
65535
0
0

btw. I don't have a hub when I tried that, this is all remotely from cloud.

@lanwin
Copy link
Owner

lanwin commented Jul 22, 2024

As far as I know, when you have Smart Thins connected to your AC, then you must have a device like "SAMSUNG | WiFi Interface MIM-H04EN | NASA" connected to your AC. That device connects your AC system to WIFI and makes a bridge or a hub to smartthings.

Can you post your device list that gets logged? I assume there must be 3 devices listed.

@hnykda
Copy link
Contributor Author

hnykda commented Jul 22, 2024

As far as I know, when you have Smart Thins connected to your AC, then you must have a device like "SAMSUNG | WiFi Interface MIM-H04EN | NASA" connected to your AC. That device connects your AC system to WIFI and makes a bridge or a hub to smartthings.

Then it has to be built in inside the AC. There was simply a guide in the manual to hold some button on remote for 5 seconds, the AC display showed "AP", and then I could add the (indoor) AC unit to my Smartthings.

Can you post your device list that gets logged? I assume there must be 3 devices listed.

Those are devices from here #144 (comment) - two indoor units. And then one outdoor unit. So that's the three you guessed?

@mchiriciuc
Copy link

My unit, and Daniel's units have WiFi built in. From the service manual (I'm a hardware engineer) for my unit, if you look at connectors descriptions, you will see that the connectors expose more than one UART oof the main processor for different purposes (COM1 is for programming the main processor CN230, COM2 is for the wired remote connector CN340 - this is the white connector from where you can "steal" 12V for the atom, and there is the CN390 connector for external Wi-Fi with MAIN_RX-WIFI_TX and MAIN_TX-WIFI_RX signals)

Same signals MAIN_TX-WIFI_RX and MAIN_TX-WIFI_TX can also be found on the display connector CN100.
I have to tear the indoor unit apart to see if the Wi-Fi module is connected to CN290 connector, or is soldered on the display module. No time yet, but soon.

But either way, it may be possible that not all Wi-Fi messages get to F1F2 bus. I will try to "spy" on MAIN_RX-WIFI_TX to see if those messages are also NASA structured or not and if we can decode them on the F1F2 bus. If we can find out what the message is and replicate it on the F1F2 bus, it "might" be processed by the indoor unit even it is not intended for that interface (makes sense to have only one message processing loop in software). We'll see, I'll keep you posted

My idea is: if we can use the Wired Remcon, RX and TX, so UART2 if I get it right, we can send messages that are getting 100% without errors to the mai processor, since it should not be possible to have packet collisions. The protocol should be the same, since the remcon is also NASA.

image

@hnykda
Copy link
Contributor Author

hnykda commented Jul 23, 2024

Wow. This is beyond my understanding, but sounds awesome! Thanks for doing this. Let me know if there is something I could help with.

@hnykda
Copy link
Contributor Author

hnykda commented Aug 25, 2024

I tried again with this commit 0e3463e and

  debug_log_undefined_messages: true

here is a log when I try turning on the beep via API (I turned it on somewhere after 22:08:04):

[22:07:58][I][app:100]: ESPHome version 2024.8.0 compiled on Aug 25 2024, 22:06:50
[22:08:04][W][samsung_ac:796]: MSG: #Packet Src:10.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 36}
 > Variable 202 = 65535
 > Variable 207 = 2
 > LongVariable 410 = 0
 > LongVariable 41b = 2162687
 > Variable 22f7 = 13
 > Variable 22f9 = 0
 > Variable 22fb = 89
 > Variable 22fd = 0
 > Enum 8000 = 0
 > Enum 8002 = 0
 > Enum 8003 = 1
 > Enum 800d = 0
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 202 = 65535
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 207 = 2
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff LongVariable 410 = 0
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff LongVariable 41b = 2162687
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 22f7 = 13
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 22f9 = 0
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 22fb = 89
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 22fd = 0
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8000 = 0
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8002 = 0
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8003 = 1
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 800d = 0
[22:08:04][W][samsung_ac:796]: MSG: #Packet Src:10.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 37}
 > Structure #608 = 10
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Structure #608 = 10
[22:08:04][W][samsung_ac:796]: MSG: #Packet Src:10.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 38}
 > Structure #60c = 7
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Structure #60c = 7
[22:08:04][W][samsung_ac:796]: MSG: #Packet Src:10.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 39}
 > Enum 8010 = 0
 > Enum 801a = 0
 > Enum 8020 = 255
 > Enum 8030 = 255
 > Enum 8032 = 255
 > Enum 8033 = 0
 > Enum 8043 = 1
 > Enum 8045 = 1
 > Enum 8046 = 1
 > Enum 8047 = 255
 > Enum 8048 = 255
 > Enum 8061 = 0
 > Enum 8066 = 0
 > Enum 8077 = 0
 > Enum 807c = 0
 > Enum 807d = 0
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8010 = 0
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 801a = 0
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8020 = 255
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8030 = 255
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8032 = 255
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8033 = 0
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8043 = 1
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8045 = 1
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8046 = 1
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8047 = 255
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8048 = 255
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8061 = 0
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8066 = 0
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8077 = 0
[22:08:04][W][samsung_ac:796]: MSG: #Packet Src:10.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 41}
 > Variable 8202 = 65535
 > Variable 8204 = 181
 > Variable 820a = 245
 > Variable 8217 = 0
 > Variable 8218 = 210
 > Variable 821a = 65535
 > Variable 8223 = 310
 > Variable 8229 = 480
 > Variable 822a = 480
 > Variable 822b = 480
 > Variable 822c = 480
 > Variable 822d = 480
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8202 = 65535
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 820a = 245
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8217 = 0
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8218 = 210
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 821a = 65535
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8223 = 310
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8229 = 480
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 822a = 480
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 822b = 480
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 822c = 480
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 822d = 480
[22:08:04][W][samsung_ac:796]: MSG: #Packet Src:10.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 42}
 > Variable 8233 = 0
 > Variable 8236 = 0
 > Variable 8237 = 0
 > Variable 8238 = 0
 > Variable 8239 = 60
 > Variable 823b = 163
 > Variable 823d = 0
 > Variable 823e = 0
 > Variable 8247 = 0
 > Variable 8248 = 65535
 > Variable 8249 = 5
 > Variable 824b = 65535
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8233 = 0
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8236 = 0
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8237 = 0
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8238 = 0
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8239 = 60
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 823b = 163
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 823d = 0
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 823e = 0
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8247 = 0
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8248 = 65535
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8249 = 5
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 824b = 65535
[22:08:04][W][samsung_ac:796]: MSG: #Packet Src:10.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 43}
 > Variable 824c = 65535
 > Variable 824f = 65535
 > Variable 8254 = 130
 > Variable 825f = 213
 > Variable 8260 = 199
 > Variable 8261 = 65036
 > Variable 8262 = 65036
 > Variable 8263 = 940
 > Variable 8264 = 213
 > Variable 8265 = 212
 > Variable 8266 = 65036
 > Variable 8267 = 65036
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 824c = 65535
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 824f = 65535
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8254 = 130
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 825f = 213
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8260 = 199
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8261 = 65036
[22:08:04][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8262 = 65036
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8263 = 940
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8264 = 213
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8265 = 212
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8266 = 65036
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8267 = 65036
[22:08:05][W][samsung_ac:796]: MSG: #Packet Src:10.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 44}
 > Variable 8268 = 940
 > Variable 826a = 12
 > Variable 8274 = 65535
 > Variable 8275 = 65535
 > Variable 8280 = 270
 > Variable 8287 = 6
 > Variable 82a1 = 23
 > Variable 82b5 = 0
 > Variable 82b6 = 0
 > Variable 82bc = 51
 > Variable 82d9 = 0
 > Variable 82da = 65535
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8268 = 940
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 826a = 12
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8274 = 65535
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8275 = 65535
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8280 = 270
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8287 = 6
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82a1 = 23
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82b5 = 0
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82b6 = 0
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82bc = 51
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82d9 = 0
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82da = 65535
[22:08:05][W][samsung_ac:796]: MSG: #Packet Src:10.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 45}
 > Variable 82db = 0
 > Variable 82dd = 65535
 > Variable 82e3 = 6
 > Variable 82e5 = 12
 > Variable 82e6 = 13
 > Variable 82ee = 0
 > Variable 82ef = 14
 > LongVariable 8408 = 0
 > LongVariable 840a = 35651584
 > LongVariable 8410 = 0
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82db = 0
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82dd = 65535
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82e3 = 6
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82e5 = 12
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82e6 = 13
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82ee = 0
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82ef = 14
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff LongVariable 8408 = 0
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff LongVariable 840a = 35651584
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff LongVariable 8410 = 0
[22:08:05][W][samsung_ac:796]: MSG: #Packet Src:10.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 46}
 > LongVariable 8411 = 0
 > LongVariable 8413 = 0
 > LongVariable 8414 = 60939
[22:08:05][W][samsung_ac:796]: MSG: #Packet Src:10.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 47}
 > Structure #8601 = 35
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Structure #8601 = 35
[22:08:05][W][samsung_ac:796]: MSG: #Packet Src:10.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 48}
 > Structure #8608 = 20
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Structure #8608 = 20
[22:08:05][W][samsung_ac:796]: MSG: #Packet Src:10.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 49}
 > Structure #860c = 5
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Structure #860c = 5
[22:08:05][W][samsung_ac:796]: MSG: #Packet Src:10.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 50}
 > Structure #860d = 5
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Structure #860d = 5
[22:08:05][W][samsung_ac:796]: MSG: #Packet Src:10.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 52}
 > Variable 823f = 200
 > Enum 8001 = 0
 > Enum 8003 = 1
 > Enum 808d = 0
 > Enum 803f = 0
 > Variable 8243 = 0
 > Variable 8235 = 0
 > Enum 805e = 0
 > Enum 8031 = 0
 > Variable 8248 = 65535
 > Enum 801a = 0
 > Variable 82d4 = 0
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 823f = 200
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8001 = 0
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8003 = 1
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 808d = 0
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 803f = 0
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8243 = 0
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8235 = 0
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 805e = 0
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8031 = 0
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8248 = 65535
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 801a = 0
[22:08:05][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82d4 = 0
[22:08:08][W][samsung_ac:796]: MSG: #Packet Src:10.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 56}
 > Variable 823f = 200
 > Enum 8001 = 0
 > Enum 8003 = 1
 > Enum 808d = 0
 > Enum 803f = 0
 > Variable 8243 = 0
 > Variable 8235 = 0
 > Enum 805e = 0
 > Enum 8031 = 0
 > Variable 8248 = 65535
 > Enum 801a = 0
 > Variable 82d4 = 0
[22:08:08][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 823f = 200
[22:08:08][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8001 = 0
[22:08:08][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8003 = 1
[22:08:08][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 808d = 0
[22:08:08][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 803f = 0
[22:08:08][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8243 = 0
[22:08:08][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8235 = 0
[22:08:08][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 805e = 0
[22:08:08][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8031 = 0
[22:08:08][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8248 = 65535
[22:08:08][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 801a = 0
[22:08:08][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82d4 = 0
[22:08:10][W][samsung_ac:796]: MSG: #Packet Src:20.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 253}
 > Variable 4202 = 190
 > Variable 4203 = 238
 > Variable 4205 = 230
 > Variable 4206 = 227
[22:08:10][W][samsung_ac:773]: Undefined s:20.00.00 d:b0.00.ff Variable 4202 = 190
[22:08:11][W][samsung_ac:796]: MSG: #Packet Src:10.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 60}
 > Variable 823f = 200
 > Enum 8001 = 0
 > Enum 8003 = 1
 > Enum 808d = 0
 > Enum 803f = 0
 > Variable 8243 = 0
 > Variable 8235 = 0
 > Enum 805e = 0
 > Enum 8031 = 0
 > Variable 8248 = 65535
 > Enum 801a = 0
 > Variable 82d4 = 0
[22:08:11][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 823f = 200
[22:08:11][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8001 = 0
[22:08:11][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8003 = 1
[22:08:11][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 808d = 0
[22:08:11][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 803f = 0
[22:08:11][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8243 = 0
[22:08:11][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8235 = 0
[22:08:11][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 805e = 0
[22:08:11][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8031 = 0
[22:08:11][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8248 = 65535
[22:08:11][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 801a = 0
[22:08:11][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82d4 = 0
[22:08:12][W][samsung_ac:796]: MSG: #Packet Src:20.00.01 Dst:b3.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 227}
 > Enum 23 = 0
 > Enum 4000 = 0
 > Enum 4001 = 1
 > Enum 4002 = 1
 > Enum 4006 = 0
 > Enum 4038 = 49
 > Enum 4132 = 3
 > Variable 4201 = 230
 > Variable 4202 = 230
 > Variable 4203 = 250
 > Variable 4205 = 246
 > Variable 4206 = 251
 > Variable 421c = 0
[22:08:12][W][samsung_ac:773]: Undefined s:20.00.01 d:b3.00.ff Enum 23 = 0
[22:08:12][W][samsung_ac:773]: Undefined s:20.00.01 d:b3.00.ff Enum 4002 = 1
[22:08:12][W][samsung_ac:773]: Undefined s:20.00.01 d:b3.00.ff Enum 4132 = 3
[22:08:12][W][samsung_ac:773]: Undefined s:20.00.01 d:b3.00.ff Variable 4202 = 230
[22:08:12][W][samsung_ac:773]: Undefined s:20.00.01 d:b3.00.ff Variable 421c = 0
[22:08:12][W][samsung_ac:796]: MSG: #Packet Src:20.00.01 Dst:b3.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 228}
 > Variable 4285 = 0
 > Variable 429d = 0
 > Variable 42d1 = 65535
 > Variable 42d2 = 65535
 > Variable 42d3 = 65535
[22:08:12][W][samsung_ac:773]: Undefined s:20.00.01 d:b3.00.ff Variable 4285 = 0
[22:08:12][W][samsung_ac:773]: Undefined s:20.00.01 d:b3.00.ff Variable 429d = 0
[22:08:12][W][samsung_ac:773]: Undefined s:20.00.01 d:b3.00.ff Variable 42d1 = 65535
[22:08:12][W][samsung_ac:773]: Undefined s:20.00.01 d:b3.00.ff Variable 42d2 = 65535
[22:08:12][W][samsung_ac:773]: Undefined s:20.00.01 d:b3.00.ff Variable 42d3 = 65535
[22:08:14][W][samsung_ac:796]: MSG: #Packet Src:10.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 64}
 > Variable 823f = 200
 > Enum 8001 = 0
 > Enum 8003 = 1
 > Enum 808d = 0
 > Enum 803f = 0
 > Variable 8243 = 0
 > Variable 8235 = 0
 > Enum 805e = 0
 > Enum 8031 = 0
 > Variable 8248 = 65535
 > Enum 801a = 0
 > Variable 82d4 = 0
[22:08:14][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 823f = 200
[22:08:14][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8001 = 0
[22:08:14][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8003 = 1
[22:08:14][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 808d = 0
[22:08:14][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 803f = 0
[22:08:14][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8243 = 0
[22:08:14][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8235 = 0
[22:08:14][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 805e = 0
[22:08:14][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8031 = 0
[22:08:14][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8248 = 65535
[22:08:14][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 801a = 0
[22:08:14][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82d4 = 0
[22:08:15][W][samsung_ac:796]: MSG: #Packet Src:10.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 65}
 > Variable 202 = 65535
 > LongVariable 410 = 0
 > LongVariable 41b = 2162687
 > Enum 8000 = 0
 > Enum 8002 = 0
 > Enum 8003 = 1
 > Enum 800d = 0
 > Enum 8010 = 0
 > Enum 801a = 0
 > Enum 8020 = 255
 > Enum 8030 = 255
 > Enum 8032 = 255
 > Enum 8033 = 0
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 202 = 65535
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff LongVariable 410 = 0
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff LongVariable 41b = 2162687
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8000 = 0
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8002 = 0
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8003 = 1
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 800d = 0
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8010 = 0
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 801a = 0
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8020 = 255
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8030 = 255
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8032 = 255
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8033 = 0
[22:08:15][W][samsung_ac:796]: MSG: #Packet Src:10.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 66}
 > Enum 8043 = 1
 > Enum 8045 = 1
 > Enum 8046 = 1
 > Enum 8047 = 255
 > Enum 8048 = 255
 > Enum 8061 = 0
 > Enum 8066 = 0
 > Enum 8077 = 0
 > Enum 807c = 0
 > Enum 807d = 0
 > Enum 807e = 0
 > Enum 8081 = 0
 > Enum 808c = 0
 > Enum 808e = 255
 > Enum 808f = 255
 > Enum 809d = 0
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8043 = 1
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8045 = 1
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8046 = 1
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8047 = 255
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8048 = 255
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8061 = 0
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8066 = 0
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8077 = 0
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 807c = 0
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 807d = 0
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 807e = 0
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8081 = 0
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 808c = 0
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 808e = 255
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 808f = 255
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 809d = 0
[22:08:15][W][samsung_ac:796]: MSG: #Packet Src:10.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 67}
 > Enum 80a7 = 255
 > Enum 80a8 = 0
 > Enum 80a9 = 255
 > Enum 80aa = 0
 > Enum 80ab = 0
 > Enum 80af = 255
 > Enum 80b2 = 128
 > Variable 8204 = 181
 > Variable 820a = 245
 > Variable 8217 = 0
 > Variable 8218 = 208
 > Variable 821a = 65535
 > Variable 8223 = 310
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 80a7 = 255
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 80a8 = 0
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 80a9 = 255
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 80aa = 0
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 80ab = 0
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 80af = 255
[22:08:15][W][samsung_ac:796]: MSG: #Packet Src:10.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 68}
 > Variable 8229 = 480
 > Variable 822a = 480
 > Variable 822b = 480
 > Variable 822c = 480
 > Variable 822d = 480
 > Variable 8233 = 0
 > Variable 8236 = 0
 > Variable 8237 = 0
 > Variable 8238 = 0
 > Variable 8239 = 60
 > Variable 823b = 165
 > Variable 823d = 0
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8229 = 480
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 822a = 480
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 822b = 480
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 822c = 480
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 822d = 480
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8233 = 0
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8236 = 0
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8237 = 0
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8238 = 0
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8239 = 60
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 823b = 165
[22:08:15][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 823d = 0
[22:08:16][W][samsung_ac:796]: MSG: #Packet Src:10.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 69}
 > Variable 823e = 0
 > Variable 8247 = 0
 > Variable 8248 = 65535
 > Variable 8249 = 5
 > Variable 824b = 65535
 > Variable 824c = 65535
 > Variable 824f = 65535
 > Variable 8254 = 130
 > Variable 825f = 213
 > Variable 8260 = 199
 > Variable 8261 = 65036
 > Variable 8262 = 65036
[22:08:16][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 823e = 0
[22:08:16][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8247 = 0
[22:08:16][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8248 = 65535
[22:08:16][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8249 = 5
[22:08:16][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 824b = 65535
[22:08:16][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 824c = 65535
[22:08:16][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 824f = 65535
[22:08:16][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8254 = 130
[22:08:16][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 825f = 213
[22:08:16][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8260 = 199
[22:08:16][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8261 = 65036
[22:08:16][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8262 = 65036
[22:08:16][W][samsung_ac:796]: MSG: #Packet Src:10.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 70}
 > Variable 8263 = 940
 > Variable 8264 = 213
 > Variable 8265 = 212
 > Variable 8266 = 65036
 > Variable 8267 = 65036
 > Variable 8268 = 940
 > Variable 826a = 12
 > Variable 8274 = 65535
 > Variable 8275 = 65535
 > Variable 8280 = 266
 > Variable 82a1 = 23
 > Variable 82b6 = 0
[22:08:16][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8263 = 940
[22:08:16][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8264 = 213
[22:08:16][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8265 = 212
[22:08:16][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8266 = 65036
[22:08:16][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8267 = 65036
[22:08:16][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8268 = 940
[22:08:16][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 826a = 12
[22:08:16][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8274 = 65535
[22:08:16][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8275 = 65535
[22:08:16][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8280 = 266
[22:08:16][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82a1 = 23
[22:08:16][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82b6 = 0
[22:08:16][W][samsung_ac:796]: MSG: #Packet Src:10.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 71}
 > Variable 82bc = 51
 > Variable 82d9 = 0
 > Variable 82da = 65535
 > Variable 82db = 0
 > Variable 82dd = 65535
 > Variable 82e3 = 6
 > Variable 82e5 = 12
 > Variable 82e6 = 13
 > Variable 82ee = 0
 > Variable 82ef = 14
 > LongVariable 8408 = 0
[22:08:16][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82bc = 51
[22:08:16][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82d9 = 0
[22:08:16][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82da = 65535
[22:08:16][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82db = 0
[22:08:16][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82dd = 65535
[22:08:16][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82e3 = 6
[22:08:16][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82e5 = 12
[22:08:16][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82e6 = 13
[22:08:16][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82ee = 0
[22:08:16][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82ef = 14
[22:08:16][W][samsung_ac:796]: MSG: #Packet Src:10.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 72}
 > LongVariable 840a = 35651584
 > LongVariable 8410 = 0
[22:08:16][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff LongVariable 840a = 35651584
[22:08:16][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff LongVariable 8410 = 0
[22:08:16][W][samsung_ac:796]: MSG: #Packet Src:10.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 73}
 > Structure #8601 = 35
[22:08:16][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Structure #8601 = 35
[22:08:17][W][samsung_ac:796]: MSG: #Packet Src:10.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 76}
 > Variable 823f = 200
 > Enum 8001 = 0
 > Enum 8003 = 1
 > Enum 808d = 0
 > Enum 803f = 0
 > Variable 8243 = 0
 > Variable 8235 = 0
 > Enum 805e = 0
 > Enum 8031 = 0
 > Variable 8248 = 65535
 > Enum 801a = 0
 > Variable 82d4 = 0
[22:08:17][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 823f = 200
[22:08:17][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8001 = 0
[22:08:17][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8003 = 1
[22:08:17][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 808d = 0
[22:08:17][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 803f = 0
[22:08:17][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8243 = 0
[22:08:17][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8235 = 0
[22:08:17][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 805e = 0
[22:08:17][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8031 = 0
[22:08:17][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8248 = 65535
[22:08:17][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 801a = 0
[22:08:17][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82d4 = 0
[22:08:20][W][samsung_ac:796]: MSG: #Packet Src:20.00.00 Dst:b3.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 8}
 > Enum 23 = 0
 > Enum 4000 = 0
 > Enum 4001 = 1
 > Enum 4002 = 1
 > Enum 4006 = 0
 > Enum 4038 = 54
 > Enum 4132 = 3
 > Variable 4201 = 190
 > Variable 4202 = 190
 > Variable 4203 = 238
 > Variable 4205 = 230
 > Variable 4206 = 227
 > Variable 421c = 0
[22:08:20][W][samsung_ac:773]: Undefined s:20.00.00 d:b3.00.ff Enum 23 = 0
[22:08:20][W][samsung_ac:773]: Undefined s:20.00.00 d:b3.00.ff Enum 4002 = 1
[22:08:20][W][samsung_ac:773]: Undefined s:20.00.00 d:b3.00.ff Enum 4132 = 3
[22:08:20][W][samsung_ac:773]: Undefined s:20.00.00 d:b3.00.ff Variable 4202 = 190
[22:08:20][W][samsung_ac:773]: Undefined s:20.00.00 d:b3.00.ff Variable 421c = 0
[22:08:20][W][samsung_ac:796]: MSG: #Packet Src:20.00.00 Dst:b3.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 9}
 > Variable 4285 = 0
 > Variable 429d = 0
 > Variable 42d1 = 65535
 > Variable 42d2 = 65535
 > Variable 42d3 = 65535
[22:08:20][W][samsung_ac:773]: Undefined s:20.00.00 d:b3.00.ff Variable 4285 = 0
[22:08:20][W][samsung_ac:773]: Undefined s:20.00.00 d:b3.00.ff Variable 429d = 0
[22:08:20][W][samsung_ac:773]: Undefined s:20.00.00 d:b3.00.ff Variable 42d1 = 65535
[22:08:20][W][samsung_ac:773]: Undefined s:20.00.00 d:b3.00.ff Variable 42d2 = 65535
[22:08:20][W][samsung_ac:773]: Undefined s:20.00.00 d:b3.00.ff Variable 42d3 = 65535
[22:08:20][W][samsung_ac:796]: MSG: #Packet Src:10.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 80}
 > Variable 823f = 200
 > Enum 8001 = 0
 > Enum 8003 = 1
 > Enum 808d = 0
 > Enum 803f = 0
 > Variable 8243 = 0
 > Variable 8235 = 0
 > Enum 805e = 0
 > Enum 8031 = 0
 > Variable 8248 = 65535
 > Enum 801a = 0
 > Variable 82d4 = 0
[22:08:20][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 823f = 200
[22:08:20][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8001 = 0
[22:08:20][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8003 = 1
[22:08:20][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 808d = 0
[22:08:20][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 803f = 0
[22:08:20][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8243 = 0
[22:08:20][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8235 = 0
[22:08:20][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 805e = 0
[22:08:20][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8031 = 0
[22:08:20][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8248 = 65535
[22:08:20][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 801a = 0
[22:08:20][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82d4 = 0
[22:08:22][W][samsung_ac:796]: MSG: #Packet Src:20.00.01 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 239}
 > Variable 4202 = 230
 > Variable 4203 = 248
 > Variable 4205 = 247
 > Variable 4206 = 251
[22:08:22][W][samsung_ac:773]: Undefined s:20.00.01 d:b0.00.ff Variable 4202 = 230
[22:08:23][W][samsung_ac:796]: MSG: #Packet Src:10.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 84}
 > Variable 823f = 200
 > Enum 8001 = 0
 > Enum 8003 = 1
 > Enum 808d = 0
 > Enum 803f = 0
 > Variable 8243 = 0
 > Variable 8235 = 0
 > Enum 805e = 0
 > Enum 8031 = 0
 > Variable 8248 = 65535
 > Enum 801a = 0
 > Variable 82d4 = 0
[22:08:23][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 823f = 200
[22:08:23][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8001 = 0
[22:08:23][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8003 = 1
[22:08:23][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 808d = 0
[22:08:23][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 803f = 0
[22:08:23][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8243 = 0
[22:08:23][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8235 = 0
[22:08:23][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 805e = 0
[22:08:23][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8031 = 0
[22:08:23][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8248 = 65535
[22:08:23][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 801a = 0
[22:08:23][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82d4 = 0
[22:08:26][W][samsung_ac:796]: MSG: #Packet Src:10.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 87}
 > Variable 202 = 65535
 > LongVariable 410 = 0
 > LongVariable 41b = 2162687
 > Enum 8000 = 0
 > Enum 8002 = 0
 > Enum 8003 = 1
 > Enum 800d = 0
 > Enum 8010 = 0
 > Enum 801a = 0
 > Enum 8020 = 255
 > Enum 8030 = 255
 > Enum 8032 = 255
 > Enum 8033 = 0
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 202 = 65535
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff LongVariable 410 = 0
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff LongVariable 41b = 2162687
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8000 = 0
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8002 = 0
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8003 = 1
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 800d = 0
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8010 = 0
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 801a = 0
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8020 = 255
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8030 = 255
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8032 = 255
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8033 = 0
[22:08:26][W][samsung_ac:796]: MSG: #Packet Src:10.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 88}
 > Enum 8043 = 1
 > Enum 8045 = 1
 > Enum 8046 = 1
 > Enum 8047 = 255
 > Enum 8048 = 255
 > Enum 8061 = 0
 > Enum 8066 = 0
 > Enum 8077 = 0
 > Enum 807c = 0
 > Enum 807d = 0
 > Enum 807e = 0
 > Enum 8081 = 0
 > Enum 808c = 0
 > Enum 808e = 255
 > Enum 808f = 255
 > Enum 809d = 0
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8043 = 1
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8045 = 1
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8046 = 1
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8047 = 255
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8048 = 255
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8061 = 0
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8066 = 0
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8077 = 0
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 807c = 0
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 807d = 0
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 807e = 0
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8081 = 0
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 808c = 0
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 808e = 255
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 808f = 255
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 809d = 0
[22:08:26][W][samsung_ac:796]: MSG: #Packet Src:10.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 89}
 > Enum 80a7 = 255
 > Enum 80a8 = 0
 > Enum 80a9 = 255
 > Enum 80aa = 0
 > Enum 80ab = 0
 > Enum 80af = 255
 > Enum 80b2 = 128
 > Variable 8204 = 181
 > Variable 820a = 245
 > Variable 8217 = 0
 > Variable 8218 = 208
 > Variable 821a = 65535
 > Variable 8223 = 310
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 80a7 = 255
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 80a8 = 0
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 80a9 = 255
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 80aa = 0
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 80ab = 0
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 80af = 255
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 80b2 = 128
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 820a = 245
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8217 = 0
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8218 = 208
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 821a = 65535
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8223 = 310
[22:08:26][W][samsung_ac:796]: MSG: #Packet Src:10.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 90}
 > Variable 8229 = 480
 > Variable 822a = 480
 > Variable 822b = 480
 > Variable 822c = 480
 > Variable 822d = 480
 > Variable 8233 = 0
 > Variable 8236 = 0
 > Variable 8237 = 0
 > Variable 8238 = 0
 > Variable 8239 = 60
 > Variable 823b = 164
 > Variable 823d = 0
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8229 = 480
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 822a = 480
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 822b = 480
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 822c = 480
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 822d = 480
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8233 = 0
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8236 = 0
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8237 = 0
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8238 = 0
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8239 = 60
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 823b = 164
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 823d = 0
[22:08:26][W][samsung_ac:796]: MSG: #Packet Src:10.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 91}
 > Variable 823e = 0
 > Variable 8247 = 0
 > Variable 8248 = 65535
 > Variable 8249 = 5
 > Variable 824b = 65535
 > Variable 824c = 65535
 > Variable 824f = 65535
 > Variable 8254 = 130
 > Variable 825f = 213
 > Variable 8260 = 199
 > Variable 8261 = 65036
 > Variable 8262 = 65036
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 823e = 0
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8247 = 0
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8248 = 65535
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8249 = 5
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 824b = 65535
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 824c = 65535
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 824f = 65535
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8254 = 130
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 825f = 213
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8260 = 199
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8261 = 65036
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8262 = 65036
[22:08:26][W][samsung_ac:796]: MSG: #Packet Src:10.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 92}
 > Variable 8263 = 940
 > Variable 8264 = 212
 > Variable 8265 = 212
 > Variable 8266 = 65036
 > Variable 8267 = 65036
 > Variable 8268 = 940
 > Variable 826a = 12
 > Variable 8274 = 65535
 > Variable 8275 = 65535
 > Variable 8280 = 266
 > Variable 82a1 = 23
 > Variable 82b6 = 0
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8263 = 940
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8264 = 212
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8265 = 212
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8266 = 65036
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8267 = 65036
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8268 = 940
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 826a = 12
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8274 = 65535
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8275 = 65535
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8280 = 266
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82a1 = 23
[22:08:26][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82b6 = 0
[22:08:27][W][samsung_ac:796]: MSG: #Packet Src:10.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 93}
 > Variable 82bc = 51
 > Variable 82d9 = 0
 > Variable 82da = 65535
 > Variable 82db = 0
 > Variable 82dd = 65535
 > Variable 82e3 = 6
 > Variable 82e5 = 12
 > Variable 82e6 = 13
 > Variable 82ee = 0
 > Variable 82ef = 14
 > LongVariable 8408 = 0
[22:08:27][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82bc = 51
[22:08:27][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82d9 = 0
[22:08:27][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82da = 65535
[22:08:27][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82db = 0
[22:08:27][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82dd = 65535
[22:08:27][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82e3 = 6
[22:08:27][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82e5 = 12
[22:08:27][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82e6 = 13
[22:08:27][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82ee = 0
[22:08:27][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82ef = 14
[22:08:27][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff LongVariable 8408 = 0
[22:08:27][W][samsung_ac:796]: MSG: #Packet Src:10.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 94}
 > LongVariable 840a = 35651584
 > LongVariable 8410 = 0
[22:08:27][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff LongVariable 840a = 35651584
[22:08:27][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff LongVariable 8410 = 0
[22:08:27][W][samsung_ac:796]: MSG: #Packet Src:10.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 95}
 > Structure #8601 = 35
[22:08:27][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Structure #8601 = 35
[22:08:27][W][samsung_ac:796]: MSG: #Packet Src:10.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 97}
 > Variable 823f = 200
 > Enum 8001 = 0
 > Enum 8003 = 1
 > Enum 808d = 0
 > Enum 803f = 0
 > Variable 8243 = 0
 > Variable 8235 = 0
 > Enum 805e = 0
 > Enum 8031 = 0
 > Variable 8248 = 65535
 > Enum 801a = 0
 > Variable 82d4 = 0
[22:08:27][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 823f = 200
[22:08:27][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8001 = 0
[22:08:27][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8003 = 1
[22:08:27][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 808d = 0
[22:08:27][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 803f = 0
[22:08:27][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8243 = 0
[22:08:27][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8235 = 0
[22:08:27][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 805e = 0
[22:08:27][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8031 = 0
[22:08:27][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8248 = 65535
[22:08:27][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 801a = 0
[22:08:27][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82d4 = 0
[22:08:30][W][samsung_ac:796]: MSG: #Packet Src:10.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 101}
 > Variable 823f = 200
 > Enum 8001 = 0
 > Enum 8003 = 1
 > Enum 808d = 0
 > Enum 803f = 0
 > Variable 8243 = 0
 > Variable 8235 = 0
 > Enum 805e = 0
 > Enum 8031 = 0
 > Variable 8248 = 65535
 > Enum 801a = 0
 > Variable 82d4 = 0
[22:08:30][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 823f = 200
[22:08:30][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8001 = 0
[22:08:30][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8003 = 1
[22:08:30][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 808d = 0
[22:08:30][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 803f = 0
[22:08:30][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8243 = 0
[22:08:30][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8235 = 0
[22:08:30][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 805e = 0
[22:08:30][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 8031 = 0
[22:08:30][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 8248 = 65535
[22:08:30][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Enum 801a = 0
[22:08:30][W][samsung_ac:773]: Undefined s:10.00.00 d:b0.00.ff Variable 82d4 = 0
[22:08:30][W][samsung_ac:796]: MSG: #Packet Src:20.00.00 Dst:b0.00.ff {PacketInformation: 1;ProtocolVersion: 2;RetryCount: 0;PacketType: 1;DataType: 4;PacketNumber: 20}
 > Variable 4202 = 190
 > Variable 4203 = 240
 > Variable 4205 = 228
 > Variable 4206 = 226
[22:08:30][W][samsung_ac:773]: Undefined s:20.00.00 d:b0.00.ff Variable 4202 = 190

@omerfaruk-aran
Copy link
Contributor

Hello @hnykda,

I reviewed the log records again, but I couldn't find any logs related to the beep sound. When you try to control the beep sound, pay special attention to the log entries that start with "Undefined s:20.00.00." These logs should be triggered when you control the beep sound via the API or SmartThings.

@hnykda
Copy link
Contributor Author

hnykda commented Aug 26, 2024

Hey. Yeah, I get that I am looking for those for 20.00.00, but similarly to you, I don't see anything "unusual". Don't really know what else I should do now (but thanks for the hint!).

@omerfaruk-aran
Copy link
Contributor

Hey. Yeah, I get that I am looking for those for 20.00.00, but similarly to you, I don't see anything "unusual". Don't really know what else I should do now (but thanks for the hint!).

You’re welcome. I would like you to try one more thing. Please set the variables debug_log_messages and debug_log_undefined_messages to false, and while monitoring the log screen, activate/deactivate the beep sound of the air conditioner through SmartThings. Try this frequently, and if any logs appear on the screen, please send them to me.

@omerfaruk-aran
Copy link
Contributor

Hello @hnykda
Have you had a chance to try my last article?

@hnykda
Copy link
Contributor Author

hnykda commented Aug 30, 2024

Hi @omerfaruk-aran , thanks for trying to help, really appreciated!

So I have this config, where the defaults for debug_log_* is false I believe:

samsung_ac:
  capabilities:
    vertical_swing: true
    horizontal_swing: true
    presets:
      quiet: true
      fast: true
      windfree: true
      sleep: true
  
  # /opt/homebrew/opt/mosquitto/sbin/mosquitto -c /opt/homebrew/etc/mosquitto/mosquitto.conf
  # debug_mqtt_host: 192.168.0.203
  # debug_mqtt_port: 1883
  # debug_mqtt_username: alpha
  # debug_mqtt_password: alpha
  
  ### DEBUGGING
  # debug_log_messages: true
  # debug_log_messages_raw: true
  # debug_log_undefined_messages: true
  ### DEBUGGING

  non_nasa_keepalive: false

  devices:
    - address: "20.00.00"
      climate:
        name: "Haven room AC"
      room_temperature:
        name: "Haven room AC temperature"
      target_temperature:
        name: "Haven room AC target temperature"
      power:
        name: "Haven room AC power"
      mode:
        name: "Haven room AC mode"
      room_humidity:
        name: "Haven room AC humidity"
      room_temperature_offset: -1
      # https://github.com/lanwin/esphome_samsung_ac/issues/144
      # custom_sensor:
      #   - name: "Haven Silence Mode"
      #     message: 0x4046
      #   - name: "Haven Silence Mode 1"
      #     message: 0x4045
      automatic_cleaning:
        name: "Haven room AC automatic clean"
    - address: "20.00.01"
      climate:
        name: "Kitchen AC"
      room_temperature:
        name: "Kitchen AC temperature"
      target_temperature:
        name: "Kitchen AC target temperature"
      room_humidity:
        name: "Kitchen AC humidity"
      power:
        name: "Kitchen AC power"
      mode:
        name: "Kitchen AC mode"
      automatic_cleaning:
        name: "Kitchen AC automatic clean"
      room_temperature_offset: -2
    - address: "10.00.00"      
      outdoor_temperature:
        name: "Eastern AC Outdoor temperature"
      custom_sensor:
        - name: "Eastern AC Power"
          message: 0x8411      
          unit_of_measurement: W
          icon: "mdi:flash"
          device_class: power
        - name: "Eastern AC Energy total"
          message: 0x8414
          unit_of_measurement: Wh
          icon: "mdi:counter"
          device_class: energy

But when toggling the beep sound, I see nothing in the logs (the first yellow log appears when turning on the AC):

image

@omerfaruk-aran
Copy link
Contributor

Hi @hnykda,

First of all, we're here to help!

It seems that when you try to toggle the beep sound through SmartThings, nothing appears in the logs. This might indicate that the beep sound cannot be controlled via SmartThings and that this setting can only be adjusted via the remote control. It might be a good idea to check if SmartThings supports such specific settings. In my experience, there should be a corresponding NASA packet for every command via SmartThings, but it’s essential to verify if there is a specific parameter for the beep sound. If SmartThings doesn't support this feature, the beep sound may only be controllable through the remote.

Could you share a screenshot of the parameter settings section in SmartThings?

@hnykda
Copy link
Contributor Author

hnykda commented Aug 30, 2024

Hi. I understand what you are saying, but I think it's simply not true. Here is a screenshot from the Smartthings android app: #121 (comment) , specifically this:

image

This is what I was toggling when sending you the logs above. I was not doing it via remote, but via smartthings app

@omerfaruk-aran
Copy link
Contributor

@hnykda This is great, when you toggle Sound Effect it should actually show a package. Can you try this at least 10 times, waiting 1 second between turning on/off again and again, and observe the result?

@hnykda
Copy link
Contributor Author

hnykda commented Aug 30, 2024

Eh, I can try again, but this is literally what I did above. I waited like 5 seconds at least, and tried that maybe for 5 times? Do you want me to try it again regardless? 😁

@omerfaruk-aran
Copy link
Contributor

Eh, tekrar deneyebilirim ama tam olarak yukarıda yaptığım şey bu. En azından 5 saniye bekledim ve bunu belki 5 kez denedim? Tekrar denememi ister misin? 😁

So, the packages are supposed to arrive, but I don't understand why they haven't arrived yet. Do you have access to the SmartThings API? You can use the following endpoint: https://api.smartthings.com/v1/devices/. After querying the devices using Postman or the Chrome plug-in TalendApi to obtain the deviceId, you can GET the device information from the https://api.smartthings.com/v1/devices/{deviceId}/status service. Could you please send it to me?

@hnykda
Copy link
Contributor Author

hnykda commented Aug 31, 2024

Sure, here it is:

{
  "components": {
    "main": {
      "relativeHumidityMeasurement": {
        "humidity": {
          "value": 65,
          "unit": "%",
          "timestamp": "2024-08-31T05:03:43.956Z"
        }
      },
      "custom.airConditionerOdorController": {
        "airConditionerOdorControllerProgress": {
          "value": null
        },
        "airConditionerOdorControllerState": {
          "value": null
        }
      },
      "custom.thermostatSetpointControl": {
        "minimumSetpoint": {
          "value": 16,
          "unit": "C",
          "timestamp": "2024-08-31T04:45:04.498Z"
        },
        "maximumSetpoint": {
          "value": 30,
          "unit": "C",
          "timestamp": "2024-08-31T04:45:04.498Z"
        }
      },
      "airConditionerMode": {
        "availableAcModes": {
          "value": null
        },
        "supportedAcModes": {
          "value": [
            "auto",
            "cool",
            "dry",
            "wind",
            "heat"
          ],
          "timestamp": "2024-08-31T04:45:04.498Z"
        },
        "airConditionerMode": {
          "value": "cool",
          "timestamp": "2024-08-31T04:16:13.870Z"
        }
      },
      "custom.spiMode": {
        "spiMode": {
          "value": null
        }
      },
      "samsungce.deviceIdentification": {
        "micomAssayCode": {
          "value": null
        },
        "modelName": {
          "value": null
        },
        "serialNumber": {
          "value": null
        },
        "serialNumberExtra": {
          "value": null
        },
        "modelClassificationCode": {
          "value": null
        },
        "description": {
          "value": null
        },
        "binaryId": {
          "value": "TP2X_RAC_20K",
          "timestamp": "2024-08-31T04:45:04.498Z"
        }
      },
      "airQualitySensor": {
        "airQuality": {
          "value": null
        }
      },
      "custom.airConditionerOptionalMode": {
        "supportedAcOptionalMode": {
          "value": [
            "off",
            "sleep",
            "quiet",
            "speed",
            "windFree",
            "windFreeSleep"
          ],
          "timestamp": "2024-08-31T04:45:04.498Z"
        },
        "acOptionalMode": {
          "value": "off",
          "timestamp": "2024-08-31T05:00:01.865Z"
        }
      },
      "switch": {
        "switch": {
          "value": "off",
          "timestamp": "2024-08-31T05:00:01.832Z"
        }
      },
      "custom.airConditionerTropicalNightMode": {
        "acTropicalNightModeLevel": {
          "value": 0,
          "timestamp": "2024-08-31T04:16:13.870Z"
        }
      },
      "ocf": {
        "st": {
          "value": null
        },
        "mndt": {
          "value": null
        },
        "mnfv": {
          "value": "TP2X_RAC_20K_11240702",
          "timestamp": "2024-08-31T04:45:04.191Z"
        },
        "mnhw": {
          "value": "MediaTek",
          "timestamp": "2024-08-31T04:45:04.191Z"
        },
        "di": {
          "value": "01083fb7-a48e-eca6-ddaf-1ca83c8047b0",
          "timestamp": "2024-08-31T04:45:04.224Z"
        },
        "mnsl": {
          "value": "http://www.samsung.com",
          "timestamp": "2024-08-31T04:45:04.191Z"
        },
        "dmv": {
          "value": "res.1.1.0,sh.1.1.0",
          "timestamp": "2024-08-31T04:45:04.224Z"
        },
        "n": {
          "value": "Samsung-Room-Air-Conditioner",
          "timestamp": "2024-08-31T04:45:04.224Z"
        },
        "mnmo": {
          "value": "TP2X_RAC_20K|10217841|60010519001411014200003000000000",
          "timestamp": "2024-08-31T04:45:04.498Z"
        },
        "vid": {
          "value": "DA-AC-RAC-000003",
          "timestamp": "2024-08-31T04:45:04.191Z"
        },
        "mnmn": {
          "value": "Samsung Electronics",
          "timestamp": "2024-08-31T04:45:04.191Z"
        },
        "mnml": {
          "value": "http://www.samsung.com",
          "timestamp": "2024-08-31T04:45:04.191Z"
        },
        "mnpv": {
          "value": "DAWIT 2.0",
          "timestamp": "2024-08-31T04:45:04.191Z"
        },
        "mnos": {
          "value": "TizenRT 2.0 + IPv6",
          "timestamp": "2024-08-31T04:45:04.191Z"
        },
        "pi": {
          "value": "01083fb7-a48e-eca6-ddaf-1ca83c8047b0",
          "timestamp": "2024-08-31T04:45:04.191Z"
        },
        "icv": {
          "value": "core.1.1.0",
          "timestamp": "2024-08-31T04:45:04.224Z"
        }
      },
      "airConditionerFanMode": {
        "fanMode": {
          "value": "auto",
          "timestamp": "2024-08-31T04:45:04.498Z"
        },
        "supportedAcFanModes": {
          "value": [
            "auto",
            "low",
            "medium",
            "high",
            "turbo"
          ],
          "timestamp": "2024-08-31T04:45:04.498Z"
        },
        "availableAcFanModes": {
          "value": null
        }
      },
      "samsungce.dustFilterAlarm": {
        "alarmThreshold": {
          "value": 500,
          "unit": "Hour",
          "timestamp": "2024-08-31T04:45:04.498Z"
        },
        "supportedAlarmThresholds": {
          "value": [
            180,
            300,
            500,
            700
          ],
          "unit": "Hour",
          "timestamp": "2024-08-31T04:45:04.498Z"
        }
      },
      "custom.electricHepaFilter": {
        "electricHepaFilterCapacity": {
          "value": null
        },
        "electricHepaFilterUsageStep": {
          "value": null
        },
        "electricHepaFilterLastResetDate": {
          "value": null
        },
        "electricHepaFilterStatus": {
          "value": null
        },
        "electricHepaFilterUsage": {
          "value": null
        },
        "electricHepaFilterResetType": {
          "value": null
        }
      },
      "custom.disabledCapabilities": {
        "disabledCapabilities": {
          "value": [
            "remoteControlStatus",
            "airQualitySensor",
            "dustSensor",
            "odorSensor",
            "veryFineDustSensor",
            "custom.spiMode",
            "custom.deodorFilter",
            "custom.electricHepaFilter",
            "custom.periodicSensing",
            "custom.doNotDisturbMode",
            "demandResponseLoadControl",
            "powerConsumptionReport",
            "custom.airConditionerOdorController",
            "samsungce.individualControlLock"
          ],
          "timestamp": "2024-08-31T04:45:48.353Z"
        }
      },
      "custom.ocfResourceVersion": {
        "ocfResourceUpdatedTime": {
          "value": null
        },
        "ocfResourceVersion": {
          "value": null
        }
      },
      "samsungce.driverVersion": {
        "versionNumber": {
          "value": 24040101,
          "timestamp": "2024-06-18T18:03:14.709Z"
        }
      },
      "fanOscillationMode": {
        "supportedFanOscillationModes": {
          "value": [
            "fixed",
            "all",
            "vertical",
            "horizontal"
          ],
          "timestamp": "2024-08-31T04:45:04.498Z"
        },
        "availableFanOscillationModes": {
          "value": null
        },
        "fanOscillationMode": {
          "value": "fixed",
          "timestamp": "2024-08-31T04:45:04.498Z"
        }
      },
      "temperatureMeasurement": {
        "temperatureRange": {
          "value": null
        },
        "temperature": {
          "value": 24,
          "unit": "C",
          "timestamp": "2024-08-31T07:14:36.985Z"
        }
      },
      "dustSensor": {
        "dustLevel": {
          "value": null
        },
        "fineDustLevel": {
          "value": null
        }
      },
      "custom.deviceReportStateConfiguration": {
        "reportStateRealtimePeriod": {
          "value": "disabled",
          "timestamp": "2024-08-31T04:45:04.498Z"
        },
        "reportStateRealtime": {
          "value": {
            "state": "disabled"
          },
          "timestamp": "2024-08-31T04:45:04.498Z"
        },
        "reportStatePeriod": {
          "value": "enabled",
          "timestamp": "2024-08-31T04:45:04.498Z"
        }
      },
      "custom.periodicSensing": {
        "automaticExecutionSetting": {
          "value": null
        },
        "automaticExecutionMode": {
          "value": null
        },
        "supportedAutomaticExecutionSetting": {
          "value": null
        },
        "supportedAutomaticExecutionMode": {
          "value": null
        },
        "periodicSensing": {
          "value": null
        },
        "periodicSensingInterval": {
          "value": null
        },
        "lastSensingTime": {
          "value": null
        },
        "lastSensingLevel": {
          "value": null
        },
        "periodicSensingStatus": {
          "value": null
        }
      },
      "thermostatCoolingSetpoint": {
        "coolingSetpointRange": {
          "value": null
        },
        "coolingSetpoint": {
          "value": 19,
          "unit": "C",
          "timestamp": "2024-08-31T03:29:34.447Z"
        }
      },
      "demandResponseLoadControl": {
        "drlcStatus": {
          "value": {
            "drlcType": 1,
            "drlcLevel": -1,
            "start": "1970-01-01T00:00:00Z",
            "duration": 0,
            "override": false
          },
          "timestamp": "2024-08-31T04:45:04.498Z"
        }
      },
      "audioVolume": {
        "volume": {
          "value": 0,
          "unit": "%",
          "timestamp": "2024-08-31T04:16:13.870Z"
        }
      },
      "powerConsumptionReport": {
        "powerConsumption": {
          "value": {
            "energy": 1605,
            "deltaEnergy": 0,
            "power": 0,
            "powerEnergy": 0,
            "persistedEnergy": 1605,
            "energySaved": 0,
            "start": "2024-06-18T18:03:15Z",
            "end": "2024-06-18T18:03:15Z"
          },
          "timestamp": "2024-06-18T18:03:15.555Z"
        }
      },
      "custom.autoCleaningMode": {
        "autoCleaningMode": {
          "value": "on",
          "timestamp": "2024-08-31T04:45:04.498Z"
        }
      },
      "samsungce.individualControlLock": {
        "lockState": {
          "value": null
        }
      },
      "refresh": {},
      "execute": {
        "data": {
          "value": null
        }
      },
      "samsungce.selfCheck": {
        "result": {
          "value": null
        },
        "supportedActions": {
          "value": [
            "start"
          ],
          "timestamp": "2024-06-18T18:03:14.709Z"
        },
        "progress": {
          "value": null
        },
        "errors": {
          "value": [],
          "timestamp": "2024-08-31T04:45:04.498Z"
        },
        "status": {
          "value": "ready",
          "timestamp": "2024-08-31T04:45:04.498Z"
        }
      },
      "custom.dustFilter": {
        "dustFilterUsageStep": {
          "value": 1,
          "timestamp": "2024-08-31T04:45:04.498Z"
        },
        "dustFilterUsage": {
          "value": 92,
          "timestamp": "2024-08-31T04:45:04.498Z"
        },
        "dustFilterLastResetDate": {
          "value": null
        },
        "dustFilterStatus": {
          "value": "normal",
          "timestamp": "2024-08-31T04:45:04.498Z"
        },
        "dustFilterCapacity": {
          "value": 500,
          "unit": "Hour",
          "timestamp": "2024-08-31T04:45:04.498Z"
        },
        "dustFilterResetType": {
          "value": [
            "replaceable",
            "washable"
          ],
          "timestamp": "2024-08-31T04:45:04.498Z"
        }
      },
      "odorSensor": {
        "odorLevel": {
          "value": null
        }
      },
      "remoteControlStatus": {
        "remoteControlEnabled": {
          "value": null
        }
      },
      "custom.deodorFilter": {
        "deodorFilterLastResetDate": {
          "value": null
        },
        "deodorFilterCapacity": {
          "value": null
        },
        "deodorFilterStatus": {
          "value": null
        },
        "deodorFilterResetType": {
          "value": null
        },
        "deodorFilterUsage": {
          "value": null
        },
        "deodorFilterUsageStep": {
          "value": null
        }
      },
      "custom.energyType": {
        "energyType": {
          "value": "1.0",
          "timestamp": "2024-08-31T04:45:04.498Z"
        },
        "energySavingSupport": {
          "value": false,
          "timestamp": "2024-06-18T18:03:15.555Z"
        },
        "drMaxDuration": {
          "value": 99999999,
          "unit": "min",
          "timestamp": "2024-06-18T18:03:15.389Z"
        },
        "energySavingLevel": {
          "value": null
        },
        "energySavingInfo": {
          "value": null
        },
        "supportedEnergySavingLevels": {
          "value": null
        },
        "energySavingOperation": {
          "value": null
        },
        "notificationTemplateID": {
          "value": null
        },
        "energySavingOperationSupport": {
          "value": false,
          "timestamp": "2024-06-18T18:03:15.389Z"
        }
      },
      "samsungce.softwareUpdate": {
        "targetModule": {
          "value": {},
          "timestamp": "2024-08-29T18:52:47.067Z"
        },
        "otnDUID": {
          "value": "ZPCPH4AIQIRUK",
          "timestamp": "2024-08-31T04:45:04.498Z"
        },
        "lastUpdatedDate": {
          "value": null
        },
        "availableModules": {
          "value": [],
          "timestamp": "2024-08-31T04:45:04.498Z"
        },
        "newVersionAvailable": {
          "value": false,
          "timestamp": "2024-08-31T04:45:04.498Z"
        },
        "operatingState": {
          "value": null
        },
        "progress": {
          "value": null
        }
      },
      "veryFineDustSensor": {
        "veryFineDustLevel": {
          "value": null
        }
      },
      "custom.veryFineDustFilter": {
        "veryFineDustFilterStatus": {
          "value": null
        },
        "veryFineDustFilterResetType": {
          "value": null
        },
        "veryFineDustFilterUsage": {
          "value": null
        },
        "veryFineDustFilterLastResetDate": {
          "value": null
        },
        "veryFineDustFilterUsageStep": {
          "value": null
        },
        "veryFineDustFilterCapacity": {
          "value": null
        }
      },
      "custom.doNotDisturbMode": {
        "doNotDisturb": {
          "value": null
        },
        "startTime": {
          "value": null
        },
        "endTime": {
          "value": null
        }
      }
    }
  }
}

I can make API calls and also control it from the mysmarththings. Check it here, where I also record the ESPhome screen:
recording

@omerfaruk-aran
Copy link
Contributor

It's really annoying. We'll keep looking until we find it. If we can't solve it, at worst we can solve it with an API plugin. :)

@hnykda
Copy link
Contributor Author

hnykda commented Aug 31, 2024

Good idea. Thanks for your help and let me know if I could help any further.

@titof2375
Copy link

Hello, in the same vein, there is also the light (lighting) which is below the bit

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants