Midi Ondes Martenot Error

Hello All, so i am new to using arduino, but have decided to take on the challenge of creating something similar to Mitsushi Abe's midi ondes martenot. I'm planning on adapting his code, but when i enter his code into my arduino ide i get the following error message:

Midi_ondes_potential:24: error: 'SensorPin' does not name a type
SensorPin = 0 int; // Connect The Pressure Sensor To A0
^
Midi_ondes_potential:42: error: 'MidiCh' does not name a type
MidiCh = 1 int;
^
Midi_ondes_potential:54: error: 'Float' does not name a type
Float MIDIPITCHSCALE = 0.03785;
^

Am i being a complete noob? any help would be greatly appreciated :slight_smile:

Post your code.

But this doesn't look right:

SensorPin = 0 int; // Connect The Pressure Sensor To A0

At a guess, and it would be a guess with no code, you're after:

int SensorPin = 0; // Connect The Pressure Sensor To A0

Rinse repeat for the rest of those errors. Also Float should be float (lower case)