AWS by Amazon Azure by Microsoft Google IoT by google Whatson IoT by IBM
Above listed are popular plotforms for IoT they offer different features based on features we can decide which platform is feasible for our application @boualleg sabrina
Awesome first Engineering Hours session today with @Umesh Lokhande where we reviewed the ESP32 WROOM eval platform, programmed it in the Arduino IDE and streamed data to the Thingspeak cloud platform.
Next Sunday at 15:00 GMT we tackle Node-RED dashboards with Raspberry Pi. We hope to see you there
Hi all, I hope this message finds you in good health. I'm currently working on computer vision. After doing my research, I have found two methods for estimating the camera's position and orientation using just one camera. I already have the camera parameters, so I just need your guidance.
@AA Chao Welcome! Can you let us know a bit about your technical background, what brings you to DevHeads, and what you're looking to learn/contribute?!
@Dheeraj Jha Welcome! Can you let us know a bit about your technical background, what brings you to DevHeads, and what you're looking to learn/contribute?!
@saikumarnowdu Welcome! Can you let us know a bit about your technical background, what brings you to DevHeads, and what you're looking to learn/contribute?!
@AA Chao Welcome! Can you let us know a bit about your technical background, what brings you to DevHeads, and what you're looking to learn/contribute?!
@labidii < Welcome! Can you let us know a bit about your technical background, what brings you to DevHeads, and what you're looking to learn/contribute?!
Hey @saikumarnowdu, we’re starting some demos related to MQTT topic structures, etc. so keep an eye out for that on Wednesday. As for ZigBee, some of the devs like @Aditya thakekar and @Umesh Lokhande may be able to provide insights given a specific question…
@sarath chandra Welcome! Can you let us know a bit about your technical background, what brings you to DevHeads, and what you're looking to learn/contribute?!
@udhayadhithan Welcome! Can you let us know a bit about your technical background, what brings you to DevHeads, and what you're looking to learn/contribute?!
Hi guys.. I am udhay. I have my technical background in embedded systems. I love doing hobby projects which combine the interdisciplinary of software, hardware and mechanical design. I am quite good with STM32 microcontrollers especially cortex M4 and M4. I have predominantly worked with the dual core architecture of ST's H7. I would like to get my hands on ESP32 and that's when I found DevHeads. I would like to learn more about it from fellow Engineers. I am quite good in understanding peripherals and writing firmware for it.. so I can contribute in that way to this community. Here is my LinkedIn id.. please feel free to reach out if you need anything.
@udhayadhithan Welcome! Can you let us know a bit about your technical background, what brings you to DevHeads, and what you're looking to learn/contribute?!
lots of ESP32 chops here, @udhayadhithan and we're excited to have your firmware experience in server as there's never enough of that. Tell me, have you done much if any work with TrustZone?
@JuanPG-Sendos Welcome! Can you let us know a bit about your technical background, what brings you to DevHeads, and what you're looking to learn/contribute?!
@jperezoso. Welcome! Can you let us know a bit about your technical background, what brings you to DevHeads, and what you're looking to learn/contribute?!
Hi, I am a research engineer looking to connect many ESP32 working as dataloggers in the same location to a local IOT Webserver. Anyone has tips on how to proceed?
@jperezoso. Welcome! Can you let us know a bit about your technical background, what brings you to DevHeads, and what you're looking to learn/contribute?!
HI, I am an electrical engineer looking to learn more on how to program ESP32 for comunnications and IOT. I am very interested in learning how to create a local server on a computer of some kind and also in creating PCBs with ESP32 integraten inside (without through-hole soldering, only smt/smd)
@aymen ammari Fix the motor on a scale and attach propellers to it. Then, set the throttle to maximum. You will get the maximum weight supported by one motor. Simply multiply this weight by four.
Of course @kingrom in event-driven programming, a callback function is associated with an event handler. When an event occurs, maybe a user clicking a button or data being received from a network, the associated callback function is called to handle that event. This allows for asynchronous (non-blocking) execution, as the program can continue running while waiting for events to occur. Functions play an important role in event-driven programming by defining the behavior that should happen in response to that specific event
So I guess this wouldn't solve your 5km challenge @wafa_athmani, but made me think of the RONJA (Reasonable Optical Near Joint Access) device/communication method https://en.wikipedia.org/wiki/RONJA
Basically it shoots a laser from one device to the other for a communication range of just under a mile at 10 Mbit/s. So how I would imaging a tightbeam comms device would work from The Expanse, though you'd have to consider a LOT more factors with that kind of distance/speed. But who knows, maybe it could spark another idea?
RONJA (Reasonable Optical Near Joint Access) is a free-space optical communication system originating in the Czech Republic, developed by Karel Kulhavý of Twibright Labs and released in 2001. It transmits data wirelessly using beams of light. Ronja can be used to create a 10 Mbit/s full of duplex Ethernet point-to-point link. It has been estimat...
@silvian Welcome! Can you let us know a bit about your technical background, what brings you to DevHeads, and what you're looking to learn/contribute?!
@Hendrix Ebrudu | Nigeria Welcome! Can you let us know a bit about your technical background, what brings you to DevHeads, and what you're looking to learn/contribute?!
So guys I'm using ZeroMQ for inter-process communication in my application. I have two separate processes running on the same machine, each with their own ZeroMQ endpoint. When I try to send messages from one process to the other, I'm noticing that some messages are not being received by the receiving process. Both endpoints are bound to the same protocol, address, and port. I've checked for common issues like incorrect socket types and binding conflicts, but I'm still experiencing the problem intermittently. What are some potential causes for messages not being delivered, and what steps can I take to effectively diagnose and resolve this issue? Please any assistance?
The issue of messages not being delivered in ZeroMQ could be caused by various factors such as network congestion, incorrect socket configurations, or a mismatch in socket types between the sender and receiver. To troubleshoot, ensure that both endpoints are using compatible socket types (e.g., PUB/SUB, REQ/REP), check for any network issues or firewall settings blocking communication, and verify that both processes are actively listening for incoming messages. Additionally, logging message send and receive events can help identify any patterns or inconsistencies in message delivery.