Axiometa
Keyboard Key
Keyboard Key
SKU:AX22-0027
Regular price
$4.99
Regular price
Sale price
$4.99
Unit price
per
Taxes included.
Shipping calculated at checkout.
Couldn't load pickup availability




-
Pinout
-
Interface
PCB Design
-
Top
-
Bottom
Arduino Example Code
#include <Adafruit_NeoPixel.h>
#define INPUT_PIN 15
#define NEOPIXEL_PIN 45
#define NUM_PIXELS 1 // assuming only one NeoPixel
Adafruit_NeoPixel strip(NUM_PIXELS, NEOPIXEL_PIN, NEO_GRB + NEO_KHZ800);
void setup() {
pinMode(INPUT_PIN, INPUT_PULLUP); // use internal pull-up resistor
strip.begin();
strip.show(); // Initialize all pixels to 'off'
}
void loop() {
int pinState = digitalRead(INPUT_PIN);
if (pinState == LOW) {
strip.setPixelColor(0, strip.Color(255, 0, 0)); // Red
strip.show();
} else {
strip.setPixelColor(0, strip.Color(0, 0, 0)); // Off
strip.show();
}
}
Guides and Blogs
-
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.