Jump to content

AntonDVries

Member
  • Posts

    125
  • Joined

  • Last visited

Awards

This user doesn't have any awards

Contact Methods

  • Steam
    AntonDVries00
  • Battle.net
    AntonDVries00

Profile Information

  • Gender
    Male
  • Location
    Holland

System

  • CPU
    AMD FX-4350 4.2GHz Quad-Core Processor
  • Motherboard
    MSI 970A SLI Krait Edition ATX AM3+ Motherboard
  • RAM
    G.Skill Sniper Series 8GB (2 x 4GB) DDR3-1600 Memory
  • GPU
    MSI GeForce GTX 960 4GB Video Card
  • Case
    Inwin GT1 White ATX Mid Tower Case
  • Storage
    Seagate Barracuda 2TB 3.5" 7200RPM Internal Hard Drive + Samsung 850 EVO-Series 250GB 2.5" Solid State Drive
  • PSU
    EVGA 500W 80+ Bronze Certified ATX Power Supply
  • Display(s)
    LG 29UM57-P 29.0" 2560x1080 60Hz Monitor
  • Keyboard
    Logitech G105 Wired Gaming Keyboard
  • Mouse
    Mad Catz R.A.T. 3 Wired Optical Mouse
  • Sound
    Edifier E3360BT BK Prisma Encore 2.1 Bluetooth-Lautsprecher System (64 Watt) + Cooler Master: MasterPulse
  • Operating System
    WIN10Pro
  • PCPartPicker URL

Recent Profile Visitors

850 profile views
  1. @Arjan W, ik kreeg ook een windows\system32\winload.efi bluescreen. Bekent mee?
  2. Jammer. Nee m'n laptop valt niet meer onder garantie. Tijd voor een upgrade naar een ssd That's a bummer. Nope it isn't under warranty. Time for a new SSD I think.
  3. No, unfortunately I can't because of the fact that I am getting the error as seen in the first screenshot
  4. Ja de bios pakt de HDD wel, maar geeft dus failure aan. Probeer je m gewoon aan te zetten geeft hij de error aan die in de eerste screenshot te zien is. Yes the bios does recognize the HDD, but indicates failure. When you try to turn it on, it indicates the error that can be seen in the first screenshot.
  5. Hi, I'm experiencing a problem with my laptop. It won't boot. It is also making a subtle ticking noise. I suspect the HDD In English it says that a requested device isn't connected with the corresponding errorcode. I did some tests and it detected a HDD failure. I tried to search for the failure ID but I couldn't find anything. I hope you guys can tell me what's going on.
  6. So I got this code from a buddy of mine. And I had to make the part of the servos and the part of the led blinking go parallel. #include <Servo.h> Servo motor1; Servo motor2; void setup() { motor1.attach(6); motor2.attach(5); pinMode(13,OUTPUT); } void loop() { motor1.write(86); motor2.write(99); delay(1200); motor1.write(90); motor2.write(92); delay(1000); motor1.write(95); motor2.write(86); delay(1310); motor1.write(90); motor2.write(92); delay(4000); if (analogRead(A0) > 300) { digitalWrite(13, HIGH); delay(400); digitalWrite(13, LOW); delay(100); digitalWrite(13, HIGH); delay(300); digitalWrite(13, LOW); delay(200); } else { digitalWrite(13, LOW); } } In which I succeeded, see code below. #include <Servo.h> Servo motor1; Servo motor2; unsigned long previousMillis1 = 0; unsigned long currentMillis1 = millis(); unsigned long previousMillis2 = 0; unsigned long currentMillis2 = millis(); void setup() { motor1.attach(6); motor2.attach(5); pinMode(13,OUTPUT); } void loop() { if (currentMillis1 - previousMillis1 >= 0){ previousMillis1 = currentMillis1; motor1.write(86); motor2.write(99); //delay(1200); if (currentMillis1 - previousMillis1 >= 1200){ previousMillis1 = currentMillis1; motor1.write(90); motor2.write(92); //delay(1000); if (currentMillis1 - previousMillis1 >= 1000){ previousMillis1 = currentMillis1; motor1.write(95); motor2.write(86); //delay(1310); if (currentMillis1 - previousMillis1 >= 1310){ previousMillis1 = currentMillis1; motor1.write(90); motor2.write(92); //delay(4000); if (currentMillis1 - previousMillis1 >= 4000){ previousMillis1 = currentMillis1; } } } } } //als de afstandssensor hoger meet dan 300 if (analogRead(A0) > 300) { // gaat het lampje knipperen if (currentMillis2 - previousMillis2 >= 0){ previousMillis2 = currentMillis2; digitalWrite(13, HIGH); //delay(400); if (currentMillis2 - previousMillis2 >= 400){ previousMillis2 = currentMillis2; digitalWrite(13, LOW); //delay(100); if (currentMillis2 - previousMillis2 >= 100){ previousMillis2 = currentMillis2; digitalWrite(13, HIGH); //delay(300); if (currentMillis2 - previousMillis2 >= 300){ previousMillis2 = currentMillis2; digitalWrite(13, LOW); //delay(200); if (currentMillis2 - previousMillis2 >= 200){ previousMillis2 = currentMillis2; } } } } } } else { digitalWrite(13, LOW); } } But the problem is as following: The servos aren't rotating back and forth like they used to do. But now they're rotating at a continuous speed. I hope that you guys can see the problem because I cant. Thanks in advance, Anton
  7. And how about dragging for example a Chrome browser from my computer to my laptop, does that work?
  8. Can I set this up that whenever the mouse hit the end of my monitor of my computer, that it goes to my laptop?
  9. Hey, I have a computer and a laptop, I'm loving it. Only one thing keeps kicking my ass. I can't share my mouse and keyboard seamlessly. Yes I know there are programs like "mouse without borders", but when you move your mouse there's a slight delay and its driving me nuts. I'm looking for a way to connect my computer with my laptop somehow to make it basically one. It doesn't matter if it's software or hardware. Thnx in advance
  10. Maybe you should swap the m.2 for a ssd, in general they're cheaper, and doesn't affect the performance really much
  11. Hey guys, I got an irritating problem. Whenever I'm trying to go from TV to an application, like Netflix or YouTube, my surround system goes from D-IN to AUX. My TV: Sony Bravia KD55-XE9005 My surround sound system: panasonic SA-PT460 They're connected via optical cable from out of the TV to the surround system. I hope you guys can help me
×