Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
satshas authored Nov 27, 2021
1 parent 5cb53a6 commit c6e884c
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions converterPCB/code_converter_pcb.ino
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#include <avr/io.h>
#include <util/delay.h>


#define DELAY_TIME 6000

int main(){

DDRB = (1<<DDB4);
PORTB = (1<<PB4);
_delay_ms(DELAY_TIME);
PORTB = (0<<PB4);

}

0 comments on commit c6e884c

Please sign in to comment.