public static TronicSequence StartFromButton(N8BlockFactory Blocks = null, int type = 1, string name = "Button") { TronicSequence ts = new TronicSequence(Blocks); ts.Button(type, name); return ts; }
public static TronicSequence StartFromReciever(DataNodeIn Channel, DataNodeOut Username, DataNodeOut Message, N8BlockFactory Blocks = null, string name = "Reciever") { TronicSequence ts = new TronicSequence(Blocks); ts.Button(1, "Reciever Setup") .RadioReciever(Channel, Username, Message, name); return ts; }