- Em promoção!
- -1,50 €
Faça uma hélice de avião ou um sistema de arrefecimento com este pequeno módulo de ventilador. Já incluí uma hélice com um motor de 15.000 rpm e cabo.
DESCRIÇÃO EM PORTUGUÊS BREVEMENTE DISPONÍVEL
Se tiver alguma dúvida neste produto não hesite em contactar-nos.
*Atenção: as imagens são meramente ilustrativas.
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); } }
Produtos Associados