mirror of
				https://github.com/mfulz/qmk_firmware.git
				synced 2025-10-31 13:22:31 +01:00 
			
		
		
		
	adds more voice harmonics
This commit is contained in:
		
							parent
							
								
									a8086126fe
								
							
						
					
					
						commit
						a718c53fe7
					
				| @ -101,14 +101,27 @@ float voice_envelope(float frequency) { | |||||||
|             break; |             break; | ||||||
|         case duty_fifth_down: |         case duty_fifth_down: | ||||||
|             note_timbre = 0.5; |             note_timbre = 0.5; | ||||||
|             if ((envelope_index % 5) == 0) |             if ((envelope_index % 3) == 0) | ||||||
|                 note_timbre = 0.75; |                 note_timbre = 0.75; | ||||||
|             break; |             break; | ||||||
|         case duty_fourth_down: |         case duty_fourth_down: | ||||||
|  |             note_timbre = 0.0; | ||||||
|             if ((envelope_index % 12) == 0) |             if ((envelope_index % 12) == 0) | ||||||
|  |                 note_timbre = 0.75; | ||||||
|  |             if (((envelope_index % 12) % 4) != 1) | ||||||
|  |                 note_timbre = 0.75; | ||||||
|  |             break; | ||||||
|  |         case duty_third_down: | ||||||
|  |             note_timbre = 0.5; | ||||||
|  |             if ((envelope_index % 5) == 0) | ||||||
|  |                 note_timbre = 0.75; | ||||||
|  |             break; | ||||||
|  |         case duty_fifth_third_down: | ||||||
|  |             note_timbre = 0.5; | ||||||
|  |             if ((envelope_index % 5) == 0) | ||||||
|  |                 note_timbre = 0.75; | ||||||
|  |             if ((envelope_index % 3) == 0) | ||||||
|                 note_timbre = 0.25; |                 note_timbre = 0.25; | ||||||
|             else |  | ||||||
|                 note_timbre = 0.5; |  | ||||||
|             break; |             break; | ||||||
| 
 | 
 | ||||||
| 		default: | 		default: | ||||||
|  | |||||||
| @ -18,6 +18,8 @@ typedef enum { | |||||||
|     duty_octave_down, |     duty_octave_down, | ||||||
|     duty_fifth_down, |     duty_fifth_down, | ||||||
|     duty_fourth_down, |     duty_fourth_down, | ||||||
|  |     duty_third_down, | ||||||
|  |     duty_fifth_third_down, | ||||||
|     number_of_voices // important that this is last
 |     number_of_voices // important that this is last
 | ||||||
| } voice_type; | } voice_type; | ||||||
| 
 | 
 | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Jack Humbert
						Jack Humbert