<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel rdf:about="https://community.wolfram.com">
    <title>Community RSS Feed</title>
    <link>https://community.wolfram.com</link>
    <description>RSS Feed for Wolfram Community showing questions tagged with Connected Devices sorted by active.</description>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3563034" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3024384" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3016653" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3474215" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3454636" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3365621" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3311950" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3294878" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3161083" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3105676" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3025705" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2680377" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2623336" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/1362109" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2602822" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2466962" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2313662" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2166975" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2160081" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2130901" />
      </rdf:Seq>
    </items>
  </channel>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3563034">
    <title>Wolfram on NVIDIA DGX Spark</title>
    <link>https://community.wolfram.com/groups/-/m/t/3563034</link>
    <description>Has anyone been able to install and run Mathematica on NVIDIA&amp;#039;s new DGX Spark computer?  &#xD;
&#xD;
If yes, does CUDA work?  &#xD;
Does, NetTrain work?  &#xD;
Are you able to train models?</description>
    <dc:creator>David Laxer</dc:creator>
    <dc:date>2025-10-21T17:21:12Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3024384">
    <title>Arduino and Wolfram Mathematica dynamic plot</title>
    <link>https://community.wolfram.com/groups/-/m/t/3024384</link>
    <description>I am very frustrated with the slow transfer of data from the Arduino serial COM port to the PlotLine[] in dynamic function.  In the Arduino Plot Serial, data is drawn instantly. But when connected to WM with USB able, the plots are very very slow. About 10 and 20 to 1 speed.  The Arduino code is sending a 6 pair of integers in ASCI format.  Any suggestions as to how speed up.&#xD;
