element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • About Us
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Arduino
  • Products
  • More
Arduino
Arduino Forum Arduino code
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Arduino to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Suggested Answer
  • Replies 1 reply
  • Answers 1 answer
  • Subscribers 391 subscribers
  • Views 379 views
  • Users 0 members are here
Related

Arduino code

kingmo551
kingmo551 over 5 years ago

I have this code for a sensor and i want to convert the code to Psoc 4 poineer kit. The code originally for Arduino can i convert the code.?

 

 

This the code:

#include <Adafruit_SSD1306.h>

#include <Adafruit_GFX.h>

#include <gfxfont.h>

 

#include <SPI.h> //Library for SPI interface

#include <Wire.h> //Library for I2C interface

 

#define OLED_RESET 11 //Reset pin

Adafruit_SSD1306 display(OLED_RESET); //Set Reset pin for OLED display

 

int led = 10; //LED pin

int buzzer = 9; //Buzzer pin

int gas_sensor = A0; //Sensor pin

float m = -0.318; //Slope

float b = 1.133; //Y-Intercept

float R0 = 11.820; //Sensor Resistance in fresh air from previous code

 

void setup() {

  Serial.begin(9600); //Baud rate

  display.begin(SSD1306_SWITCHCAPVCC, 0x3C); //Initialize screen

  display.setTextColor(WHITE); //Set text color

  display.setTextSize(3); //Set text size

  pinMode(led, OUTPUT); //Set LED as output

  digitalWrite(led, LOW); //Turn LED off

  pinMode(buzzer, OUTPUT); //Set buzzer as output

  digitalWrite(buzzer, LOW); // Turn buzzer off

  pinMode(gas_sensor, INPUT); //Set gas sensor as input

}

 

void loop() {

  display.clearDisplay(); //Clear display

  display.setCursor(0, 5); //Place cursor in (x,y) location

  float sensor_volt; //Define variable for sensor voltage

  float RS_gas; //Define variable for sensor resistance

  float ratio; //Define variable for ratio

  float sensorValue = analogRead(gas_sensor); //Read analog values of sensor

  sensor_volt = sensorValue * (5.0 / 1023.0); //Convert analog values to voltage

  RS_gas = ((5.0 * 10.0) / sensor_volt) - 10.0; //Get value of RS in a gas

  ratio = RS_gas / R0; // Get ratio RS_gas/RS_air

 

  double ppm_log = (log10(ratio) - b) / m; //Get ppm value in linear scale according to the the ratio value

  double ppm = pow(10, ppm_log); //Convert ppm value to log scale

  double percentage = ppm / 10000; //Convert to percentage

  display.print(percentage); //Load screen buffer with percentage value

  display.print("%"); //Load screen buffer with "%"

  display.display(); //Flush characters to screen

 

  if (ppm > 2000) {

  //Check if ppm value is greater than 2000

  digitalWrite(led, HIGH); //Turn LED on

  digitalWrite(buzzer, HIGH); //Turn buzzer on

  } else {

  //Case ppm is not greater than 2000

  digitalWrite(led, LOW);

  //Turn LED off

  digitalWrite(buzzer, LOW);

  //Turn buzzer off

  }

}

  • Sign in to reply
  • Cancel

Top Replies

  • clem57
    clem57 over 5 years ago +1 suggested
    You can convert the code to PSOC. The parts to watch for are the library code will need to be carefully examined as it may probable change kingmo551
Parents
  • clem57
    0 clem57 over 5 years ago

    You can convert the code to PSOC. The parts to watch for are the library code will need to be carefully examined as it may probable change kingmo551

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
Reply
  • clem57
    0 clem57 over 5 years ago

    You can convert the code to PSOC. The parts to watch for are the library code will need to be carefully examined as it may probable change kingmo551

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
Children
No Data
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube