Close

4421 Results for "%E3%80%8A%20%EC%98%88%EC%95%BD%EB%AC%B8%EC%9D%98%20OIO%E2%89%A1%E2%91%A7%E2%91%A389%E2%89%A183O%E2%91%A5%E3%80%8B%EB%A0%88%EA%B9%85%EC%8A%A4%EB%A3%B8%EA%B2%AC%EC%A0%81%E3%82%88%EB%A0%88%EA%B9%85%EC%8A%A4%EB%A3%B8ago%EB%A0%88%EA%B9%85%EC%8A%A4%EB%A3%B8%E3%83%A1%EA%B0%95%EB%82%A8%EB%A0%88%EA%B9%85%EC%8A%A4%EB%A3%B8eighty%20%EC%84%A0%EB%A6%89%EB%A0%88%EA%B9%85%EC%8A%A4%EB%A3%B8%CE%BA%EC%84%A0%EB%A6%89%EB%A0%88%EA%B9%85%EC%8A%A4%E2%92%B2%EB%A0%88%EA%B9%85%EC%8A%A4%EB%A3%B8%E3%83%A1%EF%BD%83%EC%84%A0%EB%A6%89%EB%A0%88%EA%B9%85%EC%8A%A4%EB%A3%B8literary"

  • ZX81 16K RAM Pack

  • Counting the GPIOs... With the intention of using the Raspberry Pico micro controller, I needed to understand how many GPIOs would be required to carry all of the necessary signals: 16 X Address Lines8 X Data LinesMREQ signalWR signalRD signal....
  • Solar Water Heating Controller

  • An unexpected cold shower made it clear that I need a new controller for our solar warm water heating system ("split architecture" which is typical for installation in middle and northern Europe - thanks @Saabman for helping me understand that I had...
  • Arduino Tester

  • I came up with a nice (from my own standpoint) circuit arrange that tester each and every pin of my Arduino-compatible board:- Pins 0 and 1 = Serial communication with a PC, through the "Serial.print()" command- Pins 2 and 3= an LED connected between...
  • Precision Reflow Oven Controller

  • In this project I will take a conventional toaster oven (any kind of toaster oven can be used) and design a precision controller to turn it into a reflow soldering oven. I know there are already plenty of controller kits available out there, but I hope...
  • A Better Turret

  • Parts Bought the following parts: 2x NEMA 17 stepper motor - 68 oz in (400 steps/rev)1x Pololu universal aluminum mounting hub for 5mm shaft M3 holes (2 Pack)2x NEMA 17 stepper motor mounting bracket1x Nano 3.0 CNC board (uses A4988 stepper motor drivers)1x...
  • CoffeeOfThings

  • Hardware:- The necessary components for the MSP430 to be operational are quite simple: only a CR2032 battery for power, two decoupling capacitors, a pull-up resistance on the RST pin. Note some pins connected to TX, TEST, RST and GND have been soldered...
  • Deghosting multiplexed LEDs

  • Blinking LEDs, what can be easier, right? For a recent project I needed to multiplex 2 sets of 6 LED each. The circuit schematic has the LEDs driven by 6 pins on an Arduino plus two pins to activate one bank or the other. LEDs are these ones from LCSC....
  • Backbone Bus

  • I plan on using this bus as the backplane for supporting R&D for my Kestrel Computer Project. Signals are as follows:SYSCON Signals.50MHZ. A 50MHz reference clock generated by the backplane. NOTE: This doesn't mean that the bus has to run at 50MHz; you're...
  • netBOOT v2

  • Connections:netBoot with a case:Version 1:Version 2:Scheme:Source code:#include #include #include #include byte mac[] = {0x00, 0xAA, 0xBB, 0xCC, 0xDE, 0x02}; EthernetClient client; #define MAX_IPs 5 IPAddress pingAddrs[MAX_IPs]; int CNT = 0; int ERRORS_COUNT...
  • OpenCores PDP-8 on FPGA

  • From OpenCores PDP-8 page: Features In this FPGA implementation, the PDP-8 CPU can be configured to emulate the instruction execution of a PDP-8 (Straight-8), PDP-8/S, PDP-8/S, PDP-8/I, PDP-8/L, PDP-8/E/F/M, PDP-8/A, HD-6100, or a HD-6120. The...
  • RGB color interpreter

  • Here's the Arduino code!  // LED color interpreter // Made by Thomas Burns // www.thomasburns.net // last revised: 04/12/2020 #include #include #include int red, green, blue = 0; // I2C pins declaration LiquidCrystal_I2C lcd(0x27, 2, 1, 0, 4, 5,...