> ## Documentation Index
> Fetch the complete documentation index at: https://docs.endstate.io/llms.txt
> Use this file to discover all available pages before exploring further.

# streamNdefFrame

> Framed `StreamNdef` command - scan continuously until stopped. `timeout` (seconds, 0 = no timeout) and `polling` are single bytes: integers 0-255.

Framed `StreamNdef` command - scan continuously until stopped. `timeout` (seconds, 0 = no timeout) and `polling` are single bytes: integers 0-255.

```ts theme={null}
import { streamNdefFrame } from "@endstate-sdk/reader/tcmp";
```

```ts theme={null}
streamNdefFrame(timeout?: number, polling?: number): Uint8Array
```

## Example

```ts theme={null}
await transport.write(streamNdefFrame(0, POLLING.GENERAL));
```
