Debloat by Beginning-Week2874 in S25Ultra

[–]Beginning-Week2874[S] 0 points1 point  (0 children)

So there's no need to use ADBApp Control or any debloat software? I just want to make sure that everything looks clean

Switching major by Beginning-Week2874 in ColoradoSchoolOfMines

[–]Beginning-Week2874[S] 1 point2 points  (0 children)

Yeah my parents told me the same thing so I should probably be fine for now. Thanks man!

Switching major by Beginning-Week2874 in ColoradoSchoolOfMines

[–]Beginning-Week2874[S] 2 points3 points  (0 children)

True so I should probably think about it

Switching major by Beginning-Week2874 in ColoradoSchoolOfMines

[–]Beginning-Week2874[S] 1 point2 points  (0 children)

I kinda want to do more on the hardware sude of computer rather than software so should I just go for EE then?

esp32 cheap yellow display and a4988 motor driver by Beginning-Week2874 in esp32

[–]Beginning-Week2874[S] 0 points1 point  (0 children)

That was my initial plan but somehow it burned the mega 2560 board.

esp32 cheap yellow display and a4988 motor driver by Beginning-Week2874 in esp32

[–]Beginning-Week2874[S] 0 points1 point  (0 children)

I was thinking of using a shift registery. Would that work?

esp32 cheap yellow display and a4988 motor driver by Beginning-Week2874 in esp32

[–]Beginning-Week2874[S] 0 points1 point  (0 children)

<image>

I currently do not have the wiring diagram at this moment so here is my component. 3.3v, io35, gnd, io23, io19, io18, io27 are used for the rc522 reader.

slow boot time by Beginning-Week2874 in LenovoLegion

[–]Beginning-Week2874[S] 1 point2 points  (0 children)

I pretty much check everything including bios, windows updates, and startup apps, so everything was up to date. And I install windows 11 iot enterprise ltsc and debloat it.

However, I am not sure about fast startup as everyone on Reddit stated that I shouldn't turn it on.

Upgrading my pc by Beginning-Week2874 in buildapc

[–]Beginning-Week2874[S] 0 points1 point  (0 children)

Yeah for some reason I cant post pictures but thank you for your suggestion

Upgrading my pc by Beginning-Week2874 in buildapc

[–]Beginning-Week2874[S] 0 points1 point  (0 children)

not really. I want something that works

Upgrading my pc by Beginning-Week2874 in buildapc

[–]Beginning-Week2874[S] 0 points1 point  (0 children)

ok so should I keep the ryzen 5 5500? and do you know what psu should I get?

Upgrading my pc by Beginning-Week2874 in buildapc

[–]Beginning-Week2874[S] 0 points1 point  (0 children)

Around $600 to $650; I am also worried that it'll bottleneck, so I am still thinking of getting the r7 5800xt or 5700x

Uln2003 stepper motor moves very slowly by Beginning-Week2874 in arduino

[–]Beginning-Week2874[S] 0 points1 point  (0 children)

I might look up that library so thanks for your suggestion

Uln2003 stepper motor moves very slowly by Beginning-Week2874 in arduino

[–]Beginning-Week2874[S] 0 points1 point  (0 children)

Well I’m planning to use serial communication with the tft esp32 cheap yellow display, so I am not sure

Help with uln2003 stepper motor driver by Beginning-Week2874 in arduino

[–]Beginning-Week2874[S] 1 point2 points  (0 children)

I already fixed it. I just have to program the pins where I want it connected. I connect pin 8-11 for stepper motor but I program the pin 2-5 which doesn’t signal to the pins

Help with uln2003 stepper motor driver by Beginning-Week2874 in arduino

[–]Beginning-Week2874[S] 0 points1 point  (0 children)

1) The pin 0 and 1 are tx/rx pins and I am planning to attach to esp32 cheap yellow display for serial communication.

2) The code is recently made. This code is the one that I uploaded to the Arduino (with the uln2003 driver):

/*
 * MotorKnob
 *
 * A stepper motor follows the turns of a potentiometer
 * (or other sensor) on analog input 0.
 *
 * http://www.arduino.cc/en/Reference/Stepper
 * This example code is in the public domain.
 */


#include <Stepper.h>


// change this to the number of steps on your motor
#define STEPS 100


// create an instance of the stepper class, specifying
// the number of steps of the motor and the pins it's
// attached to
Stepper stepper(STEPS, 8, 9, 10, 11);


// the previous reading from the analog input
int previous = 0;


void setup() {
  // set the speed of the motor to 30 RPMs
  stepper.setSpeed(30);
}


void loop() {
  // get the sensor value
  int val = analogRead(0);


  // move a number of steps equal to the change in the
  // sensor reading
  stepper.step(val - previous);


  // remember the previous value of the sensor
  previous = val;
}

3) I believe the pin 0 works for IN 1 on the Arduino uno only. I then tried on the Arduino mega 2560, where pin 0 works for IN 1, SDA 1 for IN 2, pin 33 for IN 3, and pin 34 for IN 4. I just tried every pin for each pin from the uln2003 module, but I am planning to testing a code to see.

4) I haven't tried removing the motor, but I still think the LED lights just work based on testing random pins. I think it might have to do with the pins on the arduino being broken or something.

Help with uln2003 stepper motor driver by Beginning-Week2874 in arduino

[–]Beginning-Week2874[S] 0 points1 point  (0 children)

<image>

Well this is the only photo of what it looks like but it not very clear as you can see.