-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ICSC as repeater and Save Address in EEPROM #8
Comments
ok for the address read from the eeprom and change it in setup, i found the solution, for the relay not yet ... for people has the same issue this is what i did in this beautiful library :-) in file ICSC.h
and on file ICSC.cpp add the follow so in the example ICSC icsc(Serial, 2 ,2); // last argument specifies DE pin on ChainDuino void pressed(unsigned char src, char command, unsigned char len, char *data) void released(unsigned char src, char command, unsigned char len, char *data) void setup() void loop() have fun :-) |
icsc.setAddress(2); // <- When i change this it does the trick :-) this can also use it in void loop() in some case ;-) |
I think the #define ICSC_SYS_RELAY 0x09 could be what i looking for repeat the message .. can someone please help me ? Thank you. |
Hello dear,
I need you're light (if i am in wrong place i apologize).
If i use MAX485 i can have until 32 device's to talk each other,but with you're lovely library we can have much more devices ...
How can i use it as a repeater ( in case if i want to expand it in the middle of loop (with an arduino MEGA ) eg, in address 20 i want to create a new loop and send the address range 33 - 40 ...
And a second question please, how can i address each device and store it to EEPROM and when power up ? with the previous version i have done
LocalID = EEPROM.read(EEPROM_ID_Address);
ICSC.begin(LocalID, 19200, 2);
and was working ok, with new version i can't do this :-(
Thank you in Advance...
Best Regards,
Tasos
The text was updated successfully, but these errors were encountered: