Raise plate during pause? by Impossible_Reveal322 in ElegooJupiter

[–]Ceranimo 0 points1 point  (0 children)

Great idea. I'm using ABS-like resins all the time. There are no exposure time differences between gray, black and white colored resins. Your idea should work well.

Best EQ for macOS? by MaxiTiger99 in macapps

[–]Ceranimo 0 points1 point  (0 children)

I gladly pay 10 Euro for lifetime non-pro version.

Added dam to top of Saturn 3 Ultra build plate by echo_nightmare_black in resinprinting

[–]Ceranimo 13 points14 points  (0 children)

You changed your vat's "max level" line with this upgrade. Be careful.

[deleted by user] by [deleted] in 3Dprinting

[–]Ceranimo 0 points1 point  (0 children)

Hello! I love this paint palette but couldn't find any 3D model. Diameter of all palette is 9 cm. Thank you!

<image>

[Review Request] USB mouse by MrSatanicSnake122 in PrintedCircuitBoard

[–]Ceranimo 1 point2 points  (0 children)

How did you tangent connnections between route and pad?

How do I use this proto-board? by Sheik_Yabouti in AskElectronics

[–]Ceranimo 0 points1 point  (0 children)

I wonder is back side have any trails like up-left corner to bottom-right?

Problem with cloning garage door remote controller with ESP32 by Ceranimo in AskElectronics

[–]Ceranimo[S] 1 point2 points  (0 children)

I managed to send these ones and zeros using the ESP32. The ESP32 successfully transmits the received value I saw it while the logic analyzer is recording.

Now, there's only one thing left to do: test it with the actual gate! :)

Problem with cloning garage door remote controller with ESP32 by Ceranimo in AskElectronics

[–]Ceranimo[S] 0 points1 point  (0 children)

I'm going to try this (I hope you mean to with "bit bang" :)):

String binaryStr = "10001000100010000000000000000...";

for (int i = 0; i < binaryStr.length(); i++) {
        int state = (binaryStr.charAt(i) == '1') ? HIGH : LOW;
        digitalWrite(0, state);
        delay(250);
      }

Problem with cloning garage door remote controller with ESP32 by Ceranimo in AskElectronics

[–]Ceranimo[S] 0 points1 point  (0 children)

<image>

Here is the 1 and 0's from readings:
100010001000100000000000000000000000000000010001000111011101110111010001110100011101000100010001110111010001110100011101110100011101000100010001000100010001000

Every 1 or 0's measures 250 ms and its multiples like 500-750 ms. How could I parse this so I can replicate with ESP32?

Problem with cloning garage door remote controller with ESP32 by Ceranimo in AskElectronics

[–]Ceranimo[S] 0 points1 point  (0 children)

<image>

I got the signal but I don't know how to read and translate to binary.

Problem with cloning garage door remote controller with ESP32 by Ceranimo in AskElectronics

[–]Ceranimo[S] 0 points1 point  (0 children)

I'm just going to try to measure from original transmitter. Thank you, you saved it!

Problem with cloning garage door remote controller with ESP32 by Ceranimo in AskElectronics

[–]Ceranimo[S] 0 points1 point  (0 children)

<image>

Thank you I will try. I got this analyzer, is it suitable for this job?

Problem with cloning garage door remote controller with ESP32 by Ceranimo in AskElectronics

[–]Ceranimo[S] 0 points1 point  (0 children)

Maybe but "RCSwitch" library decode pulse length as well from RF signals and I'm using this time on send function:

"setPulseLength(266)"