Lines Matching refs:commands
23 commands = new I2CCommandManager<Action<byte[]>>(); in SI70xx()
26 commands.RegisterCommand(MeasureHumidity, 0xE5); in SI70xx()
27 commands.RegisterCommand(MeasureHumidity, 0xF5); in SI70xx()
28 commands.RegisterCommand(MeasureTemperature, 0xE0); in SI70xx()
29 commands.RegisterCommand(MeasureTemperature, 0xE3); in SI70xx()
30 commands.RegisterCommand(MeasureTemperature, 0xF3); in SI70xx()
31 commands.RegisterCommand(ReadElectronicId1stByte, 0xFA, 0xF); in SI70xx()
32 commands.RegisterCommand(ResetOutputBuffer, 0xFE); in SI70xx()
33 commands.RegisterCommand(ReadElectronicId2ndByte, 0xFC, 0xC9); in SI70xx()
49 if(!commands.TryGetCommand(data, out var command)) in Write()
149 private readonly I2CCommandManager<Action<byte[]>> commands; field in Antmicro.Renode.Peripherals.Sensors.SI70xx