Skip to product information
1 of 3

Axiometa

IPS LCD (0.96)

IPS LCD (0.96)

SKU:AX22-0034

Regular price $8.99
Regular price Sale price $8.99
Sale Sold out
Taxes included. Shipping calculated at checkout.
This board mounts a Newvisio N096-1608TBBIG11-H13 IPS panel on a 22 × 29 mm PCB, delivering a sharp 160 × 80-pixel canvas driven by the ST7735S controller over 4-wire SPI. Snap it into any AX22 backplane and you’re drawing text, bitmaps, or real-time graphs in a handful of library calls—Arduino IDE, MicroPython, or MicroBlocks.
View full details
  • Technical Details

    - 22 mm × 29 mm PCB
    - 4× ⌀2.7 mm Mounting Holes
    - 160 × 80 RGB pixels, normally-black IPS wide view
    - 3.3 V
    - Active area: 10.8 × 21.7 mm; glass size 13.5 × 27.9 mm
    - Back-light: single white LED, ~20 mA @ 3 V
    - Typical luminance ≈ 400 cd/m²
    - ST7735S driver, 4-wire SPI up to ≈ 10 MHz
    - Arduino IDE Compatible
    - MicroPython Compatible
    - MicroBlocks Compatible

    Material Datasheet 
  • Pinout

  • Interface

  • Top

  • Bottom

Arduino Example Code

example.ino
#include <Adafruit_GFX.h>
#include <Adafruit_ST7735.h>
#include <SPI.h>

#define TFT_CS    8
#define TFT_DC    45
#define TFT_RST   15
#define TFT_MOSI  11
#define TFT_SCLK  13

SPIClass mySPI(FSPI);
Adafruit_ST7735 tft = Adafruit_ST7735(&mySPI, TFT_CS, TFT_DC, TFT_RST);

void setup() {
  mySPI.begin(TFT_SCLK, -1, TFT_MOSI);
  tft.initR(INITR_MINI160x80);
  tft.setRotation(4);
  tft.fillScreen(ST77XX_WHITE);
  tft.setTextColor(ST77XX_RED, ST77XX_WHITE);
  tft.setTextSize(2);
  tft.setCursor(10, 40);
  tft.print("Hello from");
  tft.setCursor(10, 70);
  tft.print("Axiometa!");
}

void loop() {}

        
  • First time setup

    Pair text with an image to focus on your chosen product, collection, or blog post. Add details on availability, style, or even provide a review.

  • Automatic Street Lights

    Pair text with an image to focus on your chosen product, collection, or blog post. Add details on availability, style, or even provide a review.

  • How Does an LDR work ?

    Pair text with an image to focus on your chosen product, collection, or blog post. Add details on availability, style, or even provide a review.