# Sugar Environment Sensor Module

![](https://kittenbothk-eng.readthedocs.io/en/latest/_images/env1.png)

This is an environment sensor in the Sugar series, it has a greater degree of accuracy compared to the common DHT11 module. The pin holes on the back allow compatibility with plastic building bricks.

### Product Specifications

* Dimensions: 24 x 24 x 23 mm
* Weight: 4.6g
* Type: I2C
* Temperature Range: -40\~85°C
* Humidity Range: 0\~100%

### Wiring

Use a 4Pin cable to connect the module to the 4Pin I2C Port on the Robotbit Edu.

![](https://kittenbothk-eng.readthedocs.io/en/latest/_images/env_wire1.png)

### Programming Tutorial

### MakeCode Programming Tutorial

![](https://kittenbothk-eng.readthedocs.io/en/latest/_images/mcbanner.png)

#### Import Sugar Extension:

#### Search for sugar in the search bar (Kittenbot products has been verified by Microsoft)

![](https://kittenbothk-eng.readthedocs.io/en/latest/_images/sugar_search.png)

#### Extension URL

Sugar extension: <https://github.com/KittenBot/pxt-sugar>

[Importing Extensions Tutorial](/programming-platforms/makecode-tutorial/kittenbot-and-makecode.md)

![](https://kittenbothk-eng.readthedocs.io/en/latest/_images/env_mc_code.png)

[Sample Program](https://makecode.microbit.org/_9fKT8i6wkbCX)

#### Kittenblock Programming Tutorial

![](https://kittenbothk-eng.readthedocs.io/en/latest/_images/kbbanner.png)

![](https://kittenbothk-eng.readthedocs.io/en/latest/_images/env3.png)

#### MicroPython Programming Tutorial

```
ENV()
update()
```

* update(): Returns a list containing the temperature nad humidity.

Sample Program

```
from future import *
from sugar import *

env = ENV()
screen.sync = 0

while True:
  screen.fill((0, 0, 0))
  screen.text(str("Temp ")+str(env.update()[0]), x = 5, y = 10)
  screen.text(str("Humi ")+str(env.update()[1]), x = 5, y = 30)
  screen.refresh()
```


---

# 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://sharinghub-eng.kittenbot.hk/functional_module/sugar/env.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.
