Hello my friends
My question is how can i use keyboard button in html page with Arduino Ethernet
for example : Turning on LED connect to arduino When we pressing the letter "T" on keyboard in a web server arduino ethernet page without using the mouse to click the button
You should use a text field in a form. Then use Javascript to set the web page to focus on that text field when the page loads. Then use Javascript to determine if a character has been entered in that text field, and submit the form if the correct character is there.
Thank u but if i want to use the same letter to turned on the led while i am pressing the letter "T" and it turned of when i am done (am not pressing the letter "T")
My project is a remotely car controlled by the internet using Arduino Ethernet
Turning on LED connect to arduino When we pressing the letter "T" on keyboard in a web server arduino ethernet page without using the mouse to click the button
Are you talking about a web page displayed on a pc that has a touch screen?
I want to control my car via internet using arduino ethernet web server
when am click the button with lettre "u" on keyboard pc the car moved when it is not clicked the
car dont do any thing that is what am talking about
Have you considered using UDP instead of TCP? I use UDP with a Joystick on a Linux box to send commands to an Arduino/ethernet shield. That way I can avoid all that messy hassle of maintaining a connection.