if (value = 7419184) // This is the value received when button one on TX is pushed
This is setting value to 7419184, NOT testing whether value is 7419184. That probably is not what you want. You need == there, not =.
if (value = 7419184) // This is the value received when button one on TX is pushed
This is setting value to 7419184, NOT testing whether value is 7419184. That probably is not what you want. You need == there, not =.