From 1fbe52df06d3ff3f9158ad88fa7a2cd10fa2ea35 Mon Sep 17 00:00:00 2001 From: s-hadinger <49731213+s-hadinger@users.noreply.github.com> Date: Thu, 17 Jul 2025 09:40:42 +0200 Subject: [PATCH] Remove bytes from Tasmota specific --- .doc_for_ai/BERRY_TASMOTA.md | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/.doc_for_ai/BERRY_TASMOTA.md b/.doc_for_ai/BERRY_TASMOTA.md index 347c61bbe..952f558b1 100644 --- a/.doc_for_ai/BERRY_TASMOTA.md +++ b/.doc_for_ai/BERRY_TASMOTA.md @@ -497,19 +497,6 @@ end 5. **Performance**: Use fast_loop sparingly, prefer regular driver events 6. **Debugging**: Enable `#define USE_BERRY_DEBUG` for development -### Tasmota Extensions to Standard Modules - -#### `bytes` class extensions -```berry -b = bytes("1122AA") # From hex string -b = bytes(-8) # Fixed size buffer -b.tohex() # To hex string -b.tob64() # To base64 -b.fromhex("AABBCC") # Load from hex -b.fromb64("SGVsbG8=") # Load from base64 -b.asstring() # To raw string -``` - ## Common Tasmota Berry Patterns ### Simple Sensor Driver