- On sale!
- -€1.50
Make an air aerial propeller vessel, a cooling system, or spinning machine with this small fan module. It comes with a propeller, a 15,000 rpm motor and cable. Add flavor to your own interesting projects with this module.
If you have any questions on this product please feel free to contact us.
*Disclaimer: The images are merely illustrative.
Make an air aerial propeller vessel, a cooling system, or spinning machine with this small fan module. It comes with a propeller, a 15,000 rpm motor and cable. Add flavor to your own interesting projects with this module.
This module is commonly used for STEM class.
//Arduino Sample Code for Fan Module //www.DFRobot.com //Version 1.0 #define Fan 3 //define driver pins void setup() { pinMode(Fan,OUTPUT); Serial.begin(9600); //Baudrate: 9600 } void loop() { int value; for(value = 0 ; value <= 255; value+=5) { analogWrite(Fan, value); //PWM Serial.println(value); delay(30); } }
Related products