-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Question]MISO MOSI and HMISO, HMOSI #648
Comments
This is more of a ESP8266 question rather than a nRF24L01 question. Try this advice from the Arduino core for the ESP8266. In my experience, the nodeMCU boards weren't labeled (nor documented) for use with Arduino IDE. It was originally designed to run a LUA interpreter using the nodeMCU firmware. |
Of course, this is a question for nodeMCU, the NRF24 module works fine, but I'm sure it can be connected this way. Half a year ago, when I did not know anything about NRF24, I found one lesson where it was included in this way, but unfortunately I cannot find it and I have no code left.
RF24 radio (2.0); // |
I found such an example on the Internet, but I can't find anything like that anymore, and this one doesn't work for me. class RF24 { but I don't understand how to specify CE and CSN then #include "nRF24L01.h" void setup(void) { |
I can't help you. Providing a link to the advice was "generous" of me. Try asking this question on the repo that enables esp8266 for Arduino IDE. As you said
this is simply the wrong repo to ask this question |
BTW, of course this won't work RF24 radio(12, 14, 26, 25, 27); because... well just read the docs. |
@pavluchenkor I'm working on this feature to use a secondary SPI bus by overloading |
convert _SPI calls to pointers where applicable typo made BCM driver fail overload begin() and amended docs about begin() fix faulty #ifdef logic doxygen v1.9.1 deprecated COLS_IN_ALPHA_INDEX tag bump version to v1.4.0 exclude only RF24_LINUX apply ptr treatment to Teensy, LittleWire, & Due trigger ArduinoCLI action doxygen action shouldn't create a docs folder no need to specify output dir in doxygen action make my life simpler: use new RF24_SPI_PTR macro trigger ArduinoCLI action forgot about c'tor; fix 2-space indent in begin() abstract SPI::begin() from _init_pins() adjust csn_pin before SPI.begin() on BCM driver conforming whitespace add printf.h fix from @TonioChingon in nRF24#739 rename atxmega.md & add link to supported product add Due to ArduinoCLI action fix teensy support; add PIO CI for teensy [PIO CI] use quoted matrix entries [PIO CI] use single quotes? I hate YML Gimme that badge add MRAA to Linux CI action typo [Linux CI] MRAA install needs special permission try with "sudo bash -c" [Linux CI] MRAA not cross compiling (I think) add example code snippets to Arduino support pg doc typos Due can't use SPI_PTR; delete ATXMEGA/readme.md (use docs/atxmega.md instead) fix nRF24#414; note need mbed example in arduino.md fix printf() only for adafruit/ArduinoCore-SAMD add msg about COMMON_ISSUES to README add estimated mbed example to arduino.md avr/pgmspace.h was added to Due core in 2013 oops, undo my testing change remove useless Due config file nRF24#752 ammend support for SPI_UART in csn() Confirm working 2nd SPI bus on esp8266 nRF24#648 fix indent c-n-p artifact; more indent inconcsistencies comment out theroretical example snippets add pinout img from RF24Audio repo doxygen sux at reading imgs implement nRF24#539 my CnP skills are lacking need to test py wrapper [py_wrap] begin fails to compile [py wrap] oops left the old begin still in there [py wrap] use thin wrapper for begin_w/_pins [pr wrap] try explicit begin(void) boost.py docs suck [py wrap] try using same name for begin(pin, pin) [py wrap] c'tor overload is bad [py wrap] "optional<>" template didn't take [py wrap] unmatched parenthesis advise that teensy doesn't need overloaded begin() docs review
Good afternoon, following the documentation, the node has MISO MOSI etc. and HMISO, HMOSI, etc. How can I use MISO MOSI? Everything works fine for me, but I would like to free the ports for other purposes.

I checked, turned on NRF 24 in MISO MOSI, left CN on port 4 (GPIO 2), indicated RF24 radio (2, SCK) ;, it seemed to me so correct, but radio.isChipConnected (); will give me a false.
The text was updated successfully, but these errors were encountered: