CCS C Software and Maintenance Offers
FAQFAQ   FAQForum Help   FAQOfficial CCS Support   SearchSearch  RegisterRegister 

ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

CCS does not monitor this forum on a regular basis.

Please do not post bug reports on this forum. Send them to CCS Technical Support

Connecting Arducam with ESP8266

 
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion
View previous topic :: View next topic  
Author Message
lozi_dani



Joined: 22 Jan 2016
Posts: 40

View user's profile Send private message

Connecting Arducam with ESP8266
PostPosted: Fri Mar 04, 2016 7:54 am     Reply with quote

Hi everyone!

This topic is about something that I didn't found here in the forum, and I don't now if someone has tried this. So any help will be much appreciated.


What I want to do?

I want to connect one of the cameras of Arducam (link: http://www.arducam.com/camera-modules/), with the ESP8266 module to transfer via WiFi the images of the camera.


What I want to know (if someone can help me hehe)?

This cameras are nice to take images from the environment, that's the reason why I want to use it, and I saw a post on their website where they talk about the connections of this cameras with this WiFi module (link: http://www.arducam.com/arducam-supports-esp8266-arduino-board-wifi-websocket-camera-demo/).

But the problem remains in the way both are connected. They connect, obviousl, their camera with their ESP8266 arduino board.

I want to connect this camera with this module, but not with an arduino board, but with a PIC18F4550 and using CCS instead of their functions.


Someone knows if this is possible? Or i'm obligated to connect both components throught their arduino board?



Components that i'm using:

PIC18F4550
ESP8266 module
One of that Arduino cameras
20MHz crystal


I hope you can understand the question. If not, let me know and i will try to explain it in another way.

Thanks a lot! Any help would be so good!!
temtronic



Joined: 01 Jul 2010
Posts: 9221
Location: Greensville,Ontario

View user's profile Send private message

PostPosted: Fri Mar 04, 2016 8:01 am     Reply with quote

hmmm.....
One of that Arduino cameras

First place to start is WHICH camera ? Not all are created equal and you WILL need the correct datasheets !

2nd, the 18F4550 isn't a good choice of PIC, esp. if you're going to use the onboard USB peripheral.

3rd, google for a couple of days and see if ANYONE has done what you want. even using another micro, it'll give you insight into what's involved.

4th, power supply... I'm betting the camera is 3 volt....so use a 3 volt PIC ('L')

Jay
lozi_dani



Joined: 22 Jan 2016
Posts: 40

View user's profile Send private message

PostPosted: Fri Mar 04, 2016 8:19 am     Reply with quote

Thanks correspondents for that quick response!

First of all, I want to do this because it is one of the parts which form part of my final project.
I have done some projects with this PIC, like programming an ultrasonic sensor o programming some motors.
My professor recommends me this pic because of is able to connect via usb with the PC, and is versatile to do a lot of things with it. What you think about?

The camera I'm thinking to use is OV7670, it is simple and has good documentation through Internet, but I didn't found info about the connection of this camera with that wifi module and my pic.

Maybe it could be a problem, or more difficult to do this with the PIC18F4550, but it is possible? If it is, I want to try it, because all the others components I have programmed were did it using this pic and I wish to put all together in the same pic, referring to the 2nd advice you gave me.

I will google more to find something similar at the same time I'm asking in this forum, I know that here people are so good using CCS, and maybe mixing what I'm goggling and the help I could receive here I could find the answer!

So do you think that it is possible, with the correct connections, achieve this in a protoboard with this pic? Or the only way to connect this is through an Arduino board?

Thanks a lot!!
temtronic



Joined: 01 Jul 2010
Posts: 9221
Location: Greensville,Ontario

View user's profile Send private message

PostPosted: Fri Mar 04, 2016 9:26 am     Reply with quote

re:
Quote:
My professor recommends me this pic because of is able to connect via usb with the PC, and is versatile to do a lot of things with it. What you think about?

I tried the 4550 maybe 6 years ago( maybe longer, whenever they came out)...The MAJOR problem is that to use the USB peripheral it requires about 1/3 of the programming memory for the 'driver'. Not a problem IF you're only looking at a couple of switches, controlling 3 or 4 LEDs but for any serious use... well you end up running out of memory. When that happened for me, I simply bought a $2 TTL<>USB module and regained ALL of the memory space! When you add up the USB connector, resistors, 2 LEDs, etc. the module really only cost $1 more AND it works 1st time, every time. I don't think your prof has used the 4550 in the real world for any real projects.

As for the camera, I downloaded a datasheet on it and the PIC (actually almost any PIC) doesn't have the 'horsepower' to interface to the sensor for any 'realtime' use. Perhaps the one you've chosen is on a PCB 'module' with a 'preprocessor'? In any video application there is a LOT of data to transfer...so a better description of the 'camera' and it's use is needed. PICs are powerful but for video you really need very high speed !


Jay
asmallri



Joined: 12 Aug 2004
Posts: 1634
Location: Perth, Australia

View user's profile Send private message Send e-mail Visit poster's website

PostPosted: Sun Mar 06, 2016 6:11 am     Reply with quote

lozi_dani wrote:

I have done some projects with this PIC, like programming an ultrasonic sensor o programming some motors.
My professor recommends me this pic because of is able to connect via usb with the PC, and is versatile to do a lot of things with it. What you think about?


The ESP8266 contains an embedded 32 bit controller that you can use to develop your application. The embedded 32 bit controller is far more capable that the PIC18F4550 with the exception of lacking a USB module. A far simpler solution (including a USB controller) would be to use a WeMos D-R2 module: http://www.wemos.cc/Products/d1_r2.html

The module can be purchased on Aliexpress.com for about $6.50

The module can be programmed using the Arduino IDE as though it was a normal Arduino board enabling you to use standard Arduino drivers.
_________________
Regards, Andrew

http://www.brushelectronics.com/software
Home of Ethernet, SD card and Encrypted Serial Bootloaders for PICs!!
Ttelmah



Joined: 11 Mar 2010
Posts: 19498

View user's profile Send private message

PostPosted: Sun Mar 06, 2016 9:27 am     Reply with quote

Thing to understand is that the PIC architecture does not really 'suit' things with a large memory 'footprint' (like pictures). Some things are doable, but going to be a huge amount of work. If your project is going to involve tens of thousands of units, then it is possible that the investment to handle this with a PIC, may be worthwhile, but for any 'smaller run', it is going to be enormously easier to use chips which are better suited, and have code already written.
Asmallri's solution is the way to go.

It's like full VGA displays (or better), where it is vastly faster and easier to use a processor that allows the display memory to be directly mapped into the processor address space.

It's similar to asking if you can drive a nail with a screwdriver. You may be able to do something, but it is a lot easier to use a hammer!...
Display posts from previous:   
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group