math formulas

code

Monday, January 21, 2013

Hello World.

We'll see what turns up here. My first idea was to collect some information about micro controller programming.

1 comment:

  1. Can you explain to me how this code works?

    /*
    Attiny85
    */

    #include

    const int panouPin = A3; // Attiny85: pin 2
    const int outputPin = 4; // Attiny85: pin 3

    boolean Armare = false;
    void setup(){
    pinMode(outputPin,OUTPUT);
    delay(1000);
    }

    ReplyDelete