Luuc
Published © GPL3+

Oszilloskop am Calliope

erster Versuch, mit dem Calliope Mini Lissajous-Figuren und weitere Grafiken zu erstellen

AdvancedWork in progress1 hour160
Oszilloskop am Calliope

Things used in this project

Hardware components

Calliope mini
Calliope mini
×1
oscilloscope
×1
Jumper wires (generic)
Jumper wires (generic)
×1

Story

Read more

Code

Lissajous mit Arduino IDE

C/C++
Connect P1 with Channel 1 X and P2 with Channel 2 Y of your Oscilloscope
// Connect P1 with Channel 1 X and P2 with Channel 2 Y of your Oscilloscope
void setup() {  
  pinMode(1, OUTPUT);
  pinMode(2, OUTPUT);
}

void loop(){
  digitalWrite(1, HIGH);
  digitalWrite(2, HIGH);
  digitalWrite(1, LOW);
  digitalWrite(2, LOW);

}

Credits

Luuc
8 projects • 3 followers
Contact

Comments

Please log in or sign up to comment.