Compare commits
No commits in common. "1297a898d535a3c3131150bbf91dfcb3503b1b37" and "a5c377195f4bf29fe5237fd674e64c67dce8b920" have entirely different histories.
1297a898d5
...
a5c377195f
|
|
@ -229,7 +229,7 @@ namespace OperationControl.Models
|
|||
|
||||
if (Mock && AddRover)
|
||||
{
|
||||
System.Windows.Application.Current?.Dispatcher?.BeginInvoke(new Action(() =>
|
||||
System.Windows.Application.Current.Dispatcher.BeginInvoke(new Action(() =>
|
||||
{
|
||||
Variaveis.Dock?._vm?.AtualizarDadosTela(VariaveisControleOperacao.RoverEmFoco);
|
||||
}));
|
||||
|
|
|
|||
|
|
@ -1243,7 +1243,7 @@ namespace OperationControl.Services
|
|||
UltimaLeitura.Heartbeat = (UltimaLeitura.Heartbeat + 1) % 10;
|
||||
|
||||
// Daqui pra baixo: jogar pra UI
|
||||
Application.Current?.Dispatcher?.BeginInvoke(new Action(() =>
|
||||
Application.Current.Dispatcher.BeginInvoke(new Action(() =>
|
||||
{
|
||||
try
|
||||
{
|
||||
|
|
|
|||
|
|
@ -75,8 +75,8 @@ ServoAgro_v3* ObterServoPorId(uint8_t idNum) {
|
|||
#pragma endregion
|
||||
|
||||
#pragma region RELES
|
||||
Rele_v2 sRLE_CoolerIn("RLCIN", 81, false, 19, TiposBarramentos::CONTROLADOR);
|
||||
Rele_v2 sRLE_CoolerOut("RLCOUT", 82, false, 20, TiposBarramentos::CONTROLADOR);
|
||||
Rele_v2 sRLE_CoolerIn("RLCIN", 81, true, 13, TiposBarramentos::CONTROLADOR);
|
||||
Rele_v2 sRLE_CoolerOut("RLCOUT", 82, true, 14, TiposBarramentos::CONTROLADOR);
|
||||
|
||||
Rele_v2* ObterRelePorId(uint8_t idNum) {
|
||||
switch (idNum) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue