Arduino_MKRIoTCarrier
Arduino_MKRIoTCarrier copied to clipboard
Use the features included with the Arduino MKR IoT Carrier
- adjusted display examples to fit round display - renamed strandtest to LED_Blink - changed Qtouch button layout for improved usability
As of now, touch buttons are identified using an enum class: https://github.com/arduino-libraries/Arduino_MKRIoTCarrier/blob/4a894ad4910f121662ed54b0957002202cf732c8/src/Arduino_MKRIoTCarrier_Qtouch.h#L29-L35 This means that in order to iterate over all the buttons to find out which one was pressed,...
If I modify the example "[**Custom_Sensitivity**](https://github.com/arduino-libraries/Arduino_MKRIoTCarrier/blob/master/examples/TouchPads/Custom_Sensitivity/Custom_Sensitivity.ino)" and move the `carrier.begin()` on line 22 and put it BEFORE line 20: ```cpp carrier.Button0.updateConfig(threshold); ``` it no longer respond to touch. However, if...
Using the code from the [Personal Weather Station](https://opla.arduino.cc/opla/module/iot-starter-kit-maker/lesson/02-personal-weather-station) project included in the Oplà IoT Kit, I noticed an issue that is consistently reproducible. Steps: 1. Run the code and let...
During an IOT course, the entire class got the same issue being the `AREF_PIN` not being defined using the MKR WAN 1310 board. Issue: `Arduino_MKRIoTCarrier.cpp:34:11: error: 'AREF_PIN' was not declared...
For more information see https://github.com/arduino/report-size-deltas/blob/main/docs/FAQ.md#size-deltas-report-workflow-triggered-by-schedule-event .
MKR boards AREF_PIN definition are missing in: https://github.com/arduino-libraries/Arduino_MKRIoTCarrier/blob/4bbbaf18a3d527e33c7999f11b599a02822dae80/src/MKRIoTCarrierDefines.h#L93 You may find all MKR boards pins in `/arduino/hardware/samd/1.8.13/variants//variant.cpp` most are linked on pin 25.
I tried to use [the example sketch for getting CO2](https://github.com/arduino-libraries/Arduino_MKRIoTCarrier/blob/master/examples/Sensors/VOC/CO2_Read/CO2_Read.ino) and other parameters. But what I see: - CO2 is 500 and don't change - Temperature is high I have...