# Sending Data to the SmartMic

There are two ways to send data to the SmartMic:

### Via Trillbit Android SDK&#x20;

Below are the Android SDK methods, to be called from the player application:

Use the start\_sending method to start sending data from the sender.&#x20;

```
trillSDK.start_sending(sendingConfiguration);
```

To instruct the SDK to stop sending data , use stop\_sending method:

```
 trillSDK.stop_sending();
```

### Via trillbit iOS SDK methods:

Use the start\_sending method to start sending data from the sender.&#x20;

```
trillSDK.start_sending(data, repeatCount);
```

To instruct the SDK to stop sending data , use stop\_sending method:

```
 trillSDK.stop_sending();
```
