Axiometa
Toggle Switch
Toggle Switch
SKU:AX22-0022
Low stock: 5 left
Regular price
$3.49
Regular price
Sale price
$3.49
Unit price
per
Taxes included.
Shipping calculated at checkout.
Couldn't load pickup availability

Technical Details
Pinout
Arduino Example Snippet
#define TOGGLE_PIN 14
void setup() {
Serial.begin(9600);
pinMode(TOGGLE_PIN, INPUT);
}
void loop() {
int toggleValue = digitalRead(TOGGLE_PIN);
Serial.print("Toggle Value: ");
Serial.println(toggleValue);
delay(10);
}