# ADS1015 not detected on Jetson Orin Nano

**URL:** https://forums.developer.nvidia.com/t/ads1015-not-detected-on-jetson-orin-nano/352529
**Category:** Jetson Orin Nano
**Tags:** jetson-nano, board-design, jetson
**Created:** [November 24, 2025, 11:36pm UTC](https://forums.developer.nvidia.com/t/ads1015-not-detected-on-jetson-orin-nano/352529 "2025-11-24T23:36:49Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![z2016873](https://developer.download.nvidia.com/images/forums/profile-default-devtalk-84.png) [@z2016873](https://forums.developer.nvidia.com/u/z2016873)
#### Post date: [November 24, 2025, 11:36pm UTC](https://forums.developer.nvidia.com/t/ads1015-not-detected-on-jetson-orin-nano/352529/1 "2025-11-24T23:36:49Z")

</div>

Hi everyone,  
I’m trying to connect an **Adafruit ADS1015 (12-bit ADC)** to my **Jetson Orin Nano (Ubuntu 22.04)**.  
The same wiring and setup works perfectly on a **Raspberry Pi 4/5** , but the Jetson refuses to detect the device on I²C.

### **My wiring (confirmed working on Raspberry Pi):**

- **ADS1015 VDD → 5V (Pin 2)**

- **ADS1015 GND → GND (Pin 6)**

- **ADS1015 SDA → Pin 3 (I²C1 SDA)**

- **ADS1015 SCL → Pin 5 (I²C1 SCL)**

I also tried the **I²C0 pins** :

- SDA → Pin 27

- SCL → Pin 28

### **Packages installed:**

```auto
sudo apt-get install -y i2c-tools libgpiod-dev python3-libgpiod
pip3 install --upgrade adafruit-blinka
pip3 install adafruit-circuitpython-ads1x15

```

I can see `/dev/i2c-0` and `/dev/i2c-1`, but:

`i2cdetect -y 1` → empty  
`i2cdetect -y 0` → only shows “UU”, no **0x48** address.

### **Questions:**

1. Does the Orin Nano require a **level shifter** (1.8V Jetson I/O ↔ 5V ADS1015)?

2. Do I need any **device-tree overlay** or extra configuration to enable I2C1?

3. Do I need to install any **additional libraries or services** for I²C on the Nano?

4. **Can you explain the correct steps to connect and use an ADS1015 with the Jetson Orin Nano?**  
(Wiring, voltage levels, device-tree, modules, kernel config, etc.)

Thanks!

 ![image_2](https://global.discourse-cdn.com/nvidia/original/4X/6/8/2/6828c743fae5c34a8a8311725356b5a1df67be3c.png)

 ![image_3](https://global.discourse-cdn.com/nvidia/original/4X/c/8/e/c8e646a954f64584a142aa70cdc877cab77ee5b9.png)

---

<div class="post-metadata">

### Author: ![tobias.fonseca](https://sea2.discourse-cdn.com/nvidia/user_avatar/forums.developer.nvidia.com/tobias.fonseca/32/451712_2.png) [@tobias.fonseca](https://forums.developer.nvidia.com/u/tobias.fonseca)
#### Post date: [November 26, 2025, 9:42pm UTC](https://forums.developer.nvidia.com/t/ads1015-not-detected-on-jetson-orin-nano/352529/5 "2025-11-26T21:42:16Z")

</div>

> [@z2016873](#):
>
> Adafruit ADS1015

* * *

The reason the ADS1015 isn’t showing up on the Orin Nano is that the Jetson’s I/O pins (including I²C) run at 1.8 V, while the ADS1015 expects 3.3 V or 5 V logic. Even though the header provides 5 V and 3.3 V power rails, the _signal pins_ themselves are still 1.8 V only. NVIDIA has confirmed this in several of their forum threads (for example:  
[https://forums.developer.nvidia.com/t/how-to-change-orin-spi-pins-output-level-from-1-8v-to-3-3v/242323](https://forums.developer.nvidia.com/t/how-to-change-orin-spi-pins-output-level-from-1-8v-to-3-3v/242323?utm_source=chatgpt.com)).

Because of that logic-level mismatch, you’ll need a bidirectional I²C level shifter between the Jetson and the ADS1015. It’s easiest to power the ADS1015 at 3.3 V and run the high side of the level shifter at the same voltage.

It’s also worth double-checking the ADS1015’s address, since the board can be configured to four different ones depending on the ADDR pin:

- ADDR → GND = 0x48

- ADDR → VDD = 0x49

- ADDR → SDA = 0x4A

- ADDR → SCL = 0x4B

If the ADDR pin isn’t tied the way you expect, the chip will show up at a different address.

Once the level shifter is inserted and the address is confirmed, the ADS1015 will respond normally on the bus.  
\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_  
Tobias Fonseca

Embedded SW Engineer at RidgeRun  
Contact us: [support@ridgerun.com](mailto:support@ridgerun.com)  
Developers wiki: [https://developer.ridgerun.com](https://developer.ridgerun.com/)  
Website: [www.ridgerun.com](http://www.ridgerun.com/)

---

<div class="post-metadata">

### Author: ![ChrisB\_NV](https://sea2.discourse-cdn.com/nvidia/user_avatar/forums.developer.nvidia.com/chrisb_nv/32/382649_2.png) [@ChrisB\_NV](https://forums.developer.nvidia.com/u/ChrisB_NV)
#### Post date: [December 3, 2025, 11:23pm UTC](https://forums.developer.nvidia.com/t/ads1015-not-detected-on-jetson-orin-nano/352529/8 "2025-12-03T23:23:45Z")

</div>

@z2016873 it looks like you are using the Orin Nano DevKit Expansion Connector based on your pin numbering. Your connections are correct, for both I2C0 and 1 cases.

Please refer to the [Jetson Orin Nano Developer Kit Carrier Board Specification](https://developer.nvidia.com/downloads/assets/embedded/secure/jetson/orin_nano/docs/jetson_orin_nano_devkit_carrier_board_specification_sp.pdf). As per section 3.3, the Expansion Connector signals are all 3.3V levels, so you will need to level shift from the 5V signals on ADS1015.

If you still have problems after level shifting the I2C properly, we would need to pull in some of the software team support for your other questions.

---

<div class="post-metadata">

### Author: ![system](https://sea2.discourse-cdn.com/nvidia/user_avatar/forums.developer.nvidia.com/system/32/68080_2.png) [@system](https://forums.developer.nvidia.com/u/system)
#### Post date: [December 30, 2025, 9:45am UTC](https://forums.developer.nvidia.com/t/ads1015-not-detected-on-jetson-orin-nano/352529/10 "2025-12-30T09:45:28Z")

</div>

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.
