Propeller Board with wifi capabilities?
klk0146
Posts: 6
in Propeller 1
Hello--
I am currently using the propeller ASC+ to control a shield that we built to measure licks to a water spout. Our research is looking to see if training domestic and exotic cats to drink more water increases kidney function. The board has been really great because we can record the data as we move along. So thanks for a great board!
One thing that would make the system even more user friendly is if we could get the data off the board without having to remove the SD card....even better, if we could do it remotely without having to have hands on the device.
Does anyone have an idea on how we could make this work....please remember that we already have a shield on top of the propeller board that controls the other aspects of the lickometer. Any plans on making this board capable of connecting to a wifi network?
I am currently using the propeller ASC+ to control a shield that we built to measure licks to a water spout. Our research is looking to see if training domestic and exotic cats to drink more water increases kidney function. The board has been really great because we can record the data as we move along. So thanks for a great board!
One thing that would make the system even more user friendly is if we could get the data off the board without having to remove the SD card....even better, if we could do it remotely without having to have hands on the device.
Does anyone have an idea on how we could make this work....please remember that we already have a shield on top of the propeller board that controls the other aspects of the lickometer. Any plans on making this board capable of connecting to a wifi network?
Comments
Mike
https://www.parallax.com/product/32420s
Parallax did not produce the ASC+. That would be MGHDesigns:
http://mghdesigns.com/wiki/asc/start
This sounds like an interesting research project. Do you have links to a site, publications, etc., were I may learn more?
Cave, some starter spin exercises;
http://obex.parallax.com/object/881
I use the NodeMCU Lua development system for ESP work, but there's also an Arduino IDE system for programming it; those are your two most practical approaches IMO for the ESP8266. Either way even if you're just using it as a bridge for the propeller to wifi there's going to be a whole 'nother development system and its learning curve, as well as interfacing it to the propeller. Your interface between the prop and ESP will of course be serial, but it can go at crazy high baud rates if you need it to.
If you are wanting to store the data on SD then download and clear it at some point like the end of the day, then you aren't going to be able to avoid doing development on both systems, as you will have to arrange a dump command, handshake, and clear command as well as collecting the actual data. I've done this sort of thing many times on many different platforms and it's a learning curve, but one that is well worth tackling because it will serve you well in other future applications.
Mike