Skip to content

Using Arduino and IRF520 MOSFET to control DC heater

Notifications You must be signed in to change notification settings

smart-aquarium-tank/heater

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

Schematic

schematic

IRF520 MOSFET Specifications

  • Input Voltage: 3.3V ~ 5VDC
  • Output load voltage: 0-24V
  • Output load current: <5A (More than 1A required a heat sink)
  • Weight: 10g
  • Size: 33.5 x 25.5mm

irf520

Arduino Code

#define heater 6

void setup(void) 
{ 
 pinMode(heater, OUTPUT);
} 
void loop(void) 
{ 
 digitalWrite(heater, HIGH);
} 

Releases

No releases published

Packages

No packages published