Search found 15 matches
- Wednesday 12 September 2018 11:11
- Forum: Suggestions
- Topic: Support for the Resol VBUS protocol?
- Replies: 94
- Views: 39150
Re: Support for the Resol VBUS protocol?
Help please i m still getting the same error values any suggestions ??
- Sunday 09 September 2018 18:29
- Forum: Suggestions
- Topic: Support for the Resol VBUS protocol?
- Replies: 94
- Views: 39150
Re: Support for the Resol VBUS protocol?
Dear programers
I have built my own dattaloger for vbus resol, using the vbus library, it worked fine with the Resol DeltaSol C4 and Resol DeltaSol BS , but using the same code and library for the Resol Delta Sol E generated many errors , and i can't seem to figure out why any suggestions ??
I have built my own dattaloger for vbus resol, using the vbus library, it worked fine with the Resol DeltaSol C4 and Resol DeltaSol BS , but using the same code and library for the Resol Delta Sol E generated many errors , and i can't seem to figure out why any suggestions ??
- Tuesday 05 June 2018 16:04
- Forum: Suggestions
- Topic: Support for the Resol VBUS protocol?
- Replies: 94
- Views: 39150
Re: Support for the Resol VBUS protocol?
Hello
Finaly i am getting data from my circuit the problem was the cable connecting my resol regulator to the circuit , everything is working fine now... but if you don't mind me asking do you have any idea on how to store this data on a SD card ??
Finaly i am getting data from my circuit the problem was the cable connecting my resol regulator to the circuit , everything is working fine now... but if you don't mind me asking do you have any idea on how to store this data on a SD card ??
- Tuesday 05 June 2018 13:47
- Forum: Suggestions
- Topic: Support for the Resol VBUS protocol?
- Replies: 94
- Views: 39150
Re: Support for the Resol VBUS protocol?
No I haven't can you enlighten me about this feature ?? what kind of sketch ??
- Monday 04 June 2018 13:42
- Forum: Suggestions
- Topic: Support for the Resol VBUS protocol?
- Replies: 94
- Views: 39150
Re: Support for the Resol VBUS protocol?
Hello , i tried the serial1 to serial sketch and Resol software serial, but i got no data it means my circuit is the problem isn't it ?
- Sunday 03 June 2018 14:05
- Forum: Suggestions
- Topic: Support for the Resol VBUS protocol?
- Replies: 94
- Views: 39150
Re: Support for the Resol VBUS protocol?
Hello and thank you for your replies i will try them tomorrow first things first in my lab and see if it will work!! however i was wondering since i changed my exploring system from Windows8 to a Windows 10 (a hole new computer) , could it have had an effect on my programming , or could any driver ...
- Thursday 31 May 2018 15:22
- Forum: Suggestions
- Topic: Support for the Resol VBUS protocol?
- Replies: 94
- Views: 39150
Re: Support for the Resol VBUS protocol?
Hello again i tried several programs to display my values no luck i really can't figure out why it used to work and not now !! i rebuilt everything from the begining nothing and i can't figure out the problem !! HELP ANYBODY !!
- Wednesday 30 May 2018 15:22
- Forum: Suggestions
- Topic: Support for the Resol VBUS protocol?
- Replies: 94
- Views: 39150
Re: Support for the Resol VBUS protocol?
what i'am trying to do is to read the data from the resol delta sol regulator using the arduino+adaptator circuit via serial1 (RX1) and then store them in a memory card (that's another issue) i need to visulize the temperatures values on my serial monitor to verify its working !
- Wednesday 30 May 2018 13:25
- Forum: Suggestions
- Topic: Support for the Resol VBUS protocol?
- Replies: 94
- Views: 39150
Re: Support for the Resol VBUS protocol?
Hello again i rebuilt the circuit on the breadboard the same error remains, my code blocks at vb.readSensor () any help please i need to wrap up my project and im running out of time !!!!
- Tuesday 29 May 2018 13:42
- Forum: Suggestions
- Topic: Support for the Resol VBUS protocol?
- Replies: 94
- Views: 39150
Re: Support for the Resol VBUS protocol?
I guess there is a problem with the vb.readsensor instruction because all programs block there even if i try to write a simple letter after there is no response on the serial monitor. I can't figure out how to fixe it !!!
- Tuesday 29 May 2018 12:12
- Forum: Suggestions
- Topic: Support for the Resol VBUS protocol?
- Replies: 94
- Views: 39150
Re: Support for the Resol VBUS protocol?
Yes but wouldnt the error be some wrong data coming in ? In my case looks like the program gets stuck at the comment arduino debugging started and nothing after... however when i delete the vbusread instruction the program continues even if gives me 0s as results !
- Monday 28 May 2018 17:40
- Forum: Suggestions
- Topic: Support for the Resol VBUS protocol?
- Replies: 94
- Views: 39150
Re: Support for the Resol VBUS protocol?
Hello again My program was working just fine however i changed my compouter and made a pcb of the circuit using the same program i cant get any results, any idea why ? here is the program again : #include <VBUSDecoder.h> VBUSDecoder vb; char data ; void setup() {Serial.begin(9600); Serial1.begin ...
- Friday 06 April 2018 11:37
- Forum: Suggestions
- Topic: Support for the Resol VBUS protocol?
- Replies: 94
- Views: 39150
Re: Support for the Resol VBUS protocol?
yes i tried your tric it works fine i even added it to my skecch using the library and it works also, Thank you for your help
- Thursday 05 April 2018 13:50
- Forum: Suggestions
- Topic: Support for the Resol VBUS protocol?
- Replies: 94
- Views: 39150
Re: Support for the Resol VBUS protocol?
Can you explain more i am quite new to arduino programing! also here is my sketch : (im using RX1 on Arduino mega)
char data= '0';
void setup ()
{ Serial1.begin (9600);
serail.begin(9600);
}
void loop ()
{ if (serial1.available ();
{ data = Serial1.read ();
Serial.write (data);
delay (1000);
}}
char data= '0';
void setup ()
{ Serial1.begin (9600);
serail.begin(9600);
}
void loop ()
{ if (serial1.available ();
{ data = Serial1.read ();
Serial.write (data);
delay (1000);
}}
- Thursday 05 April 2018 11:52
- Forum: Suggestions
- Topic: Support for the Resol VBUS protocol?
- Replies: 94
- Views: 39150
Re: Support for the Resol VBUS protocol?
Hello I am trying to get the data from ly resol delta sol C regulator and since i dont have a DL2 ... data logger , i build the same systeme on this tred, however i can't get any logic data, my arduino sets values 0 for the different sensors and i can't figure out why; I first used the library ...