Then the parse_by_comma and parse_order functions would need to update their access to that. (Perhaps we make parse_by_comma so it does return... String[]?)
Todo:
Moved from 3 seperate variables into a single variable array.
Changed parse_by_comma to return value, thus removing the need of the global array.
[array docs](https://www.arduino.cc/reference/en/language/variables/data-types/array/)
Perhaps it should be: [where_at?](https://git.red-green.com/david/IRremote/src/master/InfraTrans/InfraTrans.ino#L11-L13)
```c
String raw_parsings[3];
```
Then the `parse_by_comma` and `parse_order` functions would need to update their access to that. (Perhaps we make `parse_by_comma` so it does return... String[]?)
Todo:
- [x] Moved from 3 seperate variables into a single variable array.
- [ ] Changed `parse_by_comma` to return value, thus removing the need of the global array.
Unfortunately if I want to use an array to store the parsed code, bit_size, and repeat boolean...
It appears I can't get the result to persist... it's a pointer and thus when we finally get to use the results it gets wiped. (So we are using a global array)
Todo:
Get away from String and use const char* instead.
Unfortunately if I want to use an array to store the parsed code, bit_size, and repeat boolean...
It appears I can't get the result to persist... it's a pointer and thus when we finally get to use the results it gets wiped. (So we are using a global array)
Todo:
- [ ] Get away from String and use const char* instead.
Here's a sample decoder that decodes the hex values and other things.
(I'm not 100% sure what the 3rd value is supposed to be.)
To compile in linux:
gcc -o hexdecode hexdecode.c
You might also need:
if (in == '\r') {
continue;
}
Here's a sample decoder that decodes the hex values and other things.
(I'm not 100% sure what the 3rd value is supposed to be.)
To compile in linux:
`gcc -o hexdecode hexdecode.c`
You might also need:
```
if (in == '\r') {
continue;
}
```
The Arduino code looks like it's complete. (Well except for #3 where we send a code and get counted twice)
\o/ Ok well we've not got these things done:
* Refactored parsing
* Got away from String
The Arduino code looks like it's complete. (Well except for #3 where we send a code and get counted twice)
array docs
Perhaps it should be: where_at?
Then the
parse_by_comma
andparse_order
functions would need to update their access to that. (Perhaps we makeparse_by_comma
so it does return... String[]?)Todo:
parse_by_comma
to return value, thus removing the need of the global array.Unfortunately if I want to use an array to store the parsed code, bit_size, and repeat boolean...
It appears I can't get the result to persist... it's a pointer and thus when we finally get to use the results it gets wiped. (So we are using a global array)
Todo:
Here's a sample decoder that decodes the hex values and other things. (I'm not 100% sure what the 3rd value is supposed to be.)
To compile in linux:
gcc -o hexdecode hexdecode.c
You might also need:
\o/ Ok well we've not got these things done:
The Arduino code looks like it's complete. (Well except for #3 where we send a code and get counted twice)