Your new topic does not fit any of the above??? Check first. Then post here. Thanks.

Moderator: igrr

User avatar
By crop
#68513 Hi,

im grabbing some data through atmega 328 and at the moment I can see them on the serial port of PC. Now I want to transmit this data to PC or thingspeaks web page through a wifi module and I'm using esp 8266. How is this possible? How should I program wifi module and controller?
User avatar
By QuickFix
#68573 Wouldn't it be better (and perhaps easier) to drop the Atmel and only use the ESP?
The ESP superior to the ATMega on many points (except for analog and digital IO-count perhaps) and if you're already using Arduino (are you?), you're almost already done, since you can program the ESP with the Arduino IDE using the ESP8266 core. :idea:

If ditching the ATMega is not an option, you could try to use the ESP in default AT-command mode or write a simple bridge/gateway yourself (with Arduino) that will transport serial data over WiFi.
User avatar
By crop
#68605
QuickFix wrote:Wouldn't it be better (and perhaps easier) to drop the Atmel and only use the ESP?
The ESP superior to the ATMega on many points (except for analog and digital IO-count perhaps) and if you're already using Arduino (are you?), you're almost already done, since you can program the ESP with the Arduino IDE using the ESP8266 core. :idea:

If ditching the ATMega is not an option, you could try to use the ESP in default AT-command mode or write a simple bridge/gateway yourself (with Arduino) that will transport serial data over WiFi.



I just want to do the second option.. I've tried to grab the data using serial.read() for the data receiving at rx and tx pins... but not sure what to do exactly... need some help with programming. I've connected tx rx of my preprogrammed controller to rx tx pins of esp module
User avatar
By theenggprojects
#74045 Hi,

If you are working on Atmega328 then you should have a look at Introduction to Atmega328. I have written this article and I think you guys will like it. I have tried my best share all about this microcontroller.

Thanks.