• Thr 2019.06.13

    Okay - Found this:

    https://github.com/espruino/Espruino/blo­b/master/boards/ESP8266_4MB.py

    ref line #49    'spi' : 1,

    but, unable to locate how this one hdwr SPI is setup. Pin map for 'cs' 'rst' anyone?




    When using the hdwr setup from pin map link below - second image from end post #1 - and

    https://www.espruino.com/SPI

    I am led to believe that these are valid pins, as print does kick back what I sent without error:

    SPI1.setup({ sck:D5, miso:D6, mosi:D7 });
    
    >print(SPI1)
    SPI: {
      "_options": { "sck": D5, "miso": D6, "mosi": D7 }
    }
    

    as when using the little loopback trick from #5

    http://forum.espruino.com/conversations/­307305/

    >SPI1.send("Hello");
    ="Hello"
    > 
    






    Now on to RFM95

    Note that freq 915 is required for USA and thus module RFM95 needed

    ref RFM69 on Pico: https://www.espruino.com/RFM69
    https://www.espruino.com/modules/RFM69.j­s
    ref RFM95 attempt: http://forum.espruino.com/conversations/­307305/

    But, when I attempt to connect applying a pin value for 'cs' or 'rst'

    var rfm = require("RFM69").connect({spi:SPI, cs:D8, freq:915}, function() {
        console.log("Connected");
      });
    
    print(rfm);
    

    I'm faced with un-initialized pins: (Note that 'rst' omitted for simple error return)

    Uncaught Error: Function "send" not found!
     at line 1 col 10
    this.spi.send([a|128,b],this.cs)
             ^
    in function "w" called from line 1 col 11
    b.w(47,170);if(170!=b.r(47))throw Error("RFM69 not found");b...
              ^
    in function called from system
    {
      "spi": {
        "spi": function () { [native code] },
        "cs": D8, "freq": 915 },
      "cs": undefined, "rst": undefined, "freq": 434 }
    >
    



    The resultant "send" not found! error seems to be as the pin for 'cs' D8 doesn't seem to initialize.




    Successes so far:

    While an overly ambitious desire to get working and provide a tutorial for the RFM69/95 module, as others seem to be having difficulty also, and realizing that most forum post references ended 2 years ago (late 2016), this task may be near impossible, but might be fun learning to see if the module could be re-written.

    "To Boldly Go Where No Man Has Gone Before!"

    I understand this is un-supported, uncharted waters:

    https://www.espruino.com/Other+Boards

    ESP8266 closest match

    Found an article that had SPI running with Arduino on a D1 mini. Wanted to see if Espruino would work instead.

    After reading the headaches from this install attempt, Jan 2018:

    http://forum.espruino.com/conversations/­315462/

    and having a WavGat D1 variant, see image @MaBe link#18 lying around from a previous CN massive sale discount order I just couldn't resist, gave it a whirl. Surprisingly, in my case, after botching the wrong pull-up pin for flash, was able to get Espruino running with no headache on my part. 'Hello World' in under an hour!

    AI Thinker ESP8266MOD

     

    https://wiki.wemos.cc/products:d1:d1_min­i

    Re-Ordered
    
    Pin	Function	ESP-8266 Pin
    01 5V	5V	-
    02 G	Ground	GND
    03 D4	IO, 10k Pull-up, BUILTIN_LED	GPIO2
    04 D3	IO, 10k Pull-up	GPIO0
    
    05 D2	IO, SDA	GPIO4
    06 D1	IO, SCL	GPIO5
    07 RX	RXD	RXD
    08 TX	TXD	TXD
    
    09 RST	Reset	RST
    10 A0	Analog input, max 3.3V input	A0
    11 D0	IO	GPIO16
    12 D5	IO, SCK	GPIO14
    
    13 D6	IO, MISO	GPIO12
    14 D7	IO, MOSI	GPIO13
    15 D8	IO, 10k Pull-down, SS	GPIO15
    16 3V3	3.3V	3.3V
    
     2v01 (c) 2018 G.Williams
    Espruino is Open Source. Our work is supported
    only by sales of official boards and donations:
    http://espruino.com/Donate
    Flash map 4MB:512/512, manuf 0xe0 chip 0x4016
    
    >process.env
    ={
      VERSION: "2v01",
      GIT_COMMIT: "748a4d3",
      BOARD: "ESP8266_4MB",
      FLASH: 0, RAM: 81920,
      SERIAL: "a020a606-7bff",
      CONSOLE: "Serial1",
      MODULES: "Flash,Storage,hea" ... "r,crypto,neopixel",
      EXPTR: 1073643636 }
    > 
    



    In the meantime, I'll continue to research and will update here as I discover more. . . .

  • Looks like the RMF96 and SX12xx modules have different parameters. The RFM69's connect's first parameter should be the SPI object, not an object with an spi property:

    // from the docs:
    rfm = require("RFM69").connect(SPI2, {cs:B10, rst:B1, freq:434}, ...
    // your code:
    rfm = require("RFM69").connect({spi:SPI, cs:D8, freq:915}, ...
    
About

Avatar for Robin @Robin started