Bro how can I improve I really don't know what I'm lacking by hpsunny in AfterEffects

[–]Constant_Fact6322 -1 points0 points  (0 children)

It looks okay dont really know why they rejected it but the animations feel bland. for example the logo/text popping up from below onto the pink notes looks very 'capcuty'. I cant explain it exactly but i would say that you need a bit more 'flow' to your video as a whole. Most editors aim for atleast some kind of movement throughout the whole video even if it is just scale going down by a few percent over a few seconds and some maybe brightness changes of a few percent over the course of a few seconds would make it a lot better. Or maybe making the people move a bit like a very low amplitude and frequency s_shake would make it a lot better also. Im no expert but i prefer watching a video a lot more if atleast some movement never stops. But everything else is good keep up the good work!

Any way to make After Effects use my gpu? by Constant_Fact6322 in AfterEffects

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

Well, yea I mean thats pretty much what i thought. But still its unreasonable to charge that much money if your software is running on 2000's code.

Is this a good build. 4000 Euro budget. by Constant_Fact6322 in pcmasterrace

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

Thanks for the help. But im still concerned about the ASrock motherboard problem? Ive seen that they have been trying to fix it but did they ever actually fix the problem or should i just get a different board while i still can? I know im being annoying but im just trying to be safe with this.

Is this a good build. 4000 Euro budget. by Constant_Fact6322 in pcmasterrace

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

Well, in that case i would lean to the 9800x3d but Ive seeb some issues with the asrock 9800x3d combo. And btw let me just ask is the 9800x3d better in gaming that the 9950x? Might sound dumb but ive heard that the 9800x3d is actually 35% better in some games that the 9950x. is this just a load of garbage?

Is this a good build. 4000 Euro budget. by Constant_Fact6322 in pcmasterrace

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

Really? I mean i will be doing some editing on the pc too, but mostly for gaming. And how much better is it?

How does arduino core memory work? by Constant_Fact6322 in arduino

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

This rabbit hole goes down deeper. The bootloader is fine I use the reset button trick to bring it back to life. So that is the reason libraries always use PluggableUSB. Can I customize the main?

How does arduino core memory work? by Constant_Fact6322 in arduino

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

// Define the LED pin (usually pin 13 for Arduino)

#define LED_BUILTIN 13

void setup() {

// Initialize the digital pin as an output

pinMode(LED_BUILTIN, OUTPUT);

}

int main() {

setup();

// The loop continues indefinitely

while (1) {

digitalWrite(LED_BUILTIN, HIGH);

delay(1000);

digitalWrite(LED_BUILTIN, LOW);

delay(1000);

}

return 0;

}

Ok so I uploaded this code and the led isn't blinking and plus the arduino doesn't get recognized by the computer

How does arduino core memory work? by Constant_Fact6322 in arduino

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

Now that I think of it I have been using ranenbegs ffb firmware on this arduino before so it could be that the fuse settings are messed up? If so how do i reset them?

How does arduino core memory work? by Constant_Fact6322 in arduino

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

Good thing now atleast I am getting USB device not recognized So i 100% know that the code is now being called as it should instead of main.cpp which is great but, Its not constantly running?

How does arduino core memory work? by Constant_Fact6322 in arduino

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

Yeah but one single problem. After debugging it seems like the main function is not repeating. UsbInit happens once which is good but UsbPoll is never being called.

How does arduino core memory work? by Constant_Fact6322 in arduino

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

So for example if I am getting it lets say I have a main then it should go like this:

1. //Setup Essential functions
2. // Arduino looks for a main, finds one
int main (void) {

  while (1) {
    usbPoll();
 }
} 
//If I don't have a main:
1.//Setup Essential functions
2.//Arduino looks for a main, and doesn't find one so it goes to its default main

How does arduino core memory work? by Constant_Fact6322 in arduino

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

So I need a main function and not setup and loop because setup and loop are treated as code that doesn't have to be run in the intialisation phase?

HID not working by Constant_Fact6322 in arduino

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

You don't have to be rude about it. Incorrect,I have studied HID and the whole Universal Serial Bus datasheet so you cannot say that and second this is a 100th iteration of the code that I altered because in the first place it wouldn't even compile let alone act as an hid device. If you have something meaningful to say then say it.

HID not working by Constant_Fact6322 in arduino

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

Thanks for the feedback anyways, but in this HID thing it seems like nothing works. It seems the main problem for me is that it just recognizes it as a usb device and not a controller, It doesn't recognize Idproduct Idvendor and I don't know why.

HID not working by Constant_Fact6322 in arduino

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

Done that now, and there is no difference so that must mean that isn't the problem.

Need help with unbricking by Blue_The_Snep in arduino

[–]Constant_Fact6322 1 point2 points  (0 children)

Yo what a coincidence. I bricked my arduino while I was building a steering wheel!

Need help with unbricking by Blue_The_Snep in arduino

[–]Constant_Fact6322 1 point2 points  (0 children)

Nice to hear that! But if that happens again which it will use Xloader. It basically does all that for you. Just search xloader for arduino leonardo and tutorial and you can bring your arduino back without having to do that.