How to reduce consumption on arduino system? -
this simple example.
how reduce total power consumption without modify hardware,
, modify program???
of course delay(1000)
shouldn't changed.
thank everyone.
ps. because after see video
and want applicate on project. still don't know how use ""picopower""to reduce arduino system.
// pin 13 has led connected on arduino boards. // give name: int led = 13; void setup() { pinmode(led, output); } void loop() { digitalwrite(led, high); delay(1000); digitalwrite(led, low); delay(1000); }
Comments
Post a Comment