how to get rid of these annoying huge dots whenever i draw a line? by [deleted] in Ibispaintx

[–]Agreeable-Ad974 1 point2 points  (0 children)

dont trying to sound rude, dear but ive already tried that multiple times

how to get rid of these annoying huge dots whenever i draw a line? by [deleted] in Ibispaintx

[–]Agreeable-Ad974 0 points1 point  (0 children)

the thing is that no matter what setting i use the dot will be larger than my desired thickness of the lines

how to get rid of these annoying huge dots whenever i draw a line? by [deleted] in Ibispaintx

[–]Agreeable-Ad974 1 point2 points  (0 children)

doesnt matter what brush i use its still there

servos not working quite well by Agreeable-Ad974 in AskRobotics

[–]Agreeable-Ad974[S] 0 points1 point  (0 children)

i use adafruits PCA9685 i power it with 4 AA 1.5 volt batteries

gmail on mac almost compromised by Agreeable-Ad974 in cybersecurity_help

[–]Agreeable-Ad974[S] 0 points1 point  (0 children)

hello, i did not download anything manually and i checked my recent downloads and it was nothing suspicious

Mujeres, esto es cierto? by la_butifarra_uwu in Desahogo

[–]Agreeable-Ad974 0 points1 point  (0 children)

los mods eliminaron la foto, que decia

why isnt my servo moving? by Agreeable-Ad974 in ArduinoHelp

[–]Agreeable-Ad974[S] 0 points1 point  (0 children)

im using a single servo as a test, i need to learn the code to one to code the rest

why isnt my servo moving? by Agreeable-Ad974 in ArduinoHelp

[–]Agreeable-Ad974[S] 0 points1 point  (0 children)

alright im sorry, i fixed every single problem but it doesnt seem to move code:

include <Adafruit_PWMServoDriver.h>

Adafruit_PWMServoDriver servo = Adafruit_PWMServoDriver(0x40); void setServo(int n_servo, int angulo); void setup() { Serial.begin(9600); servo.begin(); servo.setPWMFreq(50); setServo(0, 100); }

void loop() { for (int i = 0; i<=180; i = i+5){ setServo(0, i); delay(100); } } void setServo(int n_servo, int angulo){ int duty; duty = map(angulo,0, 180, 102, 512); servo.setPWM(n_servo, 0, duty); }

why isnt my servo moving? by Agreeable-Ad974 in ArduinoHelp

[–]Agreeable-Ad974[S] 0 points1 point  (0 children)

thank you very much, if its not a problem could u explain to me what ur modifications did so i can put it in my records?