Raul Victor Trombin
Raul Victor Trombin
~~Changing it to continuos mode I reached near 1ms now,~~ `Ads1x1x::new_ads1115(dev, address).into_continuous().ok().unwrap();();` Should I discard the first lecture ? ``` ` pub fn read_adc(&mut self) -> f32 { let conversion_volts:...
@ktrz Hey, I can't remember exatcly what was the issue, But I think it was the cache, it could be erased with long times without using the actions, then I've...
@Williangalvani also we need to add `arm_64bit=0` to the config.txt file. If not it will load the 64 bit. Since kernel 6, it loads the 64 by default on RPi4....
> I expect this to break AT LEAST the pi4 serial port mapping > > known issues: > > * [ ] ssh is not getting enabled automatically, even with...
From API v2 spec seens thtat types other thant i32 and i64 doesn't exist. Maybe we can define the minimum and maximum fields for each different integer types: https://swagger.io/specification/v2/ ```...
Tryed a mix of: https://github.com/paperclip-rs/paperclip/blob/555a460cdfbc295edb504c3d7f441253a5c681ae/core/src/v2/models.rs#L519 and https://paperclip-rs.github.io/paperclip/actix-security.html ``` #[derive(Apiv2Schema, Debug, Deserialize, Serialize)] #[openapi(minimum=0, maximum=255)] pub struct ApiNeopixel { #[openapi(minimum=0, maximum=255)] red: u8, green: u8, blue: u8, } ``` no success...
Maybe we can integrate with validator: ``` #[derive(Apiv2Schema, Debug, Deserialize, Serialize, Validate)] pub struct ApiNeopixel { #[validate(range(min = 0, max = 255))] red: u8, #[validate(range(min = 0, max = 255))]...
> Yeah a validator like that seems like a good idea. Although in general we could also improve things, as with u8 the min and max should also be set?...
After loading the profile, I was unable to check if it was successful.  And the same for vehicle options: was unable to know if it already have some backup...
Fixed using latest nvm and nvs packages to instal node. ``` ➜ ~ nvm list v20.16.0 -> v22.6.0 system default -> lts/* (-> v20.16.0) iojs -> N/A (default) unstable ->...