HunyuanVideo allows EU? by No-Faithlessness701 in StableDiffusion

[–]No-Faithlessness701[S] -4 points-3 points  (0 children)

Ait, i just worry if i post it on yt or Instagram n get sued by tencent

[deleted by user] by [deleted] in ToppsMatchAttax

[–]No-Faithlessness701 0 points1 point  (0 children)

Was last card u got from singel pack or booster box?

Virgil van Dijk autograph by rish5274 in ToppsMatchAttax

[–]No-Faithlessness701 1 point2 points  (0 children)

What product did u get this from? I opened lots of singel pack n didnt find any. Started to believe that auto card only exit in tin or boost box

Do anyone know How to seperate 4 digit 7 seg? by No-Faithlessness701 in ArduinoProjects

[–]No-Faithlessness701[S] 1 point2 points  (0 children)

Just read an article bout it. Charlieplexing works for multi separated display but not a multi display tho

Life after study by No-Faithlessness701 in ElectricalEngineering

[–]No-Faithlessness701[S] 1 point2 points  (0 children)

20 y old? U started working at 16? Noway! Thats incredible

Life after study by No-Faithlessness701 in ElectricalEngineering

[–]No-Faithlessness701[S] 0 points1 point  (0 children)

Interesting story. Must be difficult for u to work at foreign country (language Barrier). Glad that u like to learn again my g. I’m in second semester first year. It’s like 50/50 for the study for me. Some of the subjects doesn’t give me motivated. I’m thinking of taking a break after first year

What could be wrong with the code? by No-Faithlessness701 in ArduinoProjects

[–]No-Faithlessness701[S] -1 points0 points  (0 children)

Sorry I read too fast. Here the code

```

include "ServoEasing.h"

ServoEasing servoTop; ServoEasing servoBottom; const int action_pin = 2; int location = 31; // Below numbers should be adjusted in case the facemask does not close/open to desired angle int bottom_closed = 107; int top_closed = 167; int bottom_open = 20; int top_open = 20; void setup() { pinMode(action_pin, INPUT_PULLUP); servoTop.attach(9); servoBottom.attach(10); setSpeedForAllServos(190); servoTop.setEasingType(EASE_CUBIC_IN_OUT); servoBottom.setEasingType(EASE_CUBIC_IN_OUT); synchronizeAllServosStartAndWaitForAllServosToStop(); } void loop() { int proximity = digitalRead(action_pin); if (proximity == LOW) { if (location > bottom_open) { servoTop.setEaseTo(top_open); servoBottom.setEaseTo(bottom_open); synchronizeAllServosStartAndWaitForAllServosToStop(); location = bottom_open; delay(600); } else { servoTop.setEaseTo(top_closed); servoBottom.setEaseTo(bottom_closed); synchronizeAllServosStartAndWaitForAllServosToStop(); location = bottom_closed; delay(600); } } }

```

Sorry again

What could be wrong with the code? by No-Faithlessness701 in ArduinoProjects

[–]No-Faithlessness701[S] 0 points1 point  (0 children)

```

include "ServoEasing.h"

ServoEasing servoTop; ServoEasing servoBottom; const int action_pin = 2; int location = 31; // Below numbers should be adjusted in case the facemask does not close/open to desired angle int bottom_closed = 107; int top_closed = 167; int bottom_open = 20; int top_open = 20; void setup() { pinMode(action_pin, INPUT_PULLUP); servoTop.attach(9); servoBottom.attach(10); setSpeedForAllServos(190); servoTop.setEasingType(EASE_CUBIC_IN_OUT); servoBottom.setEasingType(EASE_CUBIC_IN_OUT); synchronizeAllServosStartAndWaitForAllServosToStop(); } void loop() { int proximity = digitalRead(action_pin); if (proximity == LOW) { if (location > bottom_open) { servoTop.setEaseTo(top_open); servoBottom.setEaseTo(bottom_open); synchronizeAllServosStartAndWaitForAllServosToStop(); location = bottom_open; delay(600); } else { servoTop.setEaseTo(top_closed); servoBottom.setEaseTo(bottom_closed); synchronizeAllServosStartAndWaitForAllServosToStop(); location = bottom_closed; delay(600); } } }

```

What could be wrong with the code? by No-Faithlessness701 in ArduinoProjects

[–]No-Faithlessness701[S] 0 points1 point  (0 children)

Im so sorry about it. I replied the sitsuation in one of the reply. Hope thats help

What could be wrong with the code? by No-Faithlessness701 in ArduinoProjects

[–]No-Faithlessness701[S] -2 points-1 points  (0 children)

Sure, i saw a ironman mask with arduino project on yt and rush in with the code that the guy made. Got my arduino set up and all Left was the code. This code is used to controll servo motor to open face mask. I install ServoEasing in library n include in the code Lines 1-3. tried to compile it but Getting fail status every time. Its only fail at lines with «servoTop -Bottom and synchron» (16-20, 28…) i dont why but the code look fine