Jump to content

BlackXbonE

Member
  • Posts

    235
  • Joined

  • Last visited

Awards

This user doesn't have any awards

1 Follower

About BlackXbonE

  • Birthday Oct 25, 1994

Contact Methods

  • Steam
    BlackXbonE
  • Battle.net
    Píona#2247
  • Twitch.tv
    BlackXbonE

Profile Information

  • Gender
    Male
  • Location
    Styria/Austria
  • Interests
    COOKING... gaming and pc building too :D
  • Occupation
    Mechatronics Fitter

System

  • CPU
    ryzen 7 1800x @ 4.1GHz
  • Motherboard
    Asus Maximus VII Hero
  • RAM
    Corsair Dominator Platinum @3000MHz CL16
  • GPU
    nvidia GTX 1080ti FE on water
  • Case
    Cooler Master Mastercase H500M modded
  • Storage
    4TB HDD, 500GB M.2, total of 1.2GB SSD
  • PSU
    Corsair RM1000x
  • Display(s)
    asus ROG pg278qr 27'' 1440p @165Hz / iiyama X4071UHSU-B1
  • Cooling
    Custom open loop (hard tubed)
  • Keyboard
    Logitech K290 / Razer Orbweaver
  • Mouse
    Razer Naga Trinity
  • Sound
    HyperX Cloud 2
  • Operating System
    Windows 10 Professional

Recent Profile Visitors

