Questions tagged [microcontrollers]

For questions concerning IoT applications that use microcontrollers as control units. Almost every IoT device has an embedded microcontroller. Thus, use this tag when the usage, development or constraints of the microcontroller are at the core of the question.

For the purposes of this site, you should use to refer to any embedded processor which does not run a full linux (or similar) operating system. Formally, this typically excludes devices without an MMU (or maybe MPU). For generic questions about processors in Single Board Computers (such as the Raspberry Pi), use . A microprocessor is likely to be used in a hub or router.

81 questions
7
votes
2 answers

Website on a microcontroller

I want to create a simple web server on a SAM4E. I have found a example but I would like to change the website. Now it's just plain html code: if(( NULL != pcRxString) && ( !strncmp( pcRxString, "GET", 3 ) )) { /* Update…
Dylan
  • 71
  • 1
4
votes
3 answers

Choosing low power microcontrollers to run with a solar panel

I am starting a project which will control a small motor, some LEDs for illumination and read some analog sensors and I need to power it via a solar panel. I am looking for the best option on microcontroller to use but I don't know much about the…
4
votes
0 answers

I2C transfer to Thunderboard Sense microcontroller never completes

I am using a Thunderboard Sense microcontroller, plugged into my desktop (Windows) with a USB, and the Simplicity IDE with the coding language C. I am trying to write to a register using the I2C_Transfer function, to initialise the board's IMU…
2
votes
0 answers

POE ethernet passthrough microcontroller

I'm looking for a build your own or mod hack something like a POE ethernet passthrough that powers an Arduino IoT controller. I understand that what ever I am using will need it's own dedicated IP stream but given how small some things have gotten I…
2
votes
1 answer

Development board for DASH7

Has anyone experimented with DASH7? I am searching for a development board, which is proven to work with the DASH7 stack in the 433/868 MHz bands. There are, of course, the official development kits, such as the WizziKit, but they are expensive.
typo
  • 249
  • 2
  • 5
1
vote
1 answer

Can AVR microcontroller be used in commercial products?

I'm working on a startup and I have come to know that AVR is closed source so I wonder if I can use their chips inside my commercial product?
0
votes
0 answers

How to configure watchdog mode with interrupt in MSP430F5358?

I am using the MSP430F5358 controller and want to enable the watchdog timer to reset the controller when some malfunction occurs with the Software. I need to add watchdog Interrupt so that it completes some power down sequence before resetting the…