I have the same problem, I have 2* ATMEGA328P chip with BOOTLOADER installed or that what the ad says, and both will not UPLoad any sketches.
Will I have to Upload the bootloader first even though it says the bootloader is preloaded.
Search found 4 matches
- Sun Feb 18, 2018 3:51 am
- Forum: Experimenters Kit
- Topic: Freetronic atmega328p
- Replies: 2
- Views: 23706
- Thu Jul 18, 2013 9:28 am
- Forum: EtherMega
- Topic: How to use Ethermega to read params sent by client
- Replies: 3
- Views: 4974
Re: How to use Ethermega to read params sent by client
Thankyou very much for your response, it is just what I was looking for. I did find a way to transfer client information to the server through cient.read as follows while (client.connected()) { if (client.available()) { char c = client.read(); x = x + c; where x is a String object and will contain q...
- Tue Jul 09, 2013 1:23 am
- Forum: EtherMega
- Topic: How to use Ethermega to read params sent by client
- Replies: 3
- Views: 4974
Re: How to use Ethermega to read params sent by client
Say I have a Form Text Box that the client inputs data and presses Submit. How do I read what is in the box at the server. client.read maybe but how.
regards Johnvvan
regards Johnvvan
- Sat Jul 06, 2013 4:16 am
- Forum: EtherMega
- Topic: How to use Ethermega to read params sent by client
- Replies: 3
- Views: 4974
How to use Ethermega to read params sent by client
Is there a language like PHP that can be used by the Ethermega so that Client data can be sent and understood by the Ethernet server. Is the client data read by cgi, is there a Web page I can go to to learn how.