Intan GUI

This notebook will demonstrate the functionality of the Intan.jl GUI. We hope that this will eventually encompass 1) data acquisition, 2) visualization, 3) automatic and manual spike sorting, and 4) experimental control.


In [ ]:
using Intan

In [ ]:
#First create amplifier array:
myamp=RHD2164("PortA1")

#Connect to FPGA
myfpga=FPGA(myamp)

#Setup debug

d=Debug("/home/nicolelislab/Intan.jl/test/data/qq.mat","qq");

#Task
mt=Task_TestTask()

#Save
mys=SaveNone()

#Initialize evaluation board setup
myrhd=makeRHD([myfpga],mt,sav=mys,debug=d);

In [ ]:
handles = makegui(myrhd);

In [ ]: