├── .gitattributes ├── .github └── workflows │ ├── build.yml │ └── codeql-analysis.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── Directory.Build.props ├── Jacdac.Dev.sln ├── Jacdac.DevTools ├── Jacdac.DevTools.csproj ├── Program.cs ├── Properties │ └── launchSettings.json └── publish.sh ├── Jacdac.Explorer ├── Jacdac.Explorer.csproj ├── JacdacExplorer.Designer.cs ├── JacdacExplorer.cs ├── JacdacExplorer.resx ├── PacketTracer.Designer.cs ├── PacketTracer.cs ├── PacketTracer.resx └── Program.cs ├── Jacdac.Meadow ├── Jacdac.Meadow.csproj ├── MeadowApp.cs ├── app.config.yaml ├── meadow.config.yaml └── wifi.config.yaml ├── Jacdac.NET.Clients └── Jacdac.NET.Clients.csproj ├── Jacdac.NET.Logging ├── Jacdac.NET.Logging.csproj ├── JacdacLogger.cs ├── JacdacLoggerExtensions.cs └── JacdacLoggerProvider.cs ├── Jacdac.NET.Playground ├── Jacdac.NET.Playground.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── publish.sh └── sounds │ ├── giggle.wav │ └── happy.wav ├── Jacdac.NET.Servers.AzureIotHub ├── AzureIoTHubClient.cs ├── Helpers.cs └── Jacdac.NET.Servers.AzureIotHub.csproj ├── Jacdac.NET.Servers.SoundPlayer ├── Jacdac.NET.Servers.SoundPlayer.csproj └── NetCoreAudioSoundPlayer.cs ├── Jacdac.NET.Transports.Hf2 ├── HF2.cs ├── Hf2Packet.cs ├── Hf2Response.cs ├── IHf2Transport.cs └── Jacdac.NET.Transports.Hf2.csproj ├── Jacdac.NET.Transports.LibUsb ├── Jacdac.NET.Transports.LibUsb.csproj ├── UsbHF2Transport.cs └── UsbTransport.cs ├── Jacdac.NET.Transports.Spi ├── Jacdac.NET.Transports.Spi.csproj └── SpiTransport.cs ├── Jacdac.NET.Transports.WebSockets ├── Jacdac.NET.Transports.WebSockets.csproj └── WebSocketTransport.cs ├── Jacdac.NET ├── FileSettingsStorage.cs ├── Jacdac.NET.csproj └── NETPlatform.cs ├── Jacdac.Nano.Clients ├── Jacdac.Nano.Clients.nfproj ├── Jacdac.Nano.Clients.nuspec ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── Jacdac.Nano.Transports.Spi ├── Jacdac.Nano.Transports.Spi.nfproj ├── Jacdac.Nano.Transports.Spi.nuspec ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── Jacdac.Nano ├── Jacdac.Nano.nfproj ├── Jacdac.Nano.nuspec ├── NanoPlatform.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── Jacdac.Tests ├── Jacdac.Tests.csproj └── PackTest.cs ├── Jacdac.TinyCLR.Clients ├── Jacdac.TinyCLR.Clients.csproj ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── Jacdac.TinyCLR.Playground ├── Console.cs ├── Display.cs ├── Jacdac.TinyCLR.Playground.csproj ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ └── small.tinyfnt ├── Servers │ └── WifiServer.cs └── packages.config ├── Jacdac.TinyCLR.Storage ├── Jacdac.TinyCLR.Storage.csproj ├── Properties │ └── AssemblyInfo.cs ├── StorageManager.cs └── packages.config ├── Jacdac.TinyCLR ├── Jacdac.TinyCLR.csproj ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ └── github.cer ├── TinyCLRPlatform.cs ├── Transports │ └── UartTransport.cs └── packages.config ├── Jacdac.Uploader └── Jacdac.Uploader.csproj ├── Jacdac.sln ├── Jacdac ├── Bus.cs ├── Client.cs ├── Clients │ ├── AccelerometerClient.g.cs │ ├── AcidityClient.g.cs │ ├── AirPressureClient.g.cs │ ├── AirQualityIndexClient.g.cs │ ├── ArcadeGamepadClient.g.cs │ ├── ArcadeSoundClient.g.cs │ ├── BarcodeReaderClient.g.cs │ ├── BitRadioClient.g.cs │ ├── BrailleDisplayClient.g.cs │ ├── ButtonClient.g.cs │ ├── BuzzerClient.cs │ ├── BuzzerClient.g.cs │ ├── CapacitiveButtonClient.g.cs │ ├── CharacterScreenClient.g.cs │ ├── CloudAdapterClient.g.cs │ ├── CloudConfigurationClient.g.cs │ ├── CodalMessageBusClient.g.cs │ ├── ColorClient.g.cs │ ├── CompassClient.g.cs │ ├── DcCurrentMeasurementClient.g.cs │ ├── DcVoltageMeasurementClient.g.cs │ ├── DeviceScriptConditionClient.g.cs │ ├── DeviceScriptManagerClient.g.cs │ ├── DistanceClient.g.cs │ ├── DmxClient.g.cs │ ├── DotMatrixClient.g.cs │ ├── DualMotorsClient.g.cs │ ├── ECO2Client.g.cs │ ├── FlexClient.g.cs │ ├── GPIOClient.g.cs │ ├── GamepadClient.cs │ ├── GamepadClient.g.cs │ ├── GyroscopeClient.g.cs │ ├── HeartRateClient.g.cs │ ├── HidJoystickClient.g.cs │ ├── HidKeyboardClient.g.cs │ ├── HidMouseClient.g.cs │ ├── HumidityClient.g.cs │ ├── I2CClient.g.cs │ ├── IlluminanceClient.g.cs │ ├── IndexedScreenClient.g.cs │ ├── KeyboardClientClient.g.cs │ ├── LedClient.cs │ ├── LedClient.g.cs │ ├── LedSingleClient.g.cs │ ├── LedStripClient.cs │ ├── LedStripClient.g.cs │ ├── LightBulbClient.g.cs │ ├── LightLevelClient.g.cs │ ├── MagneticFieldLevelClient.g.cs │ ├── MagnetometerClient.g.cs │ ├── MatrixKeypadClient.g.cs │ ├── MicrophoneClient.g.cs │ ├── MidiOutputClient.g.cs │ ├── ModelRunnerClient.g.cs │ ├── MotionClient.g.cs │ ├── MotorClient.g.cs │ ├── MultitouchClient.g.cs │ ├── PCControllerClient.g.cs │ ├── PCMonitorClient.g.cs │ ├── PlanarPositionClient.g.cs │ ├── PotentiometerClient.g.cs │ ├── PowerSupplyClient.g.cs │ ├── PressureButtonClient.g.cs │ ├── ProtoTestClient.g.cs │ ├── PulseOximeterClient.g.cs │ ├── RainGaugeClient.g.cs │ ├── RealTimeClockClient.g.cs │ ├── ReflectedLightClient.g.cs │ ├── RelayClient.g.cs │ ├── RngClient.g.cs │ ├── RosClient.g.cs │ ├── RotaryEncoderClient.g.cs │ ├── RoverClient.g.cs │ ├── SatNavClient.g.cs │ ├── SensorAggregatorClient.g.cs │ ├── SerialClient.g.cs │ ├── ServoClient.g.cs │ ├── SettingsClient.g.cs │ ├── SevenSegmentDisplayClient.cs │ ├── SevenSegmentDisplayClient.g.cs │ ├── SoilMoistureClient.g.cs │ ├── SolenoidClient.g.cs │ ├── SoundLevelClient.g.cs │ ├── SoundPlayerClient.g.cs │ ├── SoundRecorderWithPlaybackClient.g.cs │ ├── SoundSpectrumClient.g.cs │ ├── SpeechSynthesisClient.g.cs │ ├── SwitchClient.g.cs │ ├── TcpClient.g.cs │ ├── TemperatureClient.g.cs │ ├── TimeseriesAggregatorClient.g.cs │ ├── TrafficLightClient.g.cs │ ├── TvocClient.g.cs │ ├── UsbBridgeClient.g.cs │ ├── UvIndexClient.g.cs │ ├── VerifiedTelemetryClient.g.cs │ ├── VibrationMotorClient.g.cs │ ├── WaterLevelClient.g.cs │ ├── WeightScaleClient.g.cs │ ├── WifiClient.g.cs │ ├── WindDirectionClient.g.cs │ ├── WindSpeedClient.g.cs │ └── WsskClient.g.cs ├── Constants.cs ├── Constants │ ├── AccelerometerConstants.g.cs │ ├── AcidityConstants.g.cs │ ├── AirpressureConstants.g.cs │ ├── AirqualityindexConstants.g.cs │ ├── ArcadegamepadConstants.g.cs │ ├── ArcadesoundConstants.g.cs │ ├── BarcodereaderConstants.g.cs │ ├── BitradioConstants.g.cs │ ├── BootloaderConstants.g.cs │ ├── BrailledisplayConstants.g.cs │ ├── BridgeConstants.g.cs │ ├── ButtonConstants.g.cs │ ├── BuzzerConstants.g.cs │ ├── CapacitivebuttonConstants.g.cs │ ├── CharacterscreenConstants.g.cs │ ├── CloudadapterConstants.g.cs │ ├── CloudconfigurationConstants.g.cs │ ├── CodalmessagebusConstants.g.cs │ ├── ColorConstants.g.cs │ ├── CompassConstants.g.cs │ ├── ControlConstants.g.cs │ ├── DashboardConstants.g.cs │ ├── DccurrentmeasurementConstants.g.cs │ ├── DcvoltagemeasurementConstants.g.cs │ ├── DevicescriptconditionConstants.g.cs │ ├── DevicescriptdebuggerConstants.g.cs │ ├── DevicescriptmanagerConstants.g.cs │ ├── DistanceConstants.g.cs │ ├── DmxConstants.g.cs │ ├── DotmatrixConstants.g.cs │ ├── DualmotorsConstants.g.cs │ ├── Eco2Constants.g.cs │ ├── FlexConstants.g.cs │ ├── GamepadConstants.g.cs │ ├── GpioConstants.g.cs │ ├── GyroscopeConstants.g.cs │ ├── HeartrateConstants.g.cs │ ├── HidjoystickConstants.g.cs │ ├── HidkeyboardConstants.g.cs │ ├── HidmouseConstants.g.cs │ ├── HumidityConstants.g.cs │ ├── I2cConstants.g.cs │ ├── IlluminanceConstants.g.cs │ ├── IndexedscreenConstants.g.cs │ ├── InfrastructureConstants.g.cs │ ├── KeyboardclientConstants.g.cs │ ├── LedConstants.g.cs │ ├── LedsingleConstants.g.cs │ ├── LedstripConstants.g.cs │ ├── LightbulbConstants.g.cs │ ├── LightlevelConstants.g.cs │ ├── LoggerConstants.g.cs │ ├── MagneticfieldlevelConstants.g.cs │ ├── MagnetomerConstants.g.cs │ ├── MatrixkeypadConstants.g.cs │ ├── MicrophoneConstants.g.cs │ ├── MidioutputConstants.g.cs │ ├── ModelrunnerConstants.g.cs │ ├── MotionConstants.g.cs │ ├── MotorConstants.g.cs │ ├── MultitouchConstants.g.cs │ ├── PccontrollerConstants.g.cs │ ├── PcmonitorConstants.g.cs │ ├── PlanarpositionConstants.g.cs │ ├── PotentiometerConstants.g.cs │ ├── PowerConstants.g.cs │ ├── PowersupplyConstants.g.cs │ ├── PressurebuttonConstants.g.cs │ ├── PrototestConstants.g.cs │ ├── ProxyConstants.g.cs │ ├── PulseoximeterConstants.g.cs │ ├── RaingaugeConstants.g.cs │ ├── RealtimeclockConstants.g.cs │ ├── ReflectedlightConstants.g.cs │ ├── RelayConstants.g.cs │ ├── RngConstants.g.cs │ ├── RolemanagerConstants.g.cs │ ├── RosConstants.g.cs │ ├── RotaryencoderConstants.g.cs │ ├── RoverConstants.g.cs │ ├── SatelittenavigationsystemConstants.g.cs │ ├── SensoraggregatorConstants.g.cs │ ├── SerialConstants.g.cs │ ├── ServoConstants.g.cs │ ├── SettingsConstants.g.cs │ ├── SevensegmentdisplayConstants.g.cs │ ├── SoilmoistureConstants.g.cs │ ├── SolenoidConstants.g.cs │ ├── SoundlevelConstants.g.cs │ ├── SoundplayerConstants.g.cs │ ├── SoundrecorderwithplaybackConstants.g.cs │ ├── SoundspectrumConstants.g.cs │ ├── SpeechsynthesisConstants.g.cs │ ├── SwitchConstants.g.cs │ ├── TcpConstants.g.cs │ ├── TemperatureConstants.g.cs │ ├── TimeseriesaggregatorConstants.g.cs │ ├── TrafficlightConstants.g.cs │ ├── TvocConstants.g.cs │ ├── UniquebrainConstants.g.cs │ ├── UsbbridgeConstants.g.cs │ ├── UvindexConstants.g.cs │ ├── VerifiedtelemetrysensorConstants.g.cs │ ├── VibrationmotorConstants.g.cs │ ├── WaterlevelConstants.g.cs │ ├── WeightscaleConstants.g.cs │ ├── WifiConstants.g.cs │ ├── WinddirectionConstants.g.cs │ ├── WindspeedConstants.g.cs │ ├── WsskConstants.g.cs │ ├── _baseConstants.g.cs │ ├── _sensorConstants.g.cs │ └── _systemConstants.g.cs ├── Device.cs ├── DeviceServer.cs ├── Event.cs ├── Jacdac.csproj ├── LEDController.cs ├── LedStripProgramEncoding.cs ├── Node.cs ├── OutPipe.cs ├── Packet.cs ├── PacketEncoding.cs ├── Platform.cs ├── Register.cs ├── RegisterServer.cs ├── Samples │ ├── Blinky.cs │ ├── ButtonTracker.cs │ ├── CO2Alarm.cs │ ├── DeviceSniffer.cs │ ├── DoubleRotatingLights.cs │ ├── GamepadMouse.cs │ ├── HumidityTracker.cs │ ├── RotaryMouse.cs │ ├── RotatingLights.cs │ ├── Sample.cs │ ├── SliderChange.cs │ ├── SlidyBlinky.cs │ ├── Thermostat.cs │ ├── blinky.g.md │ ├── buttontracker.g.md │ ├── co2alarm.g.md │ ├── devicesniffer.g.md │ ├── gamepadmouse.g.md │ ├── humiditytracker.g.md │ ├── rotarymouse.g.md │ ├── sliderchange.g.md │ ├── slidyblinky.g.md │ └── thermostat.g.md ├── SensorServer.cs ├── Servers │ ├── ControlServer.cs │ ├── InfrastructureServer.cs │ ├── LoggerServer.cs │ ├── ProtoTestServer.cs │ ├── ProxyServer.cs │ ├── RealTimeClockServer.cs │ ├── RoleManagerServer.cs │ ├── SettingsServer.cs │ ├── SoundPlayerServer.cs │ └── UniqueBrainServer.cs ├── Service.cs ├── ServiceServer.cs ├── ServiceSpecificationCatalog.cs ├── Stats.cs ├── Transport.cs └── Util.cs ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── SnippetExtractor ├── Program.cs ├── Properties │ └── launchSettings.json └── SnippetExtractor.csproj ├── TinyCLR.Build.props ├── jacdac.png ├── pack.sh ├── publish.sh ├── release.config.js └── snippet.bat /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Jacdac.Dev.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.Dev.sln -------------------------------------------------------------------------------- /Jacdac.DevTools/Jacdac.DevTools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.DevTools/Jacdac.DevTools.csproj -------------------------------------------------------------------------------- /Jacdac.DevTools/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.DevTools/Program.cs -------------------------------------------------------------------------------- /Jacdac.DevTools/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.DevTools/Properties/launchSettings.json -------------------------------------------------------------------------------- /Jacdac.DevTools/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.DevTools/publish.sh -------------------------------------------------------------------------------- /Jacdac.Explorer/Jacdac.Explorer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.Explorer/Jacdac.Explorer.csproj -------------------------------------------------------------------------------- /Jacdac.Explorer/JacdacExplorer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.Explorer/JacdacExplorer.Designer.cs -------------------------------------------------------------------------------- /Jacdac.Explorer/JacdacExplorer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.Explorer/JacdacExplorer.cs -------------------------------------------------------------------------------- /Jacdac.Explorer/JacdacExplorer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.Explorer/JacdacExplorer.resx -------------------------------------------------------------------------------- /Jacdac.Explorer/PacketTracer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.Explorer/PacketTracer.Designer.cs -------------------------------------------------------------------------------- /Jacdac.Explorer/PacketTracer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.Explorer/PacketTracer.cs -------------------------------------------------------------------------------- /Jacdac.Explorer/PacketTracer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.Explorer/PacketTracer.resx -------------------------------------------------------------------------------- /Jacdac.Explorer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.Explorer/Program.cs -------------------------------------------------------------------------------- /Jacdac.Meadow/Jacdac.Meadow.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.Meadow/Jacdac.Meadow.csproj -------------------------------------------------------------------------------- /Jacdac.Meadow/MeadowApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.Meadow/MeadowApp.cs -------------------------------------------------------------------------------- /Jacdac.Meadow/app.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.Meadow/app.config.yaml -------------------------------------------------------------------------------- /Jacdac.Meadow/meadow.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.Meadow/meadow.config.yaml -------------------------------------------------------------------------------- /Jacdac.Meadow/wifi.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.Meadow/wifi.config.yaml -------------------------------------------------------------------------------- /Jacdac.NET.Clients/Jacdac.NET.Clients.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.NET.Clients/Jacdac.NET.Clients.csproj -------------------------------------------------------------------------------- /Jacdac.NET.Logging/Jacdac.NET.Logging.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.NET.Logging/Jacdac.NET.Logging.csproj -------------------------------------------------------------------------------- /Jacdac.NET.Logging/JacdacLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.NET.Logging/JacdacLogger.cs -------------------------------------------------------------------------------- /Jacdac.NET.Logging/JacdacLoggerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.NET.Logging/JacdacLoggerExtensions.cs -------------------------------------------------------------------------------- /Jacdac.NET.Logging/JacdacLoggerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.NET.Logging/JacdacLoggerProvider.cs -------------------------------------------------------------------------------- /Jacdac.NET.Playground/Jacdac.NET.Playground.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.NET.Playground/Jacdac.NET.Playground.csproj -------------------------------------------------------------------------------- /Jacdac.NET.Playground/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.NET.Playground/Program.cs -------------------------------------------------------------------------------- /Jacdac.NET.Playground/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.NET.Playground/Properties/launchSettings.json -------------------------------------------------------------------------------- /Jacdac.NET.Playground/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.NET.Playground/publish.sh -------------------------------------------------------------------------------- /Jacdac.NET.Playground/sounds/giggle.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.NET.Playground/sounds/giggle.wav -------------------------------------------------------------------------------- /Jacdac.NET.Playground/sounds/happy.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.NET.Playground/sounds/happy.wav -------------------------------------------------------------------------------- /Jacdac.NET.Servers.AzureIotHub/AzureIoTHubClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.NET.Servers.AzureIotHub/AzureIoTHubClient.cs -------------------------------------------------------------------------------- /Jacdac.NET.Servers.AzureIotHub/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.NET.Servers.AzureIotHub/Helpers.cs -------------------------------------------------------------------------------- /Jacdac.NET.Servers.AzureIotHub/Jacdac.NET.Servers.AzureIotHub.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.NET.Servers.AzureIotHub/Jacdac.NET.Servers.AzureIotHub.csproj -------------------------------------------------------------------------------- /Jacdac.NET.Servers.SoundPlayer/Jacdac.NET.Servers.SoundPlayer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.NET.Servers.SoundPlayer/Jacdac.NET.Servers.SoundPlayer.csproj -------------------------------------------------------------------------------- /Jacdac.NET.Servers.SoundPlayer/NetCoreAudioSoundPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.NET.Servers.SoundPlayer/NetCoreAudioSoundPlayer.cs -------------------------------------------------------------------------------- /Jacdac.NET.Transports.Hf2/HF2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.NET.Transports.Hf2/HF2.cs -------------------------------------------------------------------------------- /Jacdac.NET.Transports.Hf2/Hf2Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.NET.Transports.Hf2/Hf2Packet.cs -------------------------------------------------------------------------------- /Jacdac.NET.Transports.Hf2/Hf2Response.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.NET.Transports.Hf2/Hf2Response.cs -------------------------------------------------------------------------------- /Jacdac.NET.Transports.Hf2/IHf2Transport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.NET.Transports.Hf2/IHf2Transport.cs -------------------------------------------------------------------------------- /Jacdac.NET.Transports.Hf2/Jacdac.NET.Transports.Hf2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.NET.Transports.Hf2/Jacdac.NET.Transports.Hf2.csproj -------------------------------------------------------------------------------- /Jacdac.NET.Transports.LibUsb/Jacdac.NET.Transports.LibUsb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.NET.Transports.LibUsb/Jacdac.NET.Transports.LibUsb.csproj -------------------------------------------------------------------------------- /Jacdac.NET.Transports.LibUsb/UsbHF2Transport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.NET.Transports.LibUsb/UsbHF2Transport.cs -------------------------------------------------------------------------------- /Jacdac.NET.Transports.LibUsb/UsbTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.NET.Transports.LibUsb/UsbTransport.cs -------------------------------------------------------------------------------- /Jacdac.NET.Transports.Spi/Jacdac.NET.Transports.Spi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.NET.Transports.Spi/Jacdac.NET.Transports.Spi.csproj -------------------------------------------------------------------------------- /Jacdac.NET.Transports.Spi/SpiTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.NET.Transports.Spi/SpiTransport.cs -------------------------------------------------------------------------------- /Jacdac.NET.Transports.WebSockets/Jacdac.NET.Transports.WebSockets.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.NET.Transports.WebSockets/Jacdac.NET.Transports.WebSockets.csproj -------------------------------------------------------------------------------- /Jacdac.NET.Transports.WebSockets/WebSocketTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.NET.Transports.WebSockets/WebSocketTransport.cs -------------------------------------------------------------------------------- /Jacdac.NET/FileSettingsStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.NET/FileSettingsStorage.cs -------------------------------------------------------------------------------- /Jacdac.NET/Jacdac.NET.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.NET/Jacdac.NET.csproj -------------------------------------------------------------------------------- /Jacdac.NET/NETPlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.NET/NETPlatform.cs -------------------------------------------------------------------------------- /Jacdac.Nano.Clients/Jacdac.Nano.Clients.nfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.Nano.Clients/Jacdac.Nano.Clients.nfproj -------------------------------------------------------------------------------- /Jacdac.Nano.Clients/Jacdac.Nano.Clients.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.Nano.Clients/Jacdac.Nano.Clients.nuspec -------------------------------------------------------------------------------- /Jacdac.Nano.Clients/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.Nano.Clients/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Jacdac.Nano.Clients/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.Nano.Clients/packages.config -------------------------------------------------------------------------------- /Jacdac.Nano.Transports.Spi/Jacdac.Nano.Transports.Spi.nfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.Nano.Transports.Spi/Jacdac.Nano.Transports.Spi.nfproj -------------------------------------------------------------------------------- /Jacdac.Nano.Transports.Spi/Jacdac.Nano.Transports.Spi.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.Nano.Transports.Spi/Jacdac.Nano.Transports.Spi.nuspec -------------------------------------------------------------------------------- /Jacdac.Nano.Transports.Spi/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.Nano.Transports.Spi/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Jacdac.Nano.Transports.Spi/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.Nano.Transports.Spi/packages.config -------------------------------------------------------------------------------- /Jacdac.Nano/Jacdac.Nano.nfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.Nano/Jacdac.Nano.nfproj -------------------------------------------------------------------------------- /Jacdac.Nano/Jacdac.Nano.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.Nano/Jacdac.Nano.nuspec -------------------------------------------------------------------------------- /Jacdac.Nano/NanoPlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.Nano/NanoPlatform.cs -------------------------------------------------------------------------------- /Jacdac.Nano/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.Nano/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Jacdac.Nano/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.Nano/packages.config -------------------------------------------------------------------------------- /Jacdac.Tests/Jacdac.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.Tests/Jacdac.Tests.csproj -------------------------------------------------------------------------------- /Jacdac.Tests/PackTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.Tests/PackTest.cs -------------------------------------------------------------------------------- /Jacdac.TinyCLR.Clients/Jacdac.TinyCLR.Clients.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.TinyCLR.Clients/Jacdac.TinyCLR.Clients.csproj -------------------------------------------------------------------------------- /Jacdac.TinyCLR.Clients/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.TinyCLR.Clients/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Jacdac.TinyCLR.Clients/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.TinyCLR.Clients/packages.config -------------------------------------------------------------------------------- /Jacdac.TinyCLR.Playground/Console.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.TinyCLR.Playground/Console.cs -------------------------------------------------------------------------------- /Jacdac.TinyCLR.Playground/Display.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.TinyCLR.Playground/Display.cs -------------------------------------------------------------------------------- /Jacdac.TinyCLR.Playground/Jacdac.TinyCLR.Playground.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.TinyCLR.Playground/Jacdac.TinyCLR.Playground.csproj -------------------------------------------------------------------------------- /Jacdac.TinyCLR.Playground/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.TinyCLR.Playground/Program.cs -------------------------------------------------------------------------------- /Jacdac.TinyCLR.Playground/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.TinyCLR.Playground/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Jacdac.TinyCLR.Playground/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.TinyCLR.Playground/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Jacdac.TinyCLR.Playground/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.TinyCLR.Playground/Properties/Resources.resx -------------------------------------------------------------------------------- /Jacdac.TinyCLR.Playground/Resources/small.tinyfnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.TinyCLR.Playground/Resources/small.tinyfnt -------------------------------------------------------------------------------- /Jacdac.TinyCLR.Playground/Servers/WifiServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.TinyCLR.Playground/Servers/WifiServer.cs -------------------------------------------------------------------------------- /Jacdac.TinyCLR.Playground/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.TinyCLR.Playground/packages.config -------------------------------------------------------------------------------- /Jacdac.TinyCLR.Storage/Jacdac.TinyCLR.Storage.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.TinyCLR.Storage/Jacdac.TinyCLR.Storage.csproj -------------------------------------------------------------------------------- /Jacdac.TinyCLR.Storage/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.TinyCLR.Storage/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Jacdac.TinyCLR.Storage/StorageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.TinyCLR.Storage/StorageManager.cs -------------------------------------------------------------------------------- /Jacdac.TinyCLR.Storage/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.TinyCLR.Storage/packages.config -------------------------------------------------------------------------------- /Jacdac.TinyCLR/Jacdac.TinyCLR.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.TinyCLR/Jacdac.TinyCLR.csproj -------------------------------------------------------------------------------- /Jacdac.TinyCLR/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.TinyCLR/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Jacdac.TinyCLR/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.TinyCLR/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Jacdac.TinyCLR/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.TinyCLR/Properties/Resources.resx -------------------------------------------------------------------------------- /Jacdac.TinyCLR/Resources/github.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.TinyCLR/Resources/github.cer -------------------------------------------------------------------------------- /Jacdac.TinyCLR/TinyCLRPlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.TinyCLR/TinyCLRPlatform.cs -------------------------------------------------------------------------------- /Jacdac.TinyCLR/Transports/UartTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.TinyCLR/Transports/UartTransport.cs -------------------------------------------------------------------------------- /Jacdac.TinyCLR/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.TinyCLR/packages.config -------------------------------------------------------------------------------- /Jacdac.Uploader/Jacdac.Uploader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.Uploader/Jacdac.Uploader.csproj -------------------------------------------------------------------------------- /Jacdac.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac.sln -------------------------------------------------------------------------------- /Jacdac/Bus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Bus.cs -------------------------------------------------------------------------------- /Jacdac/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Client.cs -------------------------------------------------------------------------------- /Jacdac/Clients/AccelerometerClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/AccelerometerClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/AcidityClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/AcidityClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/AirPressureClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/AirPressureClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/AirQualityIndexClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/AirQualityIndexClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/ArcadeGamepadClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/ArcadeGamepadClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/ArcadeSoundClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/ArcadeSoundClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/BarcodeReaderClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/BarcodeReaderClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/BitRadioClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/BitRadioClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/BrailleDisplayClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/BrailleDisplayClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/ButtonClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/ButtonClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/BuzzerClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/BuzzerClient.cs -------------------------------------------------------------------------------- /Jacdac/Clients/BuzzerClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/BuzzerClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/CapacitiveButtonClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/CapacitiveButtonClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/CharacterScreenClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/CharacterScreenClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/CloudAdapterClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/CloudAdapterClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/CloudConfigurationClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/CloudConfigurationClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/CodalMessageBusClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/CodalMessageBusClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/ColorClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/ColorClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/CompassClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/CompassClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/DcCurrentMeasurementClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/DcCurrentMeasurementClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/DcVoltageMeasurementClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/DcVoltageMeasurementClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/DeviceScriptConditionClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/DeviceScriptConditionClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/DeviceScriptManagerClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/DeviceScriptManagerClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/DistanceClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/DistanceClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/DmxClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/DmxClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/DotMatrixClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/DotMatrixClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/DualMotorsClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/DualMotorsClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/ECO2Client.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/ECO2Client.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/FlexClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/FlexClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/GPIOClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/GPIOClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/GamepadClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/GamepadClient.cs -------------------------------------------------------------------------------- /Jacdac/Clients/GamepadClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/GamepadClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/GyroscopeClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/GyroscopeClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/HeartRateClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/HeartRateClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/HidJoystickClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/HidJoystickClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/HidKeyboardClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/HidKeyboardClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/HidMouseClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/HidMouseClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/HumidityClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/HumidityClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/I2CClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/I2CClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/IlluminanceClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/IlluminanceClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/IndexedScreenClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/IndexedScreenClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/KeyboardClientClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/KeyboardClientClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/LedClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/LedClient.cs -------------------------------------------------------------------------------- /Jacdac/Clients/LedClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/LedClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/LedSingleClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/LedSingleClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/LedStripClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/LedStripClient.cs -------------------------------------------------------------------------------- /Jacdac/Clients/LedStripClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/LedStripClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/LightBulbClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/LightBulbClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/LightLevelClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/LightLevelClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/MagneticFieldLevelClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/MagneticFieldLevelClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/MagnetometerClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/MagnetometerClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/MatrixKeypadClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/MatrixKeypadClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/MicrophoneClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/MicrophoneClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/MidiOutputClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/MidiOutputClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/ModelRunnerClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/ModelRunnerClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/MotionClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/MotionClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/MotorClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/MotorClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/MultitouchClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/MultitouchClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/PCControllerClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/PCControllerClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/PCMonitorClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/PCMonitorClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/PlanarPositionClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/PlanarPositionClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/PotentiometerClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/PotentiometerClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/PowerSupplyClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/PowerSupplyClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/PressureButtonClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/PressureButtonClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/ProtoTestClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/ProtoTestClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/PulseOximeterClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/PulseOximeterClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/RainGaugeClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/RainGaugeClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/RealTimeClockClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/RealTimeClockClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/ReflectedLightClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/ReflectedLightClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/RelayClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/RelayClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/RngClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/RngClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/RosClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/RosClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/RotaryEncoderClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/RotaryEncoderClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/RoverClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/RoverClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/SatNavClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/SatNavClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/SensorAggregatorClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/SensorAggregatorClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/SerialClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/SerialClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/ServoClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/ServoClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/SettingsClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/SettingsClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/SevenSegmentDisplayClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/SevenSegmentDisplayClient.cs -------------------------------------------------------------------------------- /Jacdac/Clients/SevenSegmentDisplayClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/SevenSegmentDisplayClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/SoilMoistureClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/SoilMoistureClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/SolenoidClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/SolenoidClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/SoundLevelClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/SoundLevelClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/SoundPlayerClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/SoundPlayerClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/SoundRecorderWithPlaybackClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/SoundRecorderWithPlaybackClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/SoundSpectrumClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/SoundSpectrumClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/SpeechSynthesisClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/SpeechSynthesisClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/SwitchClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/SwitchClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/TcpClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/TcpClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/TemperatureClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/TemperatureClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/TimeseriesAggregatorClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/TimeseriesAggregatorClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/TrafficLightClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/TrafficLightClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/TvocClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/TvocClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/UsbBridgeClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/UsbBridgeClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/UvIndexClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/UvIndexClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/VerifiedTelemetryClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/VerifiedTelemetryClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/VibrationMotorClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/VibrationMotorClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/WaterLevelClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/WaterLevelClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/WeightScaleClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/WeightScaleClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/WifiClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/WifiClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/WindDirectionClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/WindDirectionClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/WindSpeedClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/WindSpeedClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Clients/WsskClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Clients/WsskClient.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants.cs -------------------------------------------------------------------------------- /Jacdac/Constants/AccelerometerConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/AccelerometerConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/AcidityConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/AcidityConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/AirpressureConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/AirpressureConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/AirqualityindexConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/AirqualityindexConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/ArcadegamepadConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/ArcadegamepadConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/ArcadesoundConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/ArcadesoundConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/BarcodereaderConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/BarcodereaderConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/BitradioConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/BitradioConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/BootloaderConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/BootloaderConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/BrailledisplayConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/BrailledisplayConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/BridgeConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/BridgeConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/ButtonConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/ButtonConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/BuzzerConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/BuzzerConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/CapacitivebuttonConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/CapacitivebuttonConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/CharacterscreenConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/CharacterscreenConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/CloudadapterConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/CloudadapterConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/CloudconfigurationConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/CloudconfigurationConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/CodalmessagebusConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/CodalmessagebusConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/ColorConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/ColorConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/CompassConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/CompassConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/ControlConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/ControlConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/DashboardConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/DashboardConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/DccurrentmeasurementConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/DccurrentmeasurementConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/DcvoltagemeasurementConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/DcvoltagemeasurementConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/DevicescriptconditionConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/DevicescriptconditionConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/DevicescriptdebuggerConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/DevicescriptdebuggerConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/DevicescriptmanagerConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/DevicescriptmanagerConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/DistanceConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/DistanceConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/DmxConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/DmxConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/DotmatrixConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/DotmatrixConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/DualmotorsConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/DualmotorsConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/Eco2Constants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/Eco2Constants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/FlexConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/FlexConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/GamepadConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/GamepadConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/GpioConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/GpioConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/GyroscopeConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/GyroscopeConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/HeartrateConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/HeartrateConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/HidjoystickConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/HidjoystickConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/HidkeyboardConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/HidkeyboardConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/HidmouseConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/HidmouseConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/HumidityConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/HumidityConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/I2cConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/I2cConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/IlluminanceConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/IlluminanceConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/IndexedscreenConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/IndexedscreenConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/InfrastructureConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/InfrastructureConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/KeyboardclientConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/KeyboardclientConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/LedConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/LedConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/LedsingleConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/LedsingleConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/LedstripConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/LedstripConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/LightbulbConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/LightbulbConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/LightlevelConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/LightlevelConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/LoggerConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/LoggerConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/MagneticfieldlevelConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/MagneticfieldlevelConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/MagnetomerConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/MagnetomerConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/MatrixkeypadConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/MatrixkeypadConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/MicrophoneConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/MicrophoneConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/MidioutputConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/MidioutputConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/ModelrunnerConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/ModelrunnerConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/MotionConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/MotionConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/MotorConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/MotorConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/MultitouchConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/MultitouchConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/PccontrollerConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/PccontrollerConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/PcmonitorConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/PcmonitorConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/PlanarpositionConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/PlanarpositionConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/PotentiometerConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/PotentiometerConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/PowerConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/PowerConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/PowersupplyConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/PowersupplyConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/PressurebuttonConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/PressurebuttonConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/PrototestConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/PrototestConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/ProxyConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/ProxyConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/PulseoximeterConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/PulseoximeterConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/RaingaugeConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/RaingaugeConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/RealtimeclockConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/RealtimeclockConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/ReflectedlightConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/ReflectedlightConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/RelayConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/RelayConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/RngConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/RngConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/RolemanagerConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/RolemanagerConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/RosConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/RosConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/RotaryencoderConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/RotaryencoderConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/RoverConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/RoverConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/SatelittenavigationsystemConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/SatelittenavigationsystemConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/SensoraggregatorConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/SensoraggregatorConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/SerialConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/SerialConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/ServoConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/ServoConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/SettingsConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/SettingsConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/SevensegmentdisplayConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/SevensegmentdisplayConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/SoilmoistureConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/SoilmoistureConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/SolenoidConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/SolenoidConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/SoundlevelConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/SoundlevelConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/SoundplayerConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/SoundplayerConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/SoundrecorderwithplaybackConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/SoundrecorderwithplaybackConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/SoundspectrumConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/SoundspectrumConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/SpeechsynthesisConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/SpeechsynthesisConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/SwitchConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/SwitchConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/TcpConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/TcpConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/TemperatureConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/TemperatureConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/TimeseriesaggregatorConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/TimeseriesaggregatorConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/TrafficlightConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/TrafficlightConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/TvocConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/TvocConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/UniquebrainConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/UniquebrainConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/UsbbridgeConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/UsbbridgeConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/UvindexConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/UvindexConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/VerifiedtelemetrysensorConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/VerifiedtelemetrysensorConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/VibrationmotorConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/VibrationmotorConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/WaterlevelConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/WaterlevelConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/WeightscaleConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/WeightscaleConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/WifiConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/WifiConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/WinddirectionConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/WinddirectionConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/WindspeedConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/WindspeedConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/WsskConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/WsskConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/_baseConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/_baseConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/_sensorConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/_sensorConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Constants/_systemConstants.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Constants/_systemConstants.g.cs -------------------------------------------------------------------------------- /Jacdac/Device.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Device.cs -------------------------------------------------------------------------------- /Jacdac/DeviceServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/DeviceServer.cs -------------------------------------------------------------------------------- /Jacdac/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Event.cs -------------------------------------------------------------------------------- /Jacdac/Jacdac.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Jacdac.csproj -------------------------------------------------------------------------------- /Jacdac/LEDController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/LEDController.cs -------------------------------------------------------------------------------- /Jacdac/LedStripProgramEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/LedStripProgramEncoding.cs -------------------------------------------------------------------------------- /Jacdac/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Node.cs -------------------------------------------------------------------------------- /Jacdac/OutPipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/OutPipe.cs -------------------------------------------------------------------------------- /Jacdac/Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Packet.cs -------------------------------------------------------------------------------- /Jacdac/PacketEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/PacketEncoding.cs -------------------------------------------------------------------------------- /Jacdac/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Platform.cs -------------------------------------------------------------------------------- /Jacdac/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Register.cs -------------------------------------------------------------------------------- /Jacdac/RegisterServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/RegisterServer.cs -------------------------------------------------------------------------------- /Jacdac/Samples/Blinky.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Samples/Blinky.cs -------------------------------------------------------------------------------- /Jacdac/Samples/ButtonTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Samples/ButtonTracker.cs -------------------------------------------------------------------------------- /Jacdac/Samples/CO2Alarm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Samples/CO2Alarm.cs -------------------------------------------------------------------------------- /Jacdac/Samples/DeviceSniffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Samples/DeviceSniffer.cs -------------------------------------------------------------------------------- /Jacdac/Samples/DoubleRotatingLights.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Samples/DoubleRotatingLights.cs -------------------------------------------------------------------------------- /Jacdac/Samples/GamepadMouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Samples/GamepadMouse.cs -------------------------------------------------------------------------------- /Jacdac/Samples/HumidityTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Samples/HumidityTracker.cs -------------------------------------------------------------------------------- /Jacdac/Samples/RotaryMouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Samples/RotaryMouse.cs -------------------------------------------------------------------------------- /Jacdac/Samples/RotatingLights.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Samples/RotatingLights.cs -------------------------------------------------------------------------------- /Jacdac/Samples/Sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Samples/Sample.cs -------------------------------------------------------------------------------- /Jacdac/Samples/SliderChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Samples/SliderChange.cs -------------------------------------------------------------------------------- /Jacdac/Samples/SlidyBlinky.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Samples/SlidyBlinky.cs -------------------------------------------------------------------------------- /Jacdac/Samples/Thermostat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Samples/Thermostat.cs -------------------------------------------------------------------------------- /Jacdac/Samples/blinky.g.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Samples/blinky.g.md -------------------------------------------------------------------------------- /Jacdac/Samples/buttontracker.g.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Samples/buttontracker.g.md -------------------------------------------------------------------------------- /Jacdac/Samples/co2alarm.g.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Samples/co2alarm.g.md -------------------------------------------------------------------------------- /Jacdac/Samples/devicesniffer.g.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Samples/devicesniffer.g.md -------------------------------------------------------------------------------- /Jacdac/Samples/gamepadmouse.g.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Samples/gamepadmouse.g.md -------------------------------------------------------------------------------- /Jacdac/Samples/humiditytracker.g.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Samples/humiditytracker.g.md -------------------------------------------------------------------------------- /Jacdac/Samples/rotarymouse.g.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Samples/rotarymouse.g.md -------------------------------------------------------------------------------- /Jacdac/Samples/sliderchange.g.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Samples/sliderchange.g.md -------------------------------------------------------------------------------- /Jacdac/Samples/slidyblinky.g.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Samples/slidyblinky.g.md -------------------------------------------------------------------------------- /Jacdac/Samples/thermostat.g.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Samples/thermostat.g.md -------------------------------------------------------------------------------- /Jacdac/SensorServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/SensorServer.cs -------------------------------------------------------------------------------- /Jacdac/Servers/ControlServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Servers/ControlServer.cs -------------------------------------------------------------------------------- /Jacdac/Servers/InfrastructureServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Servers/InfrastructureServer.cs -------------------------------------------------------------------------------- /Jacdac/Servers/LoggerServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Servers/LoggerServer.cs -------------------------------------------------------------------------------- /Jacdac/Servers/ProtoTestServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Servers/ProtoTestServer.cs -------------------------------------------------------------------------------- /Jacdac/Servers/ProxyServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Servers/ProxyServer.cs -------------------------------------------------------------------------------- /Jacdac/Servers/RealTimeClockServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Servers/RealTimeClockServer.cs -------------------------------------------------------------------------------- /Jacdac/Servers/RoleManagerServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Servers/RoleManagerServer.cs -------------------------------------------------------------------------------- /Jacdac/Servers/SettingsServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Servers/SettingsServer.cs -------------------------------------------------------------------------------- /Jacdac/Servers/SoundPlayerServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Servers/SoundPlayerServer.cs -------------------------------------------------------------------------------- /Jacdac/Servers/UniqueBrainServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Servers/UniqueBrainServer.cs -------------------------------------------------------------------------------- /Jacdac/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Service.cs -------------------------------------------------------------------------------- /Jacdac/ServiceServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/ServiceServer.cs -------------------------------------------------------------------------------- /Jacdac/ServiceSpecificationCatalog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/ServiceSpecificationCatalog.cs -------------------------------------------------------------------------------- /Jacdac/Stats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Stats.cs -------------------------------------------------------------------------------- /Jacdac/Transport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Transport.cs -------------------------------------------------------------------------------- /Jacdac/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/Jacdac/Util.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /SnippetExtractor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/SnippetExtractor/Program.cs -------------------------------------------------------------------------------- /SnippetExtractor/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/SnippetExtractor/Properties/launchSettings.json -------------------------------------------------------------------------------- /SnippetExtractor/SnippetExtractor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/SnippetExtractor/SnippetExtractor.csproj -------------------------------------------------------------------------------- /TinyCLR.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/TinyCLR.Build.props -------------------------------------------------------------------------------- /jacdac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/jacdac.png -------------------------------------------------------------------------------- /pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/pack.sh -------------------------------------------------------------------------------- /publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/publish.sh -------------------------------------------------------------------------------- /release.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/release.config.js -------------------------------------------------------------------------------- /snippet.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/jacdac-dotnet/HEAD/snippet.bat --------------------------------------------------------------------------------