Unknown parameter error on custom board json

hello,

slowly working through all the errors i have made, but can’t seem to get past these - why is the compiler stuck on my @hv_param labels? am i missing something?
…and why is the “…*** No rule to make target…” always there?

hoping someone can point out some possibilities for a stuck newbie…

sorry if i have put in too much / not enough info…
cheers…

these are the last lines of my compile where the errors come in -

--> Generating Daisy module
  1) [91mError[0m c2daisy: Unknown parameter "GateIn"
Total compile time: 2827.63ms
Compiling for custom...
make: /Users/mrseanoconnell/Library/Caches/plugdata/Heavy-6843e7b71aff854447712a/daisy/source/Makefile: No such file or directory
make: *** No rule to make target '/Users/mrseanoconnell/Library/Caches/plugdata/Heavy-6843e7b71aff854447712a/daisy/source/Makefile'.  Stop.

grab of patch -
Untitled

and json -

{
    "name": "shiftnotchreverb1",
    "som": "seed",
    "audio": { "channels": 2 },
    "components": {
        "motionsensor": {
            "component": "GateIn",
            "pin": 15
        },
        "relay1": {
            "component": "GateOut",
            "pin": 16
        },
        "relay2": {
            "component": "GateOut",
            "pin": 17
        },
        "pota": {
            "component": "AnalogControl",
            "pin": 18
        },
        "potb": {
            "component": "AnalogControl",
            "pin": 19
        },
        "potc": {
            "component": "AnalogControl",
            "pin": 20
        },
        "potd": {
            "component": "AnalogControl",
            "pin": 21
        }
    }
}

apologies - an old .json was copied - the GateIn component has been changed from “motionsensor” to “Gatein” attempting to ged rid of the error, but it always comes up with the “unknown parameter” error even with matched component names on patch and json…

All parameter names are converted to lower case, so in your json you should call it gatein.