EEG Signal Generator

Thread Starter

FranciscoCamp

Joined Jul 2, 2021
1
I have an EEG signal generator project (want create sine, square and biological waves) should i use arduino to save waveforms? how can I lower the amplitude to microvolts?
I'm not sure where to start, any ideas on how I can do this.
Thanks in advance for any guidance.
 

DickCappels

Joined Aug 21, 2008
10,152
I've found what appears to be complete documentation of Jesper's project.
https://www.elektronik-labor.de/AVR/dds/DDSpll.html

The design includes a 256 byte wavetable. You merely plug in the 256 values to be repeated in each cycle and the chip plays that back over and over. You can set the repetition frequency in firmware and do away with the RS-232 control.

Also, here is another if you prefer German.
https://www.elektronik-labor.de/AVR/dds/DDSpll.htmlhttps://www.elektronik-labor.de/AVR/dds/DDSpll.html

Here is a project that generates a sine wave by reading it from a table of values, it is interrupt driven and written in Gnu C, so it might be easier to understand.
http://www.cappels.org/dproj/1_kHz_Signal_Source/1_KHz_Sine_Wave_Generator.html
 
Top