Statistiques
| Branche: | Révision:

teotestbluetooth / TestTeoBluetooth / TestTeoBluetooth / Connection / IConnectionService.cs @ 91ef3e8c

Historique | Voir | Annoter | Télécharger (417 octets)

1
using System;
2
using System.Collections.Generic;
3
using System.Text;
4
using System.Threading.Tasks;
5
using TestXamConnections.Helper;
6
using TestXamConnections.Models;
7

    
8
namespace TestXamConnections.Connection
9
{
10
    public interface IConnectionService
11
    {
12
        Task<bool> Connect(Device device);
13
        Task<bool> SendCommand(byte[] hexValues);
14
        EventHandler<string> DataReceivedEvent { get; set; }
15
    }
16
}