Tinker Geschrieben October 4, 2017 at 22:30 Geschrieben October 4, 2017 at 22:30 Hello, I am using Ambient Light Bricklet(V2) with MatLab. I would like to know how to get the vector data of sensor values from callback function. Because, I want to plot this data with other sensors(Temperature and Pressure). function matlab_example_callback() import com.tinkerforge.IPConnection; import com.tinkerforge.BrickletAmbientLightV2; HOST = 'localhost'; PORT = 4223; UID = 'XYZ'; ipcon = IPConnection(); al = handle(BrickletAmbientLightV2(UID, ipcon), 'CallbackProperties'); ipcon.connect(HOST, PORT); set(al, 'IlluminanceCallback', @(h, e) cb_illuminance(e)); al.setIlluminanceCallbackPeriod(1000); input('Press key to exit\n', 's'); ipcon.disconnect(); end function cb_illuminance(e) fprintf('Illuminance: %g Lux\n', e.illuminance/100.0); end Zitieren
cl- Geschrieben July 31, 2019 at 13:32 Geschrieben July 31, 2019 at 13:32 Is this topic solved or documented? I'm struggling with exactly this. How do I get the data from the callback function back to the main function in MATLAB? I like to write all accelerations into an array while the callback function is active. After the sensors stopped sending data, I like to run some statistics on the entire data stream. % Register 16-bit continuous acceleration callback to function cb_continuous_acceleration set(a, 'ContinuousAcceleration16BitCallback', @(h, e) cb_continuous_acceleration(e)); Within the callback, I can get access to the sensor data using the "e" object. However, how do I get the data back to the main function? Zitieren
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.