alxAgu

Results 12 comments of alxAgu

> Did you manage to figure out how to handle pairing request? No, I gave up on that a long time ago.

#### Update: I tested it in a Raspberry PI but the results are exactly the same. At least I know now the problem is not hardware related? I also noticed...

#### Update 2: Ok, I finally got it working receiving data from the arduino sender. However, I'm still unable to send data back (transmit). As soon as I call tx.write(...)...

Hi Nathan, Yes, that's what I thought, I tried setting the registers myself but the result is the same. ``` javascript radio.setStates({DYNPD:0x00, FEATURE:0x01}); ``` Also, if that was the case,...

No, I haven't really changed the Arduino code. I'm actually using the [latest version](http://tmrh20.github.io/RF24/index.html) of the RF24 library which doesn't really have the .toggle_features() you refer to. I only used...

The latest version of the RF24 definitely uses autoAck, I've been using it for a while now to connect multiple Arduinos. Regardless, both Raspberry PI and BBB should be able...

I finally discovered what the problem was. It turns out that the new RF24 library has a fixed payload size of 32 bytes by default while the nrf library (I...

Ok, I've been doing a lot of tests and these are my findings: ### Receiving Data - If we enable dynamic payloads in the Arduino radio, you cannot set the...

Pointing the outFiles of your launch configuration to `${workspaceFolder}/.esbuild/.build/**/*.js` worked for me: ```json { "type": "node", "request": "launch", "name": "Debug", "preLaunchTask": "tsc: build - tsconfig.json", "program": "${workspaceFolder}/node_modules/.bin/sls", "console": "integratedTerminal", "runtimeVersion":...

@jameshfisher, did you manage to get it working? I just came across the exact same issue and followed you here from https://github.com/tensorflow/tfjs/issues/4003.