Hi,
Since Arduino made the work to have MBED running on the Nano 33 BLE
is there a way to use MBED OS directly without the arduino core ? and program the board with the MBED suite (MBED studio + CLI) ?
Thx
Hi,
Since Arduino made the work to have MBED running on the Nano 33 BLE
is there a way to use MBED OS directly without the arduino core ? and program the board with the MBED suite (MBED studio + CLI) ?
Thx
Hi Charly371,
I'm new too and I don't really understand what you mean with arduino core, but you can use the MBED OS directly with the Arduino IDE too.
You just Need to include the MBED OS lib and can start.
For example:
#include <mbed.h>
#include <mbed_wait_api.h>
using namespace mbed;
void setup()
{
Serial.begin(9600);
pinMode(5, OUTPUT);
}
void loop()
{
digitalWrite(5, HIGH);
wait_ms(100);
digitalWrite(5, LOW);
wait_ms(100);
}
@charly371 also posted this question to GitHub and got a reply from one of Arduino's developers: