Florian Euchner

Results 68 comments of Florian Euchner

I have to admit that the information in the documentation on that topic is somewhat outdated now that the amazing people at Context Information Security have reverse-engineered the structure of...

That would make a lot of sense, this is the kind of explanation I was suspecting. Spanish is widely spoken enough so that this might have actually impacted Hasbro's decisions....

Thanks for your report. It's true that node-usb doesn't seem to release pre-built binaries for Linux, but `npm install` will automatically build node-usb from source if the binary is unavailable....

Unfortunately I haven't been able to bring up any of the graphics in the DLC files, but apparently these guys have managed to do something like that: https://github.com/swarley7/furbhax I haven't...

You have to update your node.js to v7.0 or later, I am using v7.4.0. Also see #1 where we had the same discussion. You can get the latest nodejs from...

What do you mean by that? Yes, sure, you can broadcast custom data in the beacon frames. Like, you could transmit a beacon containing an SSID that says "The password...

I don't think that is possible, according to [the API guide](https://github.com/espressif/esp-idf/blob/master/docs/en/api-guides/wifi.rst#wi-fi-80211-packet-send) it is only possible to send "beacon, probe request, probe response, action" frames with `esp_wifi_80211_tx`. If you want to...

I don't know if there is some lower-level API that you could use. I think the best thing you could do is to take a look at the assembly instructions...

Yes, you can find it in my GitHub profile, on the left: https://github.com/Jeija

I was able to send IEEE 802.11 Data Frames using this packet header: ``` const uint8_t ieee80211header[] = { 0x08, 0x00, // IEEE 802.11 data frame 0x00, 0x00, // Duration...