Jump to content

Tinker

Members
  • Gesamte Inhalte

    1
  • Benutzer seit

  • Letzter Besuch

Posts erstellt von Tinker

  1. 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

×
×
  • Neu erstellen...