Category: Software


First draft of a plugin for modded Mattel Mindflex headsets that have been connected via USB.

Zeo 0.9.3

Increased the bandwidth extracted from the data channels.

Lucid Scribe 1.2.2

Ensured that the minute, hour and day graphs automatically update if they are selected, converted to Int32s and sharpened images copied and exported from the hour-overview.

Zeo 0.9.2

Fixed a null reference error and added a channel count.

Zeo 0.9.1

Added a COM port form.

Divided the Theta channel by one thousand – instead of two hundred, as it was still maxing out.
Divided the Theta channel by two hundred – instead of one hundred, as it was maxing out for some user. Thanks to Cystasy from Neurodream for finding the problem.
Enabled loadFromRemoteSources as the plugins weren’t being picked up anymore because of a change in the .Net Framework.

From MSDN:

In the .NET Framework version 3.5 and earlier versions, if you loaded an assembly from a remote location, the assembly would run partially trusted with a grant set that depended on the zone in which it was loaded. […] If you try to run that assembly in the .NET Framework version 4 and later versions, an exception is thrown; you must either explicitly create a sandbox for the assembly, or run it in full trust.

So I added the following to app.config to get it working again:

<configuration>
  <runtime>
    <loadFromRemoteSources enabled="true" />
  </runtime>
</configuration>
Initialized the buffer when receiving data from the COM port and added error handling. The plugin should now start plotting!