// Silly test for "Full Bridge Rectifier" (it does not work)
// 8 October 2024
// It does not work, because a Custom Chip can not
// sense the input and have it as output at the same time.
//
// This Wokwi project:
//   https://wokwi.com/projects/411196771982295041
//
// Based on:
//   Original project: https://wokwi.com/projects/410325174113969153
//   By maverick

const int AC1 = 12;
const int AC2 = 11;

void setup()
{
  pinMode(AC1,OUTPUT);
  pinMode(AC2,OUTPUT);
}

void loop()
{
  digitalWrite(AC1,HIGH);
  digitalWrite(AC2,LOW);
  delay(500);
  digitalWrite(AC1,LOW);
  digitalWrite(AC2,HIGH);
  delay(500);
}
DIODEBreakout
DIODEBreakout
DIODEBreakout
DIODEBreakout
Full Bridge Rectifier