Onpsych USA

Onpsych US Technology - Regulatory Compliance Portal

ONPSYCH US TECHNOLOGY

Regulatory Compliance Portal

Documentation Notice: All regulatory documents are available in our Google Drive folder . This folder contains detailed documentation, certificates, and compliance reports for all our regulatory filings.
FDA

FDA Registration

Official registration with the U.S. Food and Drug Administration for medical device compliance. Valid for fiscal year 2025 with all required documentation.

Registration #3016112562
Owner/Operator #10061531
Fiscal Year 2025
CE

EMC Conformity

Certification for electromagnetic compatibility compliance under EU regulations. Confirms our device meets all EMC requirements for European markets.

Certificate #DEC0996230485008
EN IEC 55015:2019+A11:2020
EMC Directive 2014/30/EU
LVD

Low Voltage Directive

Declaration of conformity with EU Low Voltage Directive, ensuring electrical safety and compliance for all our devices operating within specified voltage ranges.

Certificate #DEC2504750959402
EN 60335-2-27:2013+A2:2020
LVD Directive 2014/35/EU
UKCA

UK Conformity

UK Conformity Assessment marking for products placed on the market in Great Britain. Demonstrates compliance with UK technical requirements.

Certificate #DEC2504750959405
BS EN Standards
UK Market Compliance
FCC

FCC Compliance

Federal Communications Commission certification for electromagnetic interference compliance. Ensures our devices meet FCC standards for operation in the United States.

Certificate #DEC2504750959404
CFR 47 Part 15 Subpart B
US Market Compliance
RoHS

RoHS 2.0 Compliance

Restriction of Hazardous Substances compliance certification. Confirms our products meet environmental standards by limiting hazardous materials in electronic equipment.

Certificate #DEC2504750959403
Directive 2011/65/EU
Environmental Compliance

Regulatory Documentation Folder

Access all regulatory documents directly through our Google Drive folder. This folder contains detailed documentation, certificates, and compliance reports for all our regulatory filings.

Documentation Access Information

Documentation Summary: This Google Drive folder contains comprehensive documentation for all our regulatory filings. Each document has been carefully prepared to meet the specific requirements of each regulatory body.

Organization: Documents are organized by regulatory body (FDA, CE, UKCA, etc.) with clear naming conventions. Each folder contains the official certificate, technical documentation, and test reports.

Access: You can view and download documents directly from this folder. For additional access permissions or questions about specific documentation, please contact our compliance team at compliance@onpsych.com.

PDF Integration Methods

1

Direct iframe Embedding

The simplest method for displaying PDFs directly in your webpage.

<iframe src="your-document.pdf" width="100%" height="600px"></iframe>
2

Object Tag with Fallback

Provides better browser compatibility with fallback options.

<object data="your-document.pdf" type="application/pdf" width="100%" height="600px">
  <p>PDF cannot be displayed. <a href="your-document.pdf">Download</a></p>
</object>
3

PDF.js Integration

Advanced JavaScript-based PDF rendering with full control.

<script src="https://cdnjs.cloudflare.com/ajax/libs/pdf.js/3.11.174/pdf.min.js"></script>

<canvas id="pdf-viewer"></canvas>

<script>
  pdfjsLib.getDocument('your-document.pdf').promise.then(pdf => {
    // Render PDF pages
  });
</script>
4

Cloud-Based Viewers

Use third-party services for reliable PDF rendering.

<!-- Google Docs Viewer -->
<iframe src="https://docs.google.com/viewer?url=YOUR-PDF-URL&embedded=true"></iframe>

<!-- Microsoft Office Online Viewer -->
<iframe src="https://view.officeapps.live.com/op/embed.aspx?src=YOUR-PDF-URL"></iframe>
Scroll to Top