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 horace1

  1. H

    How to connect/read data ION8600 TO C#

    you could use a USB to RS485 Converte[/I[I]]r which can be accessed from C# using Visual Studio's SerialPort component
  2. H

    Is it necessary to learn Arduino and Website Development for IOT - Internet of Things

    if you have a LoraWAN Gateway in your area http://www.thethingsnetwork.org/map you can get Lora shields for the arduino which enable connection to The Things network do a web search for Arduino Lora will give plenty of links if you don't have a local LoraWAN gateway The Things Gateway costs...
  3. H

    How this c++ oops code is working?

    Re: how this c++ oops code is working? the method m.input() reads the values of x and y (global class variables) and method m.add() adds the values and prints the result use code tags
  4. H

    Disable Reset while installing driver USB Serial COM

    Java for HID devices https://github.com/nyholku/purejavahidapi it is very easy to use - a run of import java.util.List; import purejavahidapi.*; public class Example1 { public static void main(String[] args) { System.out.println("start search for HID devices"); try {...
  5. H

    Disable Reset while installing driver USB Serial COM

    I have never attempted to access a USB device in Java but it should be possible have a look at http://usb4java.org/index.html in C++ if you are connecting to a USB HID device you could use the HID API **broken link removed** for example, this loops until the device is plugged in // Open the...
  6. H

    C# button's name reference of an action

    you have to set up the code so that the event handler is called when the button is pressed the simplest way is to use the Visual Studio designer https://msdn.microsoft.com/en-us/library/aa984320(v=vs.71).aspx https://msdn.microsoft.com/en-us/library/zwwsdtbk(v=vs.80).aspx
  7. H

    C# button's name reference of an action

    you can use an if comparing with the button name if (clickedButton.Name == "button1") textBox1.Text = "Button 1 selected"; else if (clickedButton.Name == "button2") textBox1.Text = "Button 2 selected"; or the button text displayed on the form if (clickedButton.Text == "Button 1")...
  8. H

    C# button's name reference of an action

    if you have a number of Buttons which call an event handler when they are clicked you can identify which Button caused the event private void ButtonClick(object sender, EventArgs e) { Button clickedButton = (Button)sender; textBox1.Text=...
  9. H

    How to create a telnet script that is hidden?

    if you are implementing the embedded code for the microcontroller write you own PC host code to communicate with it (In C++, C#, VB.NET, Java, etc) you can then use SSH or encrypt the communication and also chose you own TCP ports
  10. H

    C# error CS0108, how to solve it

    have to tried doing a web search for CS0108 , e.g. https://msdn.microsoft.com/en-us/library/3s8070fc.aspx if that does not help post your code together with the error message
  11. H

    [PIC] Not sure about PIC24FJ64GA002 PPS documentation

    this is an example for a PIC24FJ64GB004 RPOR2bits.RP5R = 0x0005; //RA0->UART2:U2TX; RPINR19bits.U2RXR = 0x0006; //RA1->UART2:U2RX;
  12. H

    How is correct from the attached diagram?

    Re: How is corrct from the attached diargam I agree - the Arduino Mega should have sufficent digital IO pins to drive four stepper controllers even if you have more signals than direction and step, e.g. reset, step size, etc. this saves the complexity of a multiplexor with the Arrduino UNO
  13. H

    TCP Socket latency un-deterministic

    tested on two remote PC using // UDPchat2.java - simple peer-to-peer chat program using UDP // - given remote IP address can send strings using UDP datagrams // - will also wait for datagrams and display contents // remote IP and port are specified via command line - default...
  14. H

    TCP Socket latency un-deterministic

    4.00 I have not tested from two machines - will try today! Looking online there appears to be many problems with V 4.00 and 4.01
  15. H

    TCP Socket latency un-deterministic

    I set up my Explorer16 with RN171 to connect to the local Wifi and the IP configuration to UDP 1. I could send UDP datagrams from the RN171 to a Java UDP server on my PC 2. I could send UDP datagrams from the UDPclient on my PC to the RN171 when receiving UDP datagrams only the data part of...

Part and Inventory Search

Back
Top