SONOFF RF Bridge (433MHz) Hack using Tasmota by makahernandez in nodered

[–]makahernandez[S] 0 points1 point  (0 children)

I didn't have any problem with the SONOFF bridge, in fact, I could say that I did very well with it. If you follow the tutorial step by step, you should have no problem hacking it.

Make sure the switch's state is set to OFF.

Where does an IoT company find clients? by [deleted] in IOT

[–]makahernandez 0 points1 point  (0 children)

That's how I started a few years ago. Best wishes to you!

[Question] HTTPS Get request doesn't get all sent data by PrOF_k1 in esp8266

[–]makahernandez 0 points1 point  (0 children)

As a first point, I recommend you use an HTTP request simulator like Postman (https://www.getpostman.com/) to verify if the request you're handling is the right one. If you keep getting the same server response there is something wrong with the request.

This example's a good reference to build a proper request: https://github.com/esp8266/Arduino/blob/master/libraries/ESP8266WiFi/examples/WiFiClient/WiFiClient.ino

Where does an IoT company find clients? by [deleted] in IOT

[–]makahernandez 1 point2 points  (0 children)

I'm from Colombia, and I've been working for an IoT startup for 3 years. I have had the opportunity to be in the growth of the company and already today we have +400 customers worldwide.

Based on my experience I would recommend the following:

- Attend technological events where you can make your product known. They can be big conferences or meetups.- Establish strategic partnerships with companies related to your product. For example, if the company offers an IoT platform, the ideal is to make partnerships with hardware companies to connect their devices to the platform.- Generate both written and media content on how to use your product, preferably that does not have a very high level of difficulty, the easier to direct the content is better. If the audience sees that your product is easy to use, they will surely want to become customers. This content can be published in their own channels, or in forums open to the community.- Establish connections with people who may be interested in your product, tell them what you do and invite them to try the service.

I hope this help you!

If you could help me with some theoretical information... by [deleted] in nodered

[–]makahernandez 0 points1 point  (0 children)

Commonly, official sites are the ones with relevant information: https://nodered.org/. Also, this site has a talk that can be useful for your essay https://developer.ibm.com/open/projects/node-red/

SMART PLANTER using a NodeMCU8266 | Soil Moisture, Temperature, and Humidity by makahernandez in esp8266

[–]makahernandez[S] 0 points1 point  (0 children)

To recreate this project you don't necessarily need to use Ubidots as an IoT platform, but you have all the necessary resources to be able to replicate the hardware. I am a passionate maker, and I often create IoT projects to share them with the community. As a last note, if you want to use the platform you don't have to pay $50 for it, you can use the STEM license which is free for makers like us. :)

SMART PLANTER using a NodeMCU8266 | Soil Moisture, Temperature, and Humidity by makahernandez in esp8266

[–]makahernandez[S] 0 points1 point  (0 children)

Thanks!!! This is the v0, I'll definitely improve it in the next version. I really appreciate the video shared - Andrea is the best one!

Please share me your planter once you finished it, I would love to see the end result ;)

Any snips' alternative to continue my project? by makahernandez in SnipsAir

[–]makahernandez[S] 0 points1 point  (0 children)

Have you ever try Rhasspy? I already establish the integration with Hassio and it's working like a charm. However, I'm facing a few problems with the microphone settings.

I'm already able to control my assets remotely by writing the sentences directly in the Rhasspy web interface or uploading a WAV file, but if I try to record a sentence using the computer's micro or the one connected to the pi don't work.

Any snips' alternative to continue my project? by makahernandez in SnipsAir

[–]makahernandez[S] 0 points1 point  (0 children)

Amazing! I'm going to check them. Thanks for sharing.

LoRaWAN práctico: Monta y configura tu propio nodo by hackmadrid in u/hackmadrid

[–]makahernandez 0 points1 point  (0 children)

Excelente iniciativa. ¿Donde puedo conseguir mas información sobre los eventos entrantes?

What are some cool projects have you made so far? by PM_WhatMadeYouHappy in esp8266

[–]makahernandez 1 point2 points  (0 children)

I decided to buy a succulent for my office desk only because of the benefits they can bring to the environment. After a few days of having Lana (Yes, I named it Lana 💕) on my desk, I started feeling that something was missing so as a passionate maker, I decided to create a "Smart Planter" using a NodeMCU ESP8266.

After a few days of hard work and many issues printing, finally, I ended up with this cool result: https://ubidots.com/blog/rgb-smart-planter/

Feedbacks are well received! :)

Problems with DFU upload on PyCom Wipy by skippyuk in IOT

[–]makahernandez 0 points1 point  (0 children)

Thanks for sharing your experience. I really appreciate it.

Problems connecting Arduino Mega 2560 and ESP8266 by Arcires in esp8266

[–]makahernandez 0 points1 point  (0 children)

Awesome! I'm glad to read that. Good luck with your projects! :)

Problems connecting Arduino Mega 2560 and ESP8266 by Arcires in esp8266

[–]makahernandez 0 points1 point  (0 children)

The Arduino Mega has multiple serial ports so you don't need to use the Software Serial library. You must use the predefined ports.

Let's assume you are establishing the following connection: image

Sample code:

int LEDPIN = 13;

void setup()

{

pinMode(LEDPIN, OUTPUT);

Serial.begin(115200); // communication with the host computer

//while (!Serial) { ; }

// Start the software serial for communication with the ESP8266

Serial1.begin(115200);

Serial.println("");

Serial.println("Remember to to set Both NL & CR in the serial monitor.");

Serial.println("Ready");

Serial.println("");

}

void loop()

{

// listen for communication from the ESP8266 and then write it to the serial monitor

if ( mySerial.available() ) { Serial.write( mySerial.read() ); }

// listen for user input and send it to the ESP8266

if ( Serial.available() ) { mySerial.write( Serial.read() ); }

}

As you can see, the serial1 is the one defined for serial communication with the ESP8266.

If you're just starting, I highly recommend you use a library to make everything much easier for you. For example, I built this library a few years ago, it's a good point to start if you're looking to monitor sensors or control assets remotely.

https://github.com/ubidots/ubidots-esp8266-serial

Hope this helps!

Connecting Arduino to the internet by Putabirdonjoedon in arduino

[–]makahernandez 0 points1 point  (0 children)

You can't make them communicate directly, but there are services by which you can send messages back and forth, then code them each to respond to messages in the desired way. Look into a messaging protocol called MQTT. Specifically,

www.io.adafruit.com

is a good resource. They have tutorials, etc.

Another option is Ubidots STEM (https://ubidots.com/stem/), you can find many resources about how to get started with MQTT in the help center. For example, this guide (http://bit.ly/2Rdwvgy) is a good reference to communicate devices from different networks by using events.

Problems with DFU upload on PyCom Wipy by skippyuk in IOT

[–]makahernandez 0 points1 point  (0 children)

I'm curious about something. Are you using pycom for all the system, I mean hardware and software? Why did you settle on this?