1,880 profile views
  1. Does anyone know if you can mod the cooler master mastercase h500m to fit a 3x140mm radiator in the front, just like you can do with the h500p? Planning on a 2x140mm rad on top and a 3x140mm rad in the front. If yes, this will set my decision for which one of those two to get.
  2. Hello! Even if I couldn't find anything arduino related here at first glance I think it fits best under programming. First of all, I am totally new to programming, only did a few weeks of Arduino for my project, so I would appreciate to keep things as simple as possible. As a project I am currently building a cleaning robot. It is basically justa wooden plate with six dc-motors and 5 ultrasonic sensors that drives around on the floor, avoiding objects, sweeping and hoovering. Only the problem I have is that I cant get to get 5 ultrasonic sensors to work with the standard code I used for up to two sensors: float duration1, distanceR; digitalWrite(TrigPin1, LOW); delayMicroseconds(2); digitalWrite(TrigPin1, HIGH); delayMicroseconds(10); digitalWrite(TrigPin1, LOW); duration1 = pulseIn(EchoPin1, HIGH); distanceR = (duration1 / 2) * 0.0344; delay(10); So that is the code I started with, it works fine for up to two sensors. For more it wont work though, so I also tried to do it with the NewPing library, but I cant figure out how to use the results I get from the NewPing code to make the Arduino do something with the motors. That's the NewPing code: #include <NewPing.h> #define SONAR_NUM 5 #define PING_INTERVAL 50 unsigned long pingTimer[SONAR_NUM]; // When each pings. unsigned int cm[SONAR_NUM]; // Store ping distances. uint8_t currentSensor = 0; // Which sensor is active. NewPing sonar[SONAR_NUM] = { NewPing(7, 6), // First number equals trigger, second number equals trigger. NewPing(8, 9), NewPing(12, 13), NewPing(22, 23), NewPing(24, 27), }; void setup() { Serial.begin (115200); pingTimer[0] = millis() + 75; // First ping start in ms. for (uint8_t i = 1; i < SONAR_NUM; i++) pingTimer[i] = pingTimer[i - 1] + PING_INTERVAL; } void loop() { for (uint8_t i = 0; i < SONAR_NUM; i++) { if (millis() >= pingTimer[i]) { pingTimer[i] += PING_INTERVAL * SONAR_NUM; if (i == 0 && currentSensor == SONAR_NUM - 1) oneSensorCycle(); // Do something with results. sonar[currentSensor].timer_stop(); currentSensor = i; cm[currentSensor] = 0; sonar[currentSensor].ping_timer(echoCheck); } } } void echoCheck() { // If ping echo, set distance to array. if (sonar[currentSensor].check_timer()) cm[currentSensor] = sonar[currentSensor].ping_result / US_ROUNDTRIP_CM; } void oneSensorCycle() { // Do something with the results. for (uint8_t i = 0; i < SONAR_NUM; i++) { Serial.print(i); Serial.print("="); Serial.print(cm[i]); Serial.print("cm "); } Serial.println(); } I copied this form the Arduino forum, and it is detecting all the sensors well and the results get displayed on the serial monitor, just that I cant figure out how to use these results to do something (link on the first code I would just use the distanceR in an if-function to make the robot interact accordingly). Probably it's even the most simplest thing to do, bu as I said, I am a total noob at programming so if anyone could help me I'd highly appreciate it!
  3. no, only thing different hardwarewie is that i changed the alignment of the fans on the radiator (from push to pull), and a second graficscard. only thing I also did was setting the northbridge's clock to 4ghz max and min.
  4. sorry, accidentally clicked on the submit button ^^ post still to be edited
  5. So I have cleaned up my PC from dust and all that stuff, then when testing thermals I also tried to play around a little with clocks just out of curiosity - and to my surprise i am at a much higher clockspeed on my 4790k than i reached some time ago when I tried last time. It actually runs stable at 4.85GHz now (with 4.8 cpu clock and 101.00 base clock), compared to the 4.7 form before - and tho I also pushed Vcore up to 1.395 the temps didn't really go up that much - 79°C Tmax on the hottest core. I have tried even 1.4V before to reach 4.8 ghz but it didn't work out - so I am prety surprised it did this time. Also cinebench scores went up pretty nicely - 975 Multithreaded, 190 single core. (up form 922 / 185) So what I am trying to figure out here is if there is a possibility that a CPU might overclock better over time or if I just messed something up last time. And I also wanted to just report how awesome this is. ^.^
  6. never mind, just found https://www.caseking.de/aqua-computer-aquastream-xt-usb-12v-pumpe-ultimate-version-oled-wapu-127.html, looks promising to me
  7. compared it to the EK-XTOP Revo D5, which is listed at 118€ (about the same in $US i guess) the PMP - 500 e.g. is 75$, even though shipping it to my place would probably not work or would be pretty expensive and i don't know if there's any european retailers selling such pumps.
  8. Yes, i got it pretty cheap for 120€ so I really happy with that ^^ Those big pumps are even cheaper than the small ones on EK's website, is there any disadvantage coming with them?
  9. hey, i do always respond! was just busy doing other stuff. it's no livechat after all, is it
  10. MO-RA3 420 Core - black is the radiator im using, 420mm x 420mm as i said. and thanks for the pump advice!
  11. I'm about to start my table pc project, got some parts already, and I want to put cpu and gpu on water. I already got a 420x420 radiator, haven't yet decided on hard- or soft tubing. the components i want to cool are: CPU: r7 1800x GPU: gtx 1080ti for future upgradeability I want to have enough headroom for another gpu in terms of waterflow (that the 420x420 rad is way more than sufficient should be obvious, so im having no worries there ) so since this will be my first full-system watercooled build i got some qeustions. which pump or more like pump-specs should i look for - eypecially regarding EK's line-up? how big CAN the res be (is ther any cheap/er solution to EK's reservoirs? since i'd like to highlight them with LED's i'd like to have a bigger one or maybe even multiple ones just for the looks
  12. ok, so currently i still got 2 r9 390x, which should do for fine for 4k but i want to go nvidia, most likely a 1080ti (mainly because of noise and powerconsumption, and i want to watercool my system, cba watercooling my 390x'), so since there isn't anything like eyefinity for nvidia im pretty much lost it seems
  13. and what about eyefinity or any nvidia counterpart if existant?
  14. Is it possible to game on a 4K monitor with 2 1080 monitors vertically nex to the 4K one simultaniousely, so that in the end you would have "a 2160p ultrawidescreen" even if 1080p 16:9 is only 1920 in width? like this: Something like this. My idea is to mainly only game on the middle 4K monitor and use the other two 1080p ones for productivity, and if I feel like it i'd want to play a game on all 3 monitors - would that be possible, and how?
×