Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Recent content by enob

  1. E

    Arduino Microcontroller control devide via TCP/IP LAN Internet.

    I found this code really helpful if using an arduino ethernet shield. **broken link removed** You can send it a whole bunch of commands and scales very well. ex. http:\\<ip of arduino>\digitalWrite\4
  2. E

    Need help with relational operators in PERL!!

    The problem is you are using the wrong relational operator. "gt" is for comparing two strings. For example, $string1 = 'cat'; $string2 = 'dog'; if ($string1 ne $string2) { print "Not equal\n"; } else { print "Equal\n"; } You need to use < or > for integers. $x =...
  3. E

    configure: error: cannot find install-sh or install.sh in . ./.. ./../..

    I think this will help. https://www.linuxquestions.org/questions/debian-26/configure-error-cannot-find-install-sh-or-install-sh-in-364870/
  4. E

    How to get online with Lubuntu 12.04?

    Maybe it would help if you went to terminal and posted the results of 'ifconfig', without the quotes
  5. E

    PC -> Ethernet Controller

    I am not sure what you are trying to do, but there is a lot of support for Arduino. You can get an Arduino and put an ethernet shield on it and set it up as client or server. https://arduino.cc/en/Main/ArduinoEthernetShield
  6. E

    C++ Programming. String Check for the valid pair of brackets.

    Try this: Stack.h // implementation file for a stack class #include <iostream> using namespace std; const int stack_size = 1000; class stack { private: // data for the stack char data [stack_size]; // the index of the top element of the stack int...
  7. E

    Differential equations

    This guy is pretty good. I used him a lot when I was taking a class on it. https://www.youtube.com/playlist?list=PLD4B0062CA82D73FB&feature=plcp
  8. E

    vb based relay control using usb port....

    I did something similar to this a long time ago. I created a module "porting.vb" Module porting Public Declare Sub Out Lib "inpout32.dll" _ Alias "Out32" (ByVal PortAddress As Integer, ByVal Value As Integer) End Module Then you can just make simple calls to it: porting.Out(888...
  9. E

    How to make form 2 appears first before form 1 in VB?

    Re: change topmost in vb Go to Project -> Properties, a window will open up. Go to Startup form and change it to form2.

Part and Inventory Search

Back
Top