element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • About Us
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Arduino
  • Products
  • More
Arduino
Arduino Forum Arduino As PC Fan Controller
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Arduino to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • Replies 16 replies
  • Subscribers 394 subscribers
  • Views 3247 views
  • Users 0 members are here
Related

Arduino As PC Fan Controller

nicolaoscon96
nicolaoscon96 over 7 years ago

Hello there,

 

It's been a while to write here and I came back with a question. I want to build a fan controller for my desktop pc and I wanted to build it with an Arduino (Just add some modes like gaming for full speed, office use for lower rpm and less noise)>>Where I will be able to control by sending a  number for example 1 for gaming mode 2 for office<<. I found some online and they are really cheap but I wanted to experiment with that. So I wanted to ask is this possible? Can I control (4 fans) with an Arduino and get feedback from them about the RPM and the voltage if it possible(have it connected with USB on my computer and read the output in Arduino IDE)? The fans that am using are 3 pins (black-red-yellow).

 

Thanks

nicolaoscon96

  • Sign in to reply
  • Cancel

Top Replies

  • koudelad
    koudelad over 7 years ago +7
    Hello, Honestly, the 8-bit microcontroller in Arduino won't have enough resources to do that. It only has 2 8-bit counters and one 16 bit counters. If you want to monitor 4 fans independently, you need…
  • shabaz
    shabaz over 7 years ago +6
    Hi Nicolas, If you want to do it accurately, as David says, you'll need different hardware. According to the link here: How PC Fans Work the three-wire fan uses it's third wire to provide speed feedback…
  • shabaz
    shabaz over 7 years ago in reply to gdstew +4
    Getting RPM feedback actually isn't the end goal. Why not sometimes actually try to understand the requirement, and form a more complete answer that helps the user? Just an opinion I've formed over the…
Parents
  • mcb1
    mcb1 over 7 years ago

    While this sounds like a great project, I'm surprised by the application.

     

    Most PC motherboards have fan control built in.

    They require a 3 wire fan (as you have identified), and control the speed according to the PC needs rather than the application.

     

    Most Video card fans are the same, they control the speed to suit the cooling need of the chip.

     

    I recently had a issue with killing hard drives in a box that had speed controlled fans.

    I switched to a Fractal R3 where the drives are across the front just behind the fans.

    Fractal Design

    You can't hear them running and there are zero temperature issues, which is good.

     

    So IMO it is better to allow the motherboard to dictate the speed, rather than the application.

    This will also allow for a speed hike if the heatsinks are getting blocked with dust, etc.

     

     

     

    Mark

    • Cancel
    • Vote Up +4 Vote Down
    • Sign in to reply
    • Cancel
Reply
  • mcb1
    mcb1 over 7 years ago

    While this sounds like a great project, I'm surprised by the application.

     

    Most PC motherboards have fan control built in.

    They require a 3 wire fan (as you have identified), and control the speed according to the PC needs rather than the application.

     

    Most Video card fans are the same, they control the speed to suit the cooling need of the chip.

     

    I recently had a issue with killing hard drives in a box that had speed controlled fans.

    I switched to a Fractal R3 where the drives are across the front just behind the fans.

    Fractal Design

    You can't hear them running and there are zero temperature issues, which is good.

     

    So IMO it is better to allow the motherboard to dictate the speed, rather than the application.

    This will also allow for a speed hike if the heatsinks are getting blocked with dust, etc.

     

     

     

    Mark

    • Cancel
    • Vote Up +4 Vote Down
    • Sign in to reply
    • Cancel
Children
  • koudelad
    koudelad over 7 years ago in reply to mcb1

    Very good point, Mark.

     

    Of course, driving simultaneous 4 fans would expect to get 4 different temperature sensors and/or control inputs.

     

    Newer motherboards use 4-pin fans, at least for the CPU fan. And it is often a feature (and a must have for laptops) of the motherboard to not start itself, it there is no CPU fan present. So this could actually lead to either let the CPU fan to be driven by the motherboard, or somehow fake that there is an active fan. (Similar applies to a GPU fan.) All the chips (CPU, GPU, maybe southbridge) have integrated temperature sensors and there is not a better way to measure the temperature rise that directly from the inside of the silicon. All externally attached temperature sensors will perform worse - which could be crucial in these times of automatic short periods of rapid overclocking - probably CPU throttling.

     

    However, what could be easily achievable with Arduino is to do just a case ventilation, connect one or more fans is parallel and drive them as one channel at once.

     

    David

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube