kolleksjon av dokumenter og kode som blir brukt på Jokerspace i Valdres for å formiddle elektronisk musikk til et skapende milljø
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

преди 2 години
12345678910
  1. #include "jokermusikk.h"
  2. void note (int n, int octave) {
  3. int prescaler = 8 + Clock - (octave + n/12);
  4. if (prescaler<1 || prescaler>15 || octave==0) prescaler = 0;
  5. DDRB = (DDRB & ~(1<<Output)) | (prescaler != 0)<<Output;
  6. OCR1C = pgm_read_byte(&scale[n % 12]) - 1;
  7. GTCCR = (Output == 4)<<COM1B0;
  8. TCCR1 = 1<<CTC1 | (Output == 1)<<COM1A0 | prescaler<<CS10;
  9. }