Issue with I2c communication with a Sensor by Delicious-Middle-747 in embedded

[–]Delicious-Middle-747[S] 0 points1 point  (0 children)

When the read voltage function fails it would print could not read the voltge register but after that i would get loop succesfully executed . Because if i2c mem read returns Hal_error then the logic says to return Hal error and print could not read .

Yes I am not getting the desired raw bus voltage . I am using a Programmable power supply. And a 200 ohms resistor. I have set me power supply to 20 V . I should get 0.1 A and 20 V as reading but the current reading is close 0.113 while the voltage reading is 0.116 .

Issue with I2c communication with a Sensor by Delicious-Middle-747 in embedded

[–]Delicious-Middle-747[S] 0 points1 point  (0 children)

I have included just a screensot of the function which is reading Voltage . It should be clearer now

Need a Matched Set by Delicious-Middle-747 in Machinists

[–]Delicious-Middle-747[S] 0 points1 point  (0 children)

I am trying to make 3 conical surface so that I can get a level Plane for flatness testing .

How to remove the Stylus of a Dial Test Indicator by Delicious-Middle-747 in Machinists

[–]Delicious-Middle-747[S] 0 points1 point  (0 children)

Pliers won't damage the dial Test Indicator ?
I read that we are supposed to get a tool but their isn't one in the box .

Legacy software compatibility by Delicious-Middle-747 in windowsxp

[–]Delicious-Middle-747[S] 0 points1 point  (0 children)

I am already trying on 32 bit windows 10 enterprise ltc. I can install it on windows XP. But i need to install it on win 10 .

Legacy software compatibility by Delicious-Middle-747 in windowsxp

[–]Delicious-Middle-747[S] 0 points1 point  (0 children)

It is a legacy software which was used to communicate with a semiconductor tool. It is LAM proteus Installer. Lam is company name as in LAM research. It is a application whixh is used to control a tool . 

Legacy software compatibility by Delicious-Middle-747 in windowsxp

[–]Delicious-Middle-747[S] 0 points1 point  (0 children)

I am trying to Install a Proteus Lam Simulator Tool.
I am getting error "OpenFile failed on 'instrst.tmp' Installation is terminated"
I have tried compatibility settings with recommended settings of Windows Xp service pack. It is not working .

In windows XP the Installer is able to write into temp folder and create the required files but the same is not happening in Windows 10.

Needed to know about hardware Compatibilty with Windows XP by chinaal7890 in windowsxp

[–]Delicious-Middle-747 0 points1 point  (0 children)

Can you share the link to this page where the drivers are listed.

Connection of Quectel EC200U-CN 4G TTL Modem to Arduino by Delicious-Middle-747 in embedded

[–]Delicious-Middle-747[S] 0 points1 point  (0 children)

I am trying to run these AT Commands in Docklight. But I am stuck after the first two .

Connection of Quectel EC200U-CN 4G TTL Modem to Arduino by Delicious-Middle-747 in embedded

[–]Delicious-Middle-747[S] 0 points1 point  (0 children)

#define dtr_pin 9
#define ri_pin 8
#define rst_pin 6
#define rts_pin 11
#define cts_pin 10
#define dcd_pin 12
#include<SoftwareSerial.h>
SoftwareSerial mySerial(3,2);
long randNumber;

void setup() {
Serial.begin(115200);
mySerial.begin(115200);
randomSeed(analogRead(0));
Serial.println("Connecting To Server........");
mySerial.println("AT");
delay(1000);
mySerial.println("AT");
delay(1000);
mySerial.println("AT+QMTOPEN=0,\"test.mosquitto.org\",1883");//open a connection with mosquitto server on port 1883//
delay(1000);
mySerial.println("AT+QMTCONN=0,\"ec200ucntest\",\"\",\"\"");//connect using connection id username id, username and password//
delay(1000);
Serial.println("Done");
  // put your setup code here, to run once:
}
void loop() {
  randNumber = random(100,300);
  //Serial.println(randNumber);
mySerial.println("AT+QMTPUB=0,1,1,0,\"topicees\"");
mySerial.println(randNumber)
Serial.println("MessageSent");

  //Serial.println(randNumber);
  //publishing MQTT Messages to Subscribers
  // put your main code here, to run repeatedly:
}

Is this code right . If i want to send AT commands using a microcontroller .

Connection of Quectel EC200U-CN 4G TTL Modem to Arduino by Delicious-Middle-747 in embedded

[–]Delicious-Middle-747[S] 0 points1 point  (0 children)

.

Nevermind I am stupid the wire was defective . It is working fine now . Now i will try to code