Hi everyone,
I am trying to build an interface on the DSS using javascript to access and write data on local variables. I tried to follow the online examples in the webinar but they've set a breakpoint on 'main' and halted in success.
My code is along these lines:
void main(void){
....
int x=0;
....
x+=1;
while(1){
...
}
}
- All i want to do is to connect with this code using JS embedded in a web based user interface that can should display the value of 'x' and user must be able to set the value of 'x'. Please provide a bare minimum code snipped in javascript.
Thanking in advance