1
0
mirror of https://github.com/AlexGyver/GyverCore.git synced 2025-07-29 19:01:12 +03:00
This commit is contained in:
Alex
2019-08-02 19:08:10 +03:00
parent 983b80cb94
commit c52f478bb5
16 changed files with 295 additions and 785 deletions

View File

@ -0,0 +1,28 @@
// скетч для проверки занимаемой памяти
void setup() {
pinMode(2, 1);
digitalWrite(1, 1);
digitalRead(0);
analogRead(0);
analogReference(DEFAULT);
analogWrite(9, 125);
millis();
micros();
delay(10);
delayMicroseconds(10);
tone(10, 10);
tone(10, 10, 100);
attachInterrupt(0, isr, 0);
detachInterrupt(0);
//uartBegin();
//uartPrintln("kek OK");
Serial.begin(9600);
Serial.println("kek OK");
}
void isr(){}
void loop() {
// put your main code here, to run repeatedly:
}