# Tiles: Read-Only vs. Read+Write

As explained in the [Points article](/motion-platform-software/tiles/whats-a-point.md), device *points* can be either read-only or both readable and writable (we sometimes call the latter simply "writable" since all points are readable).&#x20;

But in Motion Platform, users do not typically interact with points directly. Instead, they should interact with tiles, which act as wrappers around points and therefore provide multiple layers of functionality and security around points.

So how do you prevent a Motion user from *writing* values to a point that is writable?

Since end users use tiles, not points, in day-to-day interaction with Motion, you have the ability to configure a read-only tile in Motion even if its underlying point supports writing values, thus giving end users the ability to see the current state of any given tile (and by extension, the point it represents) while also preventing them from making any changes.

To accomplish this, change the **Writability** setting to "**Read-Only**" in the tile configuration:

<figure><img src="/files/RWo7L6ohQhvPnKqCrZQl" alt=""><figcaption><p>The writability setting for this set point tile is set to "Read-Only" and therefore prevents users from changing the current value.</p></figcaption></figure>

Conversely, while Motion Platform will *let* you set the **Writability** setting to "**Read+Write**" for a tile whose underlying point is a read-only point (determined by the device manufacturer and, often, simple logic—for example, it wouldn't make sense for a point that represents the current humidity reading of a room to be writable), writing to such points will be rejected by the device and have no effect.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://kb.motion.cloud/motion-platform-software/tiles/tiles-read-only-vs.-read+write.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
