But this complicates my scripts.? maybe you should put another character why? you filesystem write on latin1 code, your lcd is xyz code, you should write the lcd xyz asc code, on you latin1 file system may be writing "A" on your filesystem is the character that you want... it's a charset conversion problem... using \xdf remove filesystem charset conversion, since "\" "x" "d" "f" isn't translated on xyz lcd charset (it's the number not the represent text) check:
"x" filesystem charset -> 1234 ascii code 1234 ascii code -> "y" lcd charset using \xdf you write in ascii code, not in filesystem charset found the problem? 2011/1/26 patyrk <[email protected]>: > Dnia 2011-01-25, wto o godzinie 23:18 -0200, Roberto Spadim pisze: >> try \xnumber > OK, it works. I'm using bash. > printf "\xdf" > message > > But this complicates my scripts. > > Could suggest a feature request to change the behavior that when I write > º in a string it is mapped to the character 223 on the displayed. > > I think that degree has the same number in almost all HD44780 displays. > At least 233 is in the HD44780 specs. > > > It would be nice to use it like this > > line1=`printf '%-16s' "D $t1º $t2 º"` > line2=`printf '%-16s' "Dz $t3º Piw $t4º"` > > owwrite -s 2485 $LCD2 "1,1:$line1" > owwrite -s 2485 $LCD2 "2,1:$line2" > > -- > P4trykx > > > > ------------------------------------------------------------------------------ > Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)! > Finally, a world-class log management solution at an even better price-free! > Download using promo code Free_Logger_4_Dev2Dev. Offer expires > February 28th, so secure your free ArcSight Logger TODAY! > http://p.sf.net/sfu/arcsight-sfd2d > _______________________________________________ > Owfs-developers mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/owfs-developers > -- Roberto Spadim Spadim Technology / SPAEmpresarial ------------------------------------------------------------------------------ Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)! Finally, a world-class log management solution at an even better price-free! Download using promo code Free_Logger_4_Dev2Dev. Offer expires February 28th, so secure your free ArcSight Logger TODAY! http://p.sf.net/sfu/arcsight-sfd2d _______________________________________________ Owfs-developers mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/owfs-developers
