-
Hi,
I'm making a home automation project for my dorm room
and I think espruino would be a good choice. i want wifi, so I want to install Espruino on the Adafruit feather esp32.
https://www.adafruit.com/product/3405
Will wifi work on this board? On the ESP32 page on the website, it says this:Limitations / Work in Progress
Supported by Espruino on the ESP32:
onewire
hardware SPI
hardware I2C
DAC
ADC
Serial
The not supported by Espruino on the ESP32 (yet):No Over-The-Air (OTA) firmware updates.
Bluetooth and BLEIt doesn't say that Wifi doesn't work on the esp32 port of espruino, but it also doesn
t say that it works. I'm kidna confused.so, does Wifi work on the esp32 port of espruino?
Thanks!
-
-
Hey,
I've tried a lot of times, everything I found online and what you told me to do.
nothing works.
I hooked up a usb-ttl converter and tried reflashing the firmware, but no luck
same thing with starting bootloader mode; I pressed and held BTN1, then pressed and released RST, but nothing happens.
The red and blue LEDs just glow dimly, and there's nothing I can do. -
-
-
-
The red and blue LEDs are dimly lit, so I think my board is stuck in some sort of "permanent reset." I also did a bit more research and found out that the bridged pins are the PCM_CLK and PCM_OUT pins on the HC-05. I don't know what these are, but I think they are the ones causing the bricking. However, if that's true, my board should've stopped working right after soldering the bt module.
-
Is there anything I can do?
I tried re-flashing the firmware, but the bootloader mode won't initiate.
I tried every other thing the website told me to do; I looked through the troubleshooting page, tried bootloader mode like 20 times, and of course tried re-connecting it to my mac 2000000 times.Also, the board was working for the first few days, until I soldered on the bluetooth module. With the bluetooth module the board worked perfectly fine and it got bricked a few hours later after the soldering.
I really really really want my espruino board back! Someome PLEASE help me!
Thanks!
P.S. Also, I have a little solder bridge on my bt module, but with it the bt worked perfectly fine, and so did the board. the bricking happened a few hours later after the mistake. I don;t have a solder wick or pump at hand. I ordered one of each and I'm going to fix it when it gets here.
-
-
-
Hi,
I just soldered my HC-05 module to my espruino board, and I forgot to mask the circular aerial on the bottom of the bluetooth module, and I don't have a solder wick or pump at hand.
but why is the tape necessary?
The reference page tells me to use some tape to cover the circular aerial:Add a small piece of Magic Tape to the back of the module, over the circular aerial connection.
Why is this necessary?
does it have a big impact on the connection if I don't? -
Hi,
My hc-05 isn't working.
I soldered two pins on each corner, and when I was done, I connected it to a power source.
It pops up on my mac, and I open the web ide and it also shows up.
So I connect, and the web ide says connected, but it only shows
Connectedand when I type something it doesn't appear on the prompt.
with picocom, same thing happens, but the > doesn't appear.
But both says that it is connected. -
-
Hi,
I'm planning to make a datalogger with my espruino with a dht11 sensor.
I want to make it so that If I connect my mac to my espruino via bluetooth, which will be on my windowsill, the espruino will send me all the logged data through a text file.
Is this possible?
Is there a command/keyword that triggers when bluetooth is connected?
Also a command for sending files by bluetooth?
I checked the reference page but I can't find any.
Thanks!
by the way here's my code so far://Offline weather data logger for the Espruino Javascript microcontroller //DHT11 sensor connected to pin c11 //Made by Eric Min - NO STEALING SOURCE CODE! IF YOU DO SO PLEASE CREDIT ME!! var dht = require("DHT11").connect(c11); // requires the DHT11 module for temperature/humidity logging var files = require("fs").readdirSync(); // requires the Filesystem module for reading, writing, and storing files var f = E.openFile("log.txt","w"); // sets variable for file IO library var x = 1; function readTemp() { dht.read(function (a) { f.write(a.temp.toString() + a.rh.toString()); }); } function logTemperature() { dht.read(function (a) { f.write(a.temp.toString()+a.rh.toString()); }); } function logAtIntervals() { setInterval(logTemperature, 1800000); x++; } if (x <= 24) { console.log("Logging done!"); f.write("Logging done! Entering sleep mode, good night!"); f.close("log.txt"); } logAtIntervals();
yeah I'm a noob so please point out any errors in my code please!
-
-
Hi,
I want to know what components are best for the smd prototype area.
Except for motor drivers and transistor arrays, what else can i stick on?
like, flash memory, wifi, radio...
can someone give me the names some really useful add-ons?EDIT:
Is there a wifi module (preferable esp8266) that has breadboard compatible pins? I would really like to add a wifi module to my espruino board. -
-
-
-
-
-
-
Hi,
I am thinking of running Espruino on an esp8266 board.
These are my two favourite boards on that I have found on Amazon:
https://www.amazon.com/Elecrow-ESP8266-Module-Battery-Charging/dp/B01DEQI4W2/ref=s9_simh_gw_g147_i1_r?_encoding=UTF8&fpl=fresh&pf_rd_m=ATVPDKIKX0DER&pf_rd_s=&pf_rd_r=YT6SEMB9GHPWYSX5KM8V&pf_rd_t=36701&pf_rd_p=a6aaf593-1ba4-4f4e-bdcc-0febe090b8ed&pf_rd_i=desktop
https://www.amazon.com/Adafruit-2821-Feather-HUZZAH-ESP8266/dp/B019MGW6N6/ref=sr_1_cc_1?s=aps&ie=UTF8&qid=1485821160&sr=1-1-catcorr&keywords=esp8266+feather
If I flash Espruino on any of these boards, will the pin numbers be all jumbled up?
like, since the pinouts are different, I won't be able to use the same pinouts as on the real espruino, will I? Will GPIO pins even work on these boards? -
Hi,
I am thinking of running espruino on the adafruit feather huzzah board:
https://www.adafruit.com/products/2821
Can I configure my board as an access point and connect to another wifi hotspot at the same time?
Hi,
is there a difference between the bluetooth capabilities between the Original Espruino board(with the HC-05 bluetooth module soldered on) and Puck.js?
I need a board that uses Bluetooth for communication and Espruino looks really neat, and I'm choosing between the original and puckjs.
Thanks!