-
Notifications
You must be signed in to change notification settings - Fork 45
Open
Description
Updates the brainwave type definitions to match the actual API spec as documented in https://docs.neurosity.co/docs/api/brainwaves.
Changes:
- Adds channelNames and notchFrequency to BrainwaveInfo interface
- Updates Epoch, PSD, and PowerByBand interfaces to use the complete BrainwaveInfo type
update to:
export interface Epoch {
data: AmplitudeByChannel;
info: BrainwaveInfo;
}
export interface PSD {
psd: PSDByChannel;
freqs: number[];
info: BrainwaveInfo;
}
export interface PowerByBand {
gamma: number[];
beta: number[];
alpha: number[];
theta: number[];
delta: number[];
info: BrainwaveInfo;
}
Metadata
Metadata
Assignees
Labels
No labels