Personal Data

Username:
drewegatti
Joined:
2022-08-24 05:20:10

Projects

  • I²C TE M3200 Connect I²C TE M3200 to CODESYS Last Updated:

User Activity

  • Modified a wiki page on I/O Drivers

    Home

  • Modified a wiki page on I²C TE M3200

    Home

  • Posted a comment on discussion Forge 🇬🇧 on CODESYS Forge

    I tried to integrate the Sensor into the Device Library but gave up because reading it direct form the device is easier Enable usage in CODESYS installing the i2c software tools after connecting the hardware and activation of the i2c bus. sudo raspi-config Choose Advanced Options -> "activate I2C" -> "Yes" and exit the tool. Now update the repository and install i2c-tools sudo apt-get update sudo apt-get install i2c-tools check the addressing/connections Once you have it installed check that the...

  • Modified a comment on discussion Forge 🇬🇧 on CODESYS Forge

    I tried to integrate the Sensor into the Device Library but gave up because reading it direct form the device is easier Enable usage in CODESYS installing the i2c software tools after connecting the hardware and activation of the i2c bus. sudo raspi-config Choose Advanced Options -> "activate I2C" -> "Yes" and exit the tool. Now update the repository and install i2c-tools sudo apt-get update sudo apt-get install i2c-tools check the addressing/connections Once you have it installed check that the...

  • Modified a wiki page on I/O Drivers

    Home

  • Modified a comment on discussion Forge 🇬🇧 on CODESYS Forge

    I tried to integrate the Sensor into the Device Library but gave up because reading it direct form the device is easier //Pressure Sensor Structure TYPE M3200 : STRUCT //Device Setup Address : USINT; //In Decimal Form WriteBuffer : BYTE := 1; ReadBuffer : ARRAY [0..15] OF BYTE := [15(0)]; WriteLength : DINT; ReadLenght: DINT; Praw : UINT; Pmax : REAL; Pmin : REAL; PSI : REAL; Traw : UINT; Tmax : REAL; Tmin : REAL; TEMP : REAL; END_STRUCT END_TYPE //Structure Declaration PROGRAM PressureCRTL VAR S01...

  • Posted a comment on discussion Forge 🇬🇧 on CODESYS Forge

    I tried to integrate the Sensor into the Device Library but gave up because reading it direct form the device is easier //Pressure Sensor Structure TYPE M3200 : STRUCT //Device Setup Address : USINT; //In Decimal Form WriteBuffer : BYTE := 1; ReadBuffer : ARRAY [0..15] OF BYTE := [15(0)]; WriteLength : DINT; ReadLenght: DINT; Praw : UINT; Pmax : REAL; Pmin : REAL; PSI : REAL; Traw : UINT; Tmax : REAL; Tmin : REAL; TEMP : REAL; END_STRUCT END_TYPE //Structure Declaration PROGRAM PressureCRTL VAR S01...

  • Posted a comment on discussion Forge 🇬🇧 on CODESYS Forge

    Enable usage in CODESYS installing the i2c software tools after connecting the hardware and activation of the i2c bus. sudo raspi-config Choose Advanced Options -> "activate I2C" -> "Yes" and exit the tool. Now update the repository and install i2c-tools sudo apt-get update sudo apt-get install i2c-tools check the addressing/connections Once you have it installed check that the RTC has been detected using: sudo i2cdetect -y 0 # (if using Raspberry Pi 1 or) sudo i2cdetect -y 1 # (if using Raspberry...

View All