13 Commits 09daadee23 ... 50df8a8d0d

Author SHA1 Message Date
  subDesTagesMitExtraKaese 50df8a8d0d reuse hardware for previous purpose 1 month ago
  subDesTagesMitExtraKaese f623398284 update platform syntax 1 month ago
  subDesTagesMitExtraKaese 09daadee23 reuse hardware for previous purpose 1 month ago
  subDesTagesMitExtraKaese 0cdac52705 update platform syntax 1 month ago
  teuserer 8c823c7c88 README.md aktualisiert 8 months ago
  timo 4464b618df Merge pull request 'feat/MultisyncX401S' (#1) from timo/netz39-ir-blaster:feat/MultisyncX401S into main 8 months ago
  Timo Herrmann 89e51e4c0a Update README.md 8 months ago
  Timo Herrmann 52f48b9ebb Add pin cracking script 8 months ago
  Timo Herrmann dfe341c5ff Add newline 8 months ago
  Timo Herrmann 0c475afc43 Add config for receiver 8 months ago
  Timo Herrmann d678d95bdf Add IR-codes for MultisyncX401S 8 months ago
  timo 7224b75cfe config.yaml aktualisiert 8 months ago
  timo 98fe97d3d9 README.md aktualisiert 8 months ago
3 changed files with 31 additions and 4 deletions
  1. 15 3
      README.md
  2. 3 1
      config.yaml
  3. 13 0
      scripts/crack_MultisyncX401S_4digit_PIN.py

+ 15 - 3
README.md

@@ -11,12 +11,12 @@ http://ir-blaster.n39.eu
     ```
 2. esphome installieren
     ```bash
-    pip installv esphome
+    pip install esphome
     ```
 3. `secrets.yaml` anlegen:
     ```yaml
     WifiPassword: "changeme"
-    OtaPassword: "chamgeme"
+    OtaPassword: "changeme"
     ```
 4. config hochladen
     ```bash
@@ -37,4 +37,16 @@ http://ir-blaster.n39.eu
   * OK (0x2FD847B)
   * Lauter (0x2FD58A7)
   * Leiser (0x2FD7887)
-  * On/Off (0x2FD48B7)
+  * On/Off (0x2FD48B7)
+
+## Multisync X401S
+  * Taste 0
+  * Taste 1
+  * Taste 2
+  * Taste 3
+  * Taste 4
+  * Taste 5
+  * Taste 6
+  * Taste 7
+  * Taste 8
+  * Taste 9

+ 3 - 1
config.yaml

@@ -46,7 +46,9 @@ remote_receiver:
   pin: 
     number: GPIO2
     inverted: True
+    mode: INPUT_PULLUP
   dump: all
+# Change to dump: all to see all protocols, use dump: raw to see raw codes
 
 remote_transmitter:
   pin: GPIO04
@@ -59,4 +61,4 @@ sensor:
     name: Uptime Sensor
   - platform: wifi_signal
     name: "WiFi Signal Sensor"
-    update_interval: 60s
+    update_interval: 60s

+ 13 - 0
scripts/crack_MultisyncX401S_4digit_PIN.py

@@ -0,0 +1,13 @@
+import requests
+import time
+from tqdm import tqdm
+
+url = "http://ir-blaster.n39.eu/button/multisyncx401s_taste_%s/press"
+
+for i in tqdm(range(0000, 10000)):
+    num_str = f"{i:04d}"
+    print(f"Sending: {num_str}")
+    for digit in num_str:
+        requests.post(url % digit)
+        time.sleep(0.35)
+    time.sleep(0.35)