[SOLVED] Is there anyway to have a filesystem-like facility on ESP8266? #5270
Replies: 1 comment
-
Posted at 2016-04-06 by ekarak see http://www.espruino.com/Reference#File Posted at 2016-04-06 by DrAzzy http://forum.espruino.com/conversations/279700/?offset=25#comment12891564 Also, depending on what sort of storage is appropriate, an eeprom (ex AT24 series) could be used. Posted at 2016-04-06 by @gfwilliams The By far the easiest (IMO) for small amounts of data would be to just use this library: http://www.espruino.com/FlashEEPROM For it to 'just work' you'd either want a 'cutting edge' ESP8266 build (so newer than 1v85), or you can hard-code the start address with:
Posted at 2016-04-06 by Wilberforce What size "files" are you looking to store? You can used the flash module. Posted at 2016-04-06 by ceremcem I just want to store some I think Posted at 2016-04-07 by Wilberforce The wifi lbrary the Flasheprom module stores with indexes, it might be over complicated for your needs - the flash module might be enough! Posted at 2016-04-07 by ceremcem I am totally sure that I tried above
Posted at 2016-04-07 by ceremcem @wilberforce I need to store ESSID and password except from default ones. I will hardcode a default ESSID+password and save an additional one. If new ESSID+password fails long enough, I will fallback to the default one. That's why I need some other place to store these values. Anyway, there is only Posted at 2016-04-07 by @gfwilliams @ceremcem it could be that you have a bad network connection? These modules are loaded off the net, and if the connection goes down they won't get pulled in. Worst case you could store them locally, or even copy/paste the module code into the top of your code file. Posted at 2016-04-07 by @gfwilliams To add to this: Just typing You need to use it on the right-hand side and click upload - then the Web IDE gets a chance to scan your code, see what modules are needed, and load them up automatically. It's worth reading Posted at 2016-04-07 by ceremcem @gfwilliams Now I understand better. I'm still trying to understand the working mechanism of Espruino, but clearly I didn't yet. The fact is, I'm not using the Web IDE. I have built a toolset (and will publish when ready for daily usage) where the main purpose is to use Livescript transparently. So I may manually download FlashEEPROM module. Posted at 2016-04-07 by Wilberforce I would suggest using the web ide and get things working, and then move to your setup will be the quicker path! The web idea is very interactive and allows quick prototyping. Posted at 2016-04-07 by @gfwilliams Yeah, that'll be your problem then ;) Some modules are built in, but all the others are loaded on demand. There's are some tweaks that go on in the background when uploading to avoid some nasty edge cases. You could look at https://github.com/espruino/EspruinoTools (on NPM as https://www.npmjs.com/package/espruino) - this is a command-line (and library) version of the same code. You could bodge something up very easily that ran Livescript over your code and uploaded it with EspruinoTools. Or you could modify the Web IDE from https://github.com/espruino/EspruinoWebIDE. If there's a web service that converted LiveScript to JavaScript it'd be trivial to write a plugin like this that took the code and converted it just before uploading. Posted at 2016-04-07 by @allObjects @ceremcem, you could put a set of SSIDs and Passwords into a module that is then uploaded to the board when uploading the application code to the board happens. See some details in this post. To make that happen, you place the modules into the modules folder in your sandbox (IDE configurable directory structure). Posted at 2016-04-07 by ceremcem It seems a little bit diverged, but not at all: Could you please take a look at this problem because I guess this is the only problem left. If I can make a bundle by myself, I can use
Posted at 2016-04-08 by @allObjects @ceremcem, in mentioned post I cover amost to the T what you are looking for: a module that defines a class with method(s) to use JavaScript in an object-oriented way rather than script way: the first - The solution can happen even in one file or even in two files. Let's look at each option in a separate post. Posted at 2016-04-08 by @allObjects FIRST Option: Single Module File Create a module - js file - with the following content:
To use the Something module, enter following code into edit pane of Espruino Web IDE, upload it, and then press BTN (equal to BTN1):
An almost perfect example you find developed in this conversation: Posted at 2016-04-08 by ceremcem @allObjects Thank you, here I could achieve the solution:
Now I can Posted at 2016-04-08 by @allObjects @ceremcem, urvw! ...yep that works... but your context is a ...shell, is it? Are you cross-generating/composing modules from very modular source files? Posted at 2016-04-08 by ceremcem Yes, the context is BASH shell. I'm familiar with BASH more than Javascript in such jobs. I don't know, I feel really lost while going after being able to use Posted at 2016-04-08 by @allObjects @ceremcem, what other language(s) are you comfortable with? Posted at 2016-04-08 by @allObjects SECOND Option: Multiple, Nested Module Files Create the following Something_Class.js and Something_methods.js files in the sandbox modules folder. As you notice, the class file uses the methods file and *'mixes' its properties - methods - into the prototype (added a
Usage is only slightly different: Instead of pulling Something module, you pull Something_Class module, but you still pull only one module...:
mixin - mixing the properties of one Javascript object into another one is a very Javascript typical pattern... that shows Javascripts extreme dynamic properties, and - neither last nor least - one that give Javascript almost the power of the Interfaces w/ Implementations pattern found in Java. (A class that implements multiple interfaces mixes multiple sets of methods into a new class definition, which can also be defined by a 'mixed in' constructor using a helper construct.) Posted at 2016-04-08 by ceremcem @allObjects Posted at 2016-04-08 by ceremcem Thank you all for everything, the problem has been solved. Here are the results:
Usage:
Posted at 2016-04-08 by @allObjects All these languages incorporated (over time for better or worse) some object-orientation. Objet-Orientation was actually introduced almost 40 years ago: putting the data (state/data structure) and function (behavior/operation/function) together into one definition, to ensure for good that not the wrong operation/function can be applied on the data (invoking a function / call with the wrong data...). Smalltalk is my favorite in that respect, because the first thing in every expression is the object reference that receives a message to do something, followed by a parameter, which is also an object reference. Smalltalk is also (almost the only language) in which classes are first-class objects, and the method new returns an instance of that class.
Smalltalk got also rid of the cluttering parentheses. In general, the code looks much more concise, but still very prosa. Class and method definitions look like this:
Smalltalk uses parenthesis only to enforce precedence. Regarding Object-Orientation: Take a look at the brilliant approach of using CRC-Cards - Class-Responsibility-Collaboration-Cards - to crack the OO-nut without going technical. It helps to break down a system into very suitable software components without the syntax clutter of a any language, and helps to think in encapsulated, real-world objects rather than a sequence of operations on a pile of data data types. Posted at 2016-04-08 by @allObjects I'm glad this got worked out... Posted at 2016-04-08 by ceremcem Here is my current toolset: https://github.com/aktos-io/aktos-espruino-tools Posted at 2016-04-08 by ceremcem Smalltalk was in my TODO list (my list of languages to be learned) along with Elixir, Lua and Lisp =) Our learning survey is mainly motivated by our commercial applications' needs (we learn whatever we need to, or invent sometimes). For example I was forced to learn Python in order to program a Telit 863-PY GSM module, then I liked it very much =) Posted at 2016-04-08 by @gfwilliams I'd really recommend that you just use EspruinoTools command-line app:
And module loading will 'just work'. Posted at 2016-04-08 by @allObjects ...indeed, one learns what the 'economic needs' - or - the market(s) dictate... just a little bit screwed, because 'the markets' are made and that mostly by non-engineers... leading to 'rabbit trails'. Because something is 'fashion', most go down these trails kudo-ing one another and many good things get thrown out... luckily, later, some of the discards recover and are picked up in one or the other way when returning to a more straight path... and luckily too: once in a while along the rabbit trails, some other good things are discovered as well... Posted at 2016-04-12 by ceremcem Hi, Sorry for the late reply, we have been dealing with a CAN bus issue. I generally examplify "learning a programming language" with "using a rent car", or "taking a bus". You might feel yourself comfortable in your car (or some models of buses) but if you need to travel to meet with your friends, it wasn't be a problem the type of vehicle you use; you would just use it to reach the target. That's such a kind of thing to me. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2016-04-06 by ceremcem
There is no "fs" module built in stock ESP port. How can I save some data in runtime?
Beta Was this translation helpful? Give feedback.
All reactions