Click here to Skip to main content
15,884,298 members
Everything / Circuit

Circuit

circuit

Great Reads

by raddevus
Steps for building a device you can add to your existing garage door, which implements an atmega328, bluetooth (hc-05) and relay module which will allow you to open your garage door from any paired Android device.
by TheCannyCoder
Reductions and Short-Circuiting Operations
by André Marcos (Advisor), Gabriel Trepak, Vinícius Barauna Santana
Automating the Residential Lighting Activation Process Using Arduino

Latest Articles

by André Marcos (Advisor), Gabriel Trepak, Vinícius Barauna Santana
Automating the Residential Lighting Activation Process Using Arduino
by raddevus
Steps for building a device you can add to your existing garage door, which implements an atmega328, bluetooth (hc-05) and relay module which will allow you to open your garage door from any paired Android device.
by TheCannyCoder
Reductions and Short-Circuiting Operations

All Articles

Sort by Score

Circuit 

27 Jul 2016 by raddevus
Steps for building a device you can add to your existing garage door, which implements an atmega328, bluetooth (hc-05) and relay module which will allow you to open your garage door from any paired Android device.
14 Aug 2014 by TheCannyCoder
Reductions and Short-Circuiting Operations
21 May 2020 by Richard Deeming
How to: Draw an Ellipse or a Circle - WPF | Microsoft Docs[^] Shapes and basic drawing overview - WPF | Microsoft Docs[^] Ellipse Class (System.Windows.Shapes) | Microsoft Docs[^]
27 Mar 2015 by azizbba
I'm wondering if anyone has worked with the ngspice.dll ( mixed-level/mixed-signal circuit simulator) in .NET with C#, Is there any code demonstrates how it can be invoked? Any help would be appreciated. http://ngspice.sourceforge.net/shared.html[^]
27 Mar 2015 by Sergey Alexandrovich Kryukov
As I understand, this is a native shared library, not CLI, so you will need to use P/Invoke:http://en.wikipedia.org/wiki/Platform_Invocation_Services,http://msdn.microsoft.com/library/en-us/vcmxspec/html/vcmg_PlatformInvocationServices.asp.This CodeProject article can also be useful:...
5 Jan 2018 by Member 13606974
I want to describe a logical circuit in below form NODE_(node:id):node_function VECTOR_(vector_id):vector_name-source_node_id:distenation_node_id here is a example for half-adder input: module half_adder(input a, input b, output sum, output c); wire mid1 = a & ~b; wire mid2 = ~a & b; sum =...
24 Sep 2020 by DoingWork
Is there any library for WPF (XAML code) that contains Shapes or Geometries of Electronic Components like Fuse, Transformer, Wire, Resister, Diode and etc What I have tried:
24 Sep 2020 by Dave Kreskowiak
Probably doesn't exist. You're best source for component outlines is probably going to be for PCB layout software like Eagle. That have large numbers of libraries of components that have outlines for the device itself as well as pad layout and...
9 Dec 2020 by André Marcos (Advisor), Gabriel Trepak, Vinícius Barauna Santana
Automating the Residential Lighting Activation Process Using Arduino
23 May 2020 by Member 12618031
Using the following code, I get a line drawing effect. Line newLine = new Line(); newLine.StrokeThickness = 1; newLine.Stroke = Brushes.Black; newLine.X1 = 50; newLine.X2 = 50; newLine.Y1 = 50; newLine.Y2 = 50; DoubleAnimation lineXAnimation =...
23 May 2020 by Member 12618031
Strangely enough, but the Japanese helped to resolve the issue. The class Microsoft.Expression.Shapes.Arc makes drawing circles easier. using Microsoft.Expression.Shapes; Arc a = new Arc(); a.ArcThicknessUnit =...