miguellan / binaural-beat

iOS binaural beat generator

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Binaural Beats

The included Xcode project contains a working example that allows to generate any binaural beat from the user interface.

alt text

BinauralBeat is very easy to use class that plays a binaural beat given the base and beat frequencies.

Swift

let binauralBeat = BinauralBeat()
binauralBeat.baseFrequency = 80.0 // Hz
binauralBeat.beatFrequency = 4.0 // Hz
binauralBeat.play()

Objective-C

BinauralBeat *binauralBeat = [[BinauralBeat alloc] init];
binauralBeat.baseFrequency = 80.0 // Hz
binauralBeat.beatFrequency = 4.0 // Hz
[binauralBeat play];

About

iOS binaural beat generator


Languages

Language:Objective-C 70.1%Language:Swift 29.9%