Method | Description | |
---|---|---|
Emulator2 ( ) : System |
Creates a new instance of an Emulator2
|
|
InitializeComponent ( ) : void |
Triggers the Initialize event
|
|
StartEmulator ( ) : void |
Start the emulator engine on a new thread Uses Environment.GetCommandLineArguments() |
|
StartEmulator ( string Args ) : void |
Start the emulator engine on a new thread
|
|
UninitializeComponent ( ) : void |
Triggers the Uninitialize event
|
Method | Description | |
---|---|---|
RegisterPin ( string Name, |
Registers a GPIO pin in the system Useful method for registering a pin NOTE: This should only be called from an overload of the LoadDefaultComponents() Method |
|
RegisterPin ( string Name, |
Registers a GPIO pin in the system Useful method for registering a pin NOTE: This should only be called from an overload of the LoadDefaultComponents() Method |
|
RegisterPin ( string Name, |
Registers a GPIO pin in the system Useful method for registering a pin that acts as a button NOTE: This should only be called from an overload of the LoadDefaultComponents() Method |
protected RegisterPin ( string Name, |
||
Name | string | Name for the pin |
Pin | Pin number | |
return | GpioPort |
protected RegisterPin ( string Name, |
||
Name | string | Name for the pin |
Pin | Pin number | |
ExpectedMode | GpioPortMode | Expected mode for the pin |
AllowedMode | GpioPortMode | Allowed modes for the pin |
return | GpioPort |
protected RegisterPin ( string Name, |
||
Name | string | Name for the pin |
Pin | Pin number | |
Key | VirtualKey | Virtual Key to attach to the pin |
return | GpioPort |
public StartEmulator ( string Args ) : void | ||
Args | string | Command line arguments |
return | void |