&#xD;
He Arduino sketch is this&#xD;
&#xD;
    #include &amp;lt;Wire.h&amp;gt;&#xD;
    #include &amp;#034;Adafruit_AS726x.h&amp;#034;&#xD;
    //create the object&#xD;
    Adafruit_AS726x ams;&#xD;
    &#xD;
    uint16_t sensorValues[AS726x_NUM_CHANNELS];&#xD;
    &#xD;
    void setup() {&#xD;
      Serial.begin(115200);&#xD;
      while (!Serial)&#xD;
      pinMode(LED_BUILTIN, OUTPUT);&#xD;
    &#xD;
    &#xD;
      //inicia y permite la comunicacion con el sensor&#xD;
      if (!ams.begin()) {&#xD;
        Serial.println(&amp;#034;could not connect to sensor! Please check your wiring.&amp;#034;);&#xD;
        while (1)&#xD;
          ;&#xD;
      }&#xD;
    }&#xD;
    void loop() {&#xD;
    &#xD;
      //temperature  sensor&#xD;
      //uint8_t temp = ams.readTemperature();&#xD;
    &#xD;
      //ams.drvOn(); // descomentar esto si quieres usar el led del sensor para hacer medidas&#xD;
      ams.startMeasurement();  //begin a measurement&#xD;
    &#xD;
      //permite que el sensor lea la data cuando este disponible&#xD;
      bool rdy = false;&#xD;
      while (!rdy) {&#xD;
        delay(5);&#xD;
        rdy = ams.dataReady();&#xD;
      }&#xD;
      //ams.drvOff(); //descomentar esto si quieres usar el led del sensor para hacer medidas&#xD;
    &#xD;
      //lee los valores!&#xD;
      ams.readRawValues(sensorValues);&#xD;
      //ams.readCalibratedValues(calibratedValues);&#xD;
    &#xD;
      //Serial.print(&amp;#034;{&amp;#034;);&#xD;
      //Serial.print(&amp;#034;Temp: &amp;#034;);&#xD;
      //Serial.print(temp);&#xD;
      //Serial.print(&amp;#034;,&amp;#034;);&#xD;
      //Serial.print(&amp;#034; Violet: &amp;#034;);&#xD;
      Serial.print(sensorValues[AS726x_VIOLET]);&#xD;
      Serial.print(&amp;#034;,&amp;#034;);&#xD;
      //Serial.print(&amp;#034; Blue: &amp;#034;);&#xD;
      Serial.print(sensorValues[AS726x_BLUE]);&#xD;
      Serial.print(&amp;#034;,&amp;#034;);&#xD;
      //Serial.print(&amp;#034; Green: &amp;#034;);&#xD;
      Serial.print(sensorValues[AS726x_GREEN]);&#xD;
      Serial.print(&amp;#034;,&amp;#034;);&#xD;
      //Serial.print(&amp;#034; Yellow: &amp;#034;);&#xD;
      Serial.print(sensorValues[AS726x_YELLOW]);&#xD;
      Serial.print(&amp;#034;,&amp;#034;);&#xD;
      //Serial.print(&amp;#034; Orange: &amp;#034;);&#xD;
      Serial.print(sensorValues[AS726x_ORANGE]);&#xD;
      Serial.print(&amp;#034;,&amp;#034;);&#xD;
      //Serial.print(&amp;#034; Red: &amp;#034;);&#xD;
      Serial.print(sensorValues[AS726x_RED]);&#xD;
      //Serial.print(&amp;#034;}&amp;#034;);&#xD;
    &#xD;
      Serial.println();&#xD;
      ;&#xD;
    }&#xD;
&#xD;
&#xD;
I have set up Baud speed to very high, but this makes no difference. Here is the Mathematica Notebook&#xD;
&#xD;
    dev = DeviceOpen[&amp;#034;Serial&amp;#034;, {&amp;#034;COM3&amp;#034;, &amp;#034;BaudRate&amp;#034; -&amp;gt; 115200}]&#xD;
    &#xD;
    parseData[{val1__, 44, val2__, 44, val3__, 44, val4__, 44, val5__, 44,&#xD;
        val6__}] := &#xD;
     ToExpression@&#xD;
        FromCharacterCode@# &amp;amp; /@ {{val1}, {val2}, {val3}, {val4}, {val5}, \&#xD;
    {val6}}&#xD;
    parseData[___] := Sequence[]&#xD;
    &#xD;
    rawReadings = {}&#xD;
    &#xD;
    Dynamic[ListLinePlot[Transpose[parseData /@ rawReadings], &#xD;
      PlotLegends -&amp;gt; Automatic]]&#xD;
    &#xD;
    DeviceClose[dev]</description>
    <dc:creator>Jose Calderon</dc:creator>
    <dc:date>2023-09-30T21:42:31Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3016653">
    <title>Mathematica  and Arduino  device does not capture the serial stream under dynamic</title>
    <link>https://community.wolfram.com/groups/-/m/t/3016653</link>
    <description>I have set up the following sketch to capture a serial feed from an arduino. But the Dynamic command only pick up 4 feeds and dies.  .&#xD;
&#xD;
he Arduino sketch is &#xD;
&#xD;
//*************************** // Credit original code to //  Aleksandr Berezutskii  //***************************&#xD;
&#xD;
    int raw1 = 0, raw2 = 0, raw3 = 0;&#xD;
    int x = 0, y1 = 0, y2 = 0, y3 = 0;&#xD;
    #define APin1 A11&#xD;
    #define APin2 A12&#xD;
    #define APin3 A13&#xD;
    void setup() &#xD;
    {&#xD;
    Serial.begin(9600);&#xD;
    pinMode( APin1, INPUT );&#xD;
    pinMode( APin2, INPUT );&#xD;
    pinMode( APin3, INPUT );&#xD;
    analogReference(DEFAULT);&#xD;
    }&#xD;
    &#xD;
    void loop() &#xD;
    {&#xD;
    while (x&amp;lt;=6000)&#xD;
    { &#xD;
    raw1 = analogRead( APin1 );&#xD;
    y1=raw1;&#xD;
    raw2 = analogRead( APin2 );&#xD;
    y2=raw2;&#xD;
    raw3 = analogRead( APin3 );&#xD;
    y3=raw3;&#xD;
    x++;               &#xD;
    Serial.print( y1 );&#xD;
    Serial.print(&amp;#034;\t&amp;#034;); &#xD;
    Serial.print( y2 );&#xD;
    Serial.print(&amp;#034;\t&amp;#034;);                &#xD;
    Serial.print( y3 );&#xD;
    Serial.println();&#xD;
    delay(400);&#xD;
    }&#xD;
    }&#xD;
&#xD;
The notepad is included here.&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][1]&#xD;
&#xD;
&#xD;
&#xD;
  [1]: https://www.wolframcloud.com/obj/138756c1-8684-4ff5-841c-24dd2348e551</description>
    <dc:creator>Jose Calderon</dc:creator>
    <dc:date>2023-09-20T00:59:13Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3474215">
    <title>Cannot get DeviceOpen on OpenAIGym to work</title>
    <link>https://community.wolfram.com/groups/-/m/t/3474215</link>
    <description>Hi,&#xD;
&#xD;
I&amp;#039;m on Wolfram Home Edition 14.2.1 on macOS and I try to get OpenAIGym working as per the help page. The gym python package has been installed, but when I try to execute &#xD;
&#xD;
    env = DeviceOpen[&amp;#034;OpenAIGym&amp;#034;, &amp;#034;Atlantis-v0&amp;#034;]&#xD;
&#xD;
an error message in the Messages window appears saying that Python package cv2 is not installed. I have installed it as well using&#xD;
&#xD;
    ResourceFunction[&amp;#034;PythonPackageInstall&amp;#034;][&amp;#034;opencv-python&amp;#034;]&#xD;
&#xD;
Has anyone else gotten this device running on macOS. It seems also like the gym package is deprecated and further development happens in the package gymnasium.</description>
    <dc:creator>Thomas Gustafsson</dc:creator>
    <dc:date>2025-06-04T13:38:17Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3454636">
    <title>Multichannel audio recording?</title>
    <link>https://community.wolfram.com/groups/-/m/t/3454636</link>
    <description>Is it possible to make multichannel audio recordings (beyond stereo L/R) in Mathematica? I have a 4-channel audio interface (&amp;#034;Listen AudioConnect 4x4&amp;#034;) attached but am only getting single channel results.&#xD;
&#xD;
Context: As a retirement project I am making a test system for loudspeakers in which I make simultaneous measurements of response at different sensors (sound pressure, voltage, current, displacement) to a stimulus generated in Mathematica and synchronously played back on the same audio interface. I have done this in the past prior to the introduction of Audio, but it required using a Matlab toolbox (and MatLink, no longer supported) for the data acquisition. In the new system I would like to do this entirely within Mathematica, but I can&amp;#039;t seem to get enough input data channels to record.</description>
    <dc:creator>Daniel Warren</dc:creator>
    <dc:date>2025-05-03T19:31:15Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3365621">
    <title>How mathematica interfacing with PYNQ-Z2 board</title>
    <link>https://community.wolfram.com/groups/-/m/t/3365621</link>
    <description>To run the Mathematica runtime directly on the PYNQ board, you’ll have to cross-compile Wolfram libraries for ARM.&#xD;
&#xD;
Wolfram Mathematica does not natively provide ARM-compatible libraries (libWolframRTL.so) for ARM platforms such as the PYNQ board. The libraries provided by Wolfram are typically built for x86-64 Linux systems, which causes the architecture mismatch when you try to use the ARM cross-compiler (arm-linux-gnueabihf-gcc).&#xD;
&#xD;
In this, ARM-compatible libraries from Wolfram are required. Or please provide a custom solution or suggest alternatives.</description>
    <dc:creator>Vijaya Babu Panthagani</dc:creator>
    <dc:date>2025-01-28T13:59:01Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3311950">
    <title>Stream audio from Google Chrome tab in Windows 11 24H2</title>
    <link>https://community.wolfram.com/groups/-/m/t/3311950</link>
    <description>Hello,  &#xD;
I successfully use streaming from $DefaultAudioInputDevice.&#xD;
&#xD;
    audio0 = AudioStream[$DefaultAudioInputDevice, SampleRate -&amp;gt; 7119, &#xD;
       SoundVolume -&amp;gt; 1];&#xD;
    AudioRecord[audio0];&#xD;
    Pause[180]&#xD;
    AudioStop[audio0];&#xD;
&#xD;
In future I want to stream audio from Google Chrome Tab.  &#xD;
Please, what device do I need to use?&#xD;
&#xD;
Regards - Leo</description>
    <dc:creator>Leo Baumann</dc:creator>
    <dc:date>2024-10-30T18:03:29Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3294878">
    <title>Why do I have different temperature data on Micro:bit and Mathematica?</title>
    <link>https://community.wolfram.com/groups/-/m/t/3294878</link>
    <description>Hello,&#xD;
&#xD;
I am playing with Micro:bit and Mathematica. I wanted to simply visualize current temperature (measuring constantly) in Mathematica with temperature sensor on Micro:bit. I have programmed Micro:bit and wrote a code in Mathematica using Dynamic and ThermometherGauge function to do the visualization. It works, but I noticed that data showing in MakeCode is different (and more accurate) than the data showing in Mathematica. And I can be sure that the temperature showing in Mathematica is wrong because 32ºC is not possible currently and it never changes. And the gauge is constantly showing 10 then 50 and then 32ºC. I do not know why is that. &#xD;
&#xD;
Code for Micro:bit in JavaScript:&#xD;
&#xD;
    let temp = 0&#xD;
    basic.forever(function () {&#xD;
    	&#xD;
    })&#xD;
    basic.forever(function () {&#xD;
        // Get the temperature in Celsius&#xD;
        temp = input.temperature()&#xD;
        // Write temperature to serial as a number&#xD;
        serial.writeNumber(temp)&#xD;
        // Write a newline to ensure proper reading&#xD;
        serial.writeLine(&amp;#034;&amp;#034;)&#xD;
        // Wait for 2 seconds before sending next value&#xD;
        basic.pause(2000)&#xD;
    })&#xD;
    &#xD;
Mathematica:&#xD;
&#xD;
    Dynamic[temp = DeviceRead[microbit] ] &#xD;
     Dynamic[ThermometerGauge[temp, {0, 50}, ScaleOrigin -&amp;gt; 0, &#xD;
       GaugeLabels -&amp;gt; &amp;#034;Temperature (°C)&amp;#034;]]&#xD;
&#xD;
Thanks in advance!</description>
    <dc:creator>Ivo P.</dc:creator>
    <dc:date>2024-10-09T15:00:48Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3161083">
    <title>AudioCapture and $AudioInputDevices never detect my microphone</title>
    <link>https://community.wolfram.com/groups/-/m/t/3161083</link>
    <description>My friend and I are both having the same problem. My microphone works fine in all other apps, except Mathematica can&amp;#039;t detect any input devices. Has anyone found a solution to this?&#xD;
&#xD;
Windows 11 Pro. Permissions for the microphone are set correctly.  I tried various devices.  Yes, the drivers are up to date.  Again, but me and my friend are having the same issue on separate computers.&#xD;
&#xD;
I have v14 he has v13.3</description>
    <dc:creator>Sam B</dc:creator>
    <dc:date>2024-04-19T20:31:05Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3105676">
    <title>Mathematica doesn&amp;#039;t find my USB microphone</title>
    <link>https://community.wolfram.com/groups/-/m/t/3105676</link>
    <description>My USB microphone shows up in the PulseAudio volume control and also works well with Audacity, arecord etc.&#xD;
&#xD;
However, Mathematica can&amp;#039;t see the mic -- $AudioInputDevices gives me a null list.&#xD;
&#xD;
How can I set up the mic to work as an audio input device in Mathematica?&#xD;
&#xD;
(Raspberry Pi OS Bookworm )&#xD;
&#xD;
Thanks, &#xD;
Praveen</description>
    <dc:creator>Praveen Bharadhwaj</dc:creator>
    <dc:date>2024-01-19T04:18:27Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3025705">
    <title>How to specify the install directory for Arduino with the Device property &amp;#034;ArduinoInstallLocation&amp;#034;?</title>
    <link>https://community.wolfram.com/groups/-/m/t/3025705</link>
    <description>Using the following code to connect to the Arduino board, the following window will be shown, which requires the installation of the Arduino software.&#xD;
&#xD;
    arduino = DeviceOpen[&amp;#034;Arduino&amp;#034;, &amp;#034;COM3&amp;#034;];&#xD;
&#xD;
![enter image description here][1]&#xD;
&#xD;
But because I have already installed the Arduino IDE software, I want to define its installation Path with  the Device property &amp;#034;ArduinoInstallLocation&amp;#034; so I use the following code:&#xD;
&#xD;
    arduino = DeviceOpen[&amp;#034;Arduino&amp;#034;, {&amp;#034;COM3&amp;#034;,&amp;#034;ArduinoInstallLocation&amp;#034; -&amp;gt; &amp;#034;C:\\Program Files\\Arduino IDE&amp;#034;}];&#xD;
&#xD;
But it doesn&amp;#039;t work for me.&#xD;
![enter image description here][2]&#xD;
Please Help! I need to specify the installation path of Arduino Software.&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=1.png&amp;amp;userId=3025416&#xD;
  [2]: https://community.wolfram.com//c/portal/getImageAttachment?filename=2.png&amp;amp;userId=3025416</description>
    <dc:creator>Harry Hunt</dc:creator>
    <dc:date>2023-10-02T16:41:50Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2680377">
    <title>Game controller button to trigger action</title>
    <link>https://community.wolfram.com/groups/-/m/t/2680377</link>
    <description>This should not be that difficult, but I&amp;#039;m not seeing the solution. I have a game controller, and in a notebook on my desktop some WL code. The controller sends a &amp;#034;button push&amp;#034; signal to the code just fine, captured by the code in the notebook with a line like this:&#xD;
&#xD;
    Dynamic[ControllerState[2, &amp;#034;B4&amp;#034;]]&#xD;
&#xD;
However, I would like this to dynamically trigger a function in the code, similar to the way an event handler would work. To simplify things, let&amp;#039;s just have it trigger `Beep[]` when the button is pushed. I could set a timer to repeatedly check the value of the ControllerState, but that can&amp;#039;t be the best way to do it. The code is not part of a Manipulate or 3Dgraphics, but rather part of a custom interface.&#xD;
&#xD;
Can anyone please point me in the right direction?&#xD;
&#xD;
Thanks in advance.</description>
    <dc:creator>Mark Greenberg</dc:creator>
    <dc:date>2022-11-01T18:19:24Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2623336">
    <title>Using the ADALM-PLUTO with Mathematica?</title>
    <link>https://community.wolfram.com/groups/-/m/t/2623336</link>
    <description>Is there any possibility of using the ADALM-PLUTO with Mathematica? Analog Devices provides support for Matlab, but I wonder if it can be used in Mathematica as well. To complicate things more on macOS arm64.</description>
    <dc:creator>Codrut Popescu</dc:creator>
    <dc:date>2022-09-25T21:18:51Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/1362109">
    <title>Make a working USB camera discoverable by Mathematica on macbook?</title>
    <link>https://community.wolfram.com/groups/-/m/t/1362109</link>
    <description>I&amp;#039;m trying to use Mathematica to automate capture and analysis of USB camera images attached to a microscope. I believe the camera to be correctly installed because 1) The camera successfully captures images using the microscope&amp;#039;s own software on my macbook pro through the USB directly to the camera and 2) the System Information &amp;gt;&amp;gt; Hardware &amp;gt;&amp;gt; USB &amp;gt;&amp;gt; USB2.0 Camera shows the camera recognized by the macbook pro&amp;#039;s system setup. &#xD;
&#xD;
However, calls to FindDevices[] discover no camera but the iSight built-in camera. (I&amp;#039;m familiar with Mathematica&amp;#039;s help files on this and related functions at http://reference.wolfram.com/language/ref/device/Camera.html). &#xD;
&#xD;
Any advice to make it discoverable? &#xD;
&#xD;
System Info: &#xD;
-- Mathematica 11&#xD;
-- Computer: Macbook Pro&#xD;
-- OS 10.10.5 &#xD;
-- AmScope MU1400 USB Camera (connected to USB2.0 port on the macbook pro) &#xD;
&#xD;
Thanks, All. &#xD;
&#xD;
Stephen</description>
    <dc:creator>Stephen Guimond</dc:creator>
    <dc:date>2018-06-24T02:01:34Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2602822">
    <title>Arduino connectivity error with DeviceOpen?</title>
    <link>https://community.wolfram.com/groups/-/m/t/2602822</link>
    <description>Hi,&#xD;
a error message appears when opening a serial connection with an arduino uno.&#xD;
&#xD;
    arduinoCCD = DeviceOpen[&amp;#034;Arduino&amp;#034;, &amp;#034;COM9&amp;#034;]&#xD;
&#xD;
The error message is then :&#xD;
&#xD;
    ArduinoUpload`arduinoIndividualUpload::sizeFail: Checking the size of the sketch with avr-size failed with code 1 and output C:\Users\Eble\AppData\Roaming\Mathematica\ApplicationData\Arduino\arduino\hardware\tools\avr\bin\avr-size.exe: &amp;#039;&amp;#034;C:\Users\Eble\AppData\Local\Temp\arduinocompiled9ec104f74a246938788595e6ec6ae01\SketchTemplate.cpp.hex&amp;#034;&amp;#039;: No such file&#xD;
   &#xD;
and&#xD;
 DeviceConfigure::uploadfail: Uploading of the sketch failed. Halting&#xD;
&#xD;
DeviceExecute[] and DeviceConfigure[] can not be used.&#xD;
&#xD;
Does anyone have an idea?&#xD;
&#xD;
Thank you.</description>
    <dc:creator>Benoit Eble</dc:creator>
    <dc:date>2022-08-22T13:31:16Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2466962">
    <title>Does Mathematica fully support the M1 iPad Pro pencil?</title>
    <link>https://community.wolfram.com/groups/-/m/t/2466962</link>
    <description>I want to be able to enter everything seamlessly using the iPad Pro using the pencil, especially things like vectors and matrices.</description>
    <dc:creator>Eric Goff</dc:creator>
    <dc:date>2022-02-08T20:29:34Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2313662">
    <title>OBS virtual camera installed, now can&amp;#039;t get rid of it</title>
    <link>https://community.wolfram.com/groups/-/m/t/2313662</link>
    <description>I installed OBS Studio on my iMac. It created a Virtual Camera which Mathematica recognizes as the primary camera. OBS Studio was installed for trying this application out but I don&amp;#039;t have a need for it. &#xD;
&#xD;
There is no uninstall process, but according to online discussions, I just needed to delete the application in the /Applications directory, and its folder in the /Library/Application Support directory.   I&amp;#039;ve done both, deleted the contents of Trash and rebooted. &#xD;
&#xD;
Running &#xD;
&#xD;
    $ImagingDevices&#xD;
&#xD;
I get the output&#xD;
&#xD;
{&amp;#034;OBS Virtual Camera&amp;#034;, &amp;#034;FaceTime HD Camera (Built-in)&amp;#034;}&#xD;
&#xD;
just as I had before deleting the OBS app and directory. &#xD;
&#xD;
When I execute&#xD;
&#xD;
    CurrentImage[]&#xD;
&#xD;
The output is the OBS icon for the unconnected virtual camera. &#xD;
&#xD;
![OBS Image][1]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=obsimage.jpeg&amp;amp;userId=319259&#xD;
&#xD;
Does anyone have a solution to this problem?</description>
    <dc:creator>Lawrence Winkler</dc:creator>
    <dc:date>2021-07-14T00:36:59Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2166975">
    <title>Microcontrollerembedcode unable to connect to Arduino Yun</title>
    <link>https://community.wolfram.com/groups/-/m/t/2166975</link>
    <description>Hi Wolfram Community, &#xD;
&#xD;
I was able to better pinpoint my problem area in the code that I am using and post it here in the notebook. I am trying to follow this tutorial&#xD;
&#xD;
[Real-time data acquisition][1]&#xD;
&#xD;
I have an Arduino Yun Rev2 hooked up exactly as it is from the reference.  Everything seems to be connecting and resulting as it should be until I reach... &#xD;
&#xD;
![One red light and one green light][2]&#xD;
&#xD;
Which would indicate that I am missing something. I have the circuit hooked up exactly like the reference but Mathematica says&#xD;
&#xD;
&amp;#034;MicrocontrollerEmbedCode::nopen: Could not open /dev/tty.usbmodem1411.&amp;#034;&#xD;
&#xD;
What does this mean and what can I try to remedy this? I am attempting to use this to model Simple Harmonic Motion with a spring mass system for a university presentation in April. Any insights or help would be greatly appreciated!&#xD;
&#xD;
\[ScriptCapitalM] = &#xD;
 MicrocontrollerEmbedCode[sys, \[Mu]c, &#xD;
  &amp;#034;/dev/tty.usbmodem1411&amp;#034;, &amp;lt;|&amp;#034;I2C&amp;#034; -&amp;gt; i2cspecs, &#xD;
   &amp;#034;Libraries&amp;#034; -&amp;gt; bridgeLib, &amp;#034;CompileOptions&amp;#034; -&amp;gt; {Automatic, &amp;#034;-w&amp;#034;}|&amp;gt;]&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][3]&#xD;
&#xD;
&#xD;
  [1]: https://reference.wolfram.com/language/MicrocontrollerKit/workflow/RealTimeDataAcquisition&#xD;
  [2]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Problemwithcode.jpg&amp;amp;userId=2158933&#xD;
  [3]: https://www.wolframcloud.com/obj/319a9e67-9004-4ce8-bc1b-6ff5b9aa5f3e</description>
    <dc:creator>Jennifer Rittenhouse</dc:creator>
    <dc:date>2021-01-18T22:15:46Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2160081">
    <title>Unexpected output from DeviceRead[ ]?</title>
    <link>https://community.wolfram.com/groups/-/m/t/2160081</link>
    <description>Hi Maker Mathematica community,&#xD;
&#xD;
&#xD;
I am currently trying to move a work project from Arduino to Wolfram Mathematica for eventual live plotting. I am new to Wolfram Mathematica and connected devices, but I&amp;#039;m very familiar with Arduino. I want to read the same analog values that I read from my Arduino serial port, however when I ask Mathematica to read them, it gives me the voltage values. I&amp;#039;m hesitant to try and convert  these voltage values as I already have an equation for converting ultrasonic sensor data over to change in distance of centimeters pertaining to a spring mass system. I know the circuit is working correctly, but the values that Mathematica reads are very different from the Arduino values.&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][1]&#xD;
&#xD;
&#xD;
  [1]: https://www.wolframcloud.com/obj/08015799-0c30-4d99-83c8-76cf88d5f7f1&#xD;
Here&amp;#039;s my arduino code:&#xD;
(I tried to post it in an &amp;#034;.ino &amp;#034; file but the file type wasn&amp;#039;t supported)</description>
    <dc:creator>Jennifer Rittenhouse</dc:creator>
    <dc:date>2021-01-12T03:39:40Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2130901">
    <title>Raspberry Pi not working in 12.1?</title>
    <link>https://community.wolfram.com/groups/-/m/t/2130901</link>
    <description>I&amp;#039;ve been intending to interface Mathematica with the Raspberry Pi Camera, but it appears device handling in 12.1 is broken. I burnt a brand new install of 32 bit Buster with the output of uname -a as below&#xD;
&#xD;
Linux dragon 5.4.79-v7+ #1373 SMP Mon Nov 23 13:22:33 GMT 2020 armv7l GNU/Linux&#xD;
&#xD;
The first time I ran Mathematica all was fine FindDevices[] listed the devices including the camera, after it downloaded an amount data from the Wolfram server. &#xD;
&#xD;
However, the next time I ran Mathematica and evaluated FindDevices[] I received an error &amp;#034;malloc(): invalid size (unsorted)&amp;#034; followed by a beep with an accompanying message that the kernel had aborted.&#xD;
&#xD;
Evaluating DeviceRead[&amp;#034;RaspiCam&amp;#034;] resulted in the following error on the terminal&#xD;
&#xD;
/opt/Wolfram/WolframEngine/12.1/SystemFiles/Kernel/Binaries/Linux-ARM/WolframKernel: symbol lookup error: /opt/Wolfram/WolframEngine/12.1/SystemFiles/Components/RaspberryPiTools/LibraryResources/Linux-ARM/libRaspberryPiTools.so: undefined symbol: vc_vchi_dispmanx_init&#xD;
&#xD;
Evaluating the same on 12.0 results in the expected behaviour.&#xD;
&#xD;
Anyone know what might be going on?</description>
    <dc:creator>Nicholas Walton</dc:creator>
    <dc:date>2020-12-06T20:49:23Z</dc:date>
  </item>
</rdf:RDF